html {
    scroll-behavior: smooth;
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.sectionParaQueServe .highlightMetodoFull,
.sectionBeneficios .highlightMetodoFull,
.sectionCtaFinal .highlightMetodoFull {
    color: #FFFFFF;
    background-color: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.sectionParaQueServe .ctaButtonMetodoFull,
.sectionBeneficios .ctaButtonMetodoFull,
.sectionCtaFinal .ctaButtonMetodoFull {
    background: #FFFFFF;
    color: #e39505;
}

.ctaButtonMetodoFull:hover {
    background: #d18704;
}

.sectionParaQueServe .ctaButtonMetodoFull:hover,
.sectionBeneficios .ctaButtonMetodoFull:hover,
.sectionCtaFinal .ctaButtonMetodoFull:hover {
    background: #f0f0f0;
}

/* Responsividade corrigida */
@media (max-width: 768px) {
   
    /* Outras seções */
    .sectionParaQueServe,
    .sectionIdealPara,
    .sectionBeneficios,
    .sectionComoFunciona,
    .sectionCtaFinal {
        padding: 60px 0;
    }
    
    .contentParaQueServeCenter h2,
    .contentIdealParaLeft h2,
    .contentBeneficiosCenter h2,
    .contentComoFuncionaCenter h2,
    .contentCtaFinalCenter h2 {
        font-size: 2rem;
    }
    
    .beneficiosGrid,
    .comoFuncionaGrid {
        grid-template-columns: 1fr;
    }
}

