/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores - Estilo moderno */
:root {
    --primary-green: #5E6B36;
    --primary-white: #FEFCED;
    --primary-brown: #BB6C26;
    --hover-gold: #DBA15D;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --text-medium: #74B9FF;
    --shadow: rgba(0, 0, 0, 0.08);
    --light-bg: #F1F2F6;
    --accent-blue: #A8C8EC;
}

/* Configurações gerais */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--primary-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: -0.01em;
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-brown);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(187, 108, 38, 0.3);
}

.cta-button:hover {
    background-color: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 108, 38, 0.4);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Header Navigation */
.header {
    background-color: var(--primary-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: static;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--primary-green) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: var(--primary-brown) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 154, 107, 0.3);
}

.nav-cta::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - 1ª dobra (Verde) */
.hero {
    background-color: var(--primary-green);
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.hero-text h2 {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.hero-text {
    max-width: 500px;
}

.crp-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-priority {
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-cta {
    background-color: var(--primary-brown);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-brown);
    color: white;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
    background-color: var(--hover-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 108, 38, 0.4);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.image-bg-shape {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(254, 251, 237, 0.3) 100%);
    border-radius: 50% 30% 50% 30%;
    z-index: 1;
}

.image-bg-shape-2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(254, 247, 237, 0.2) 0%, rgba(254, 247, 237, 0.1) 100%);
    border-radius: 30% 50% 30% 50%;
    z-index: 1;
}

.hero-photo {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center center;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    top: 80px;
    left: 50px;
    animation-delay: 0s;
}

.element-2 {
    width: 15px;
    height: 15px;
    background-color: rgba(187, 108, 38, 0.6);
    top: 200px;
    right: 40px;
    animation-delay: 2s;
}

.element-3 {
    width: 25px;
    height: 25px;
    background-color: rgba(254, 251, 237, 0.9);
    bottom: 100px;
    left: 80px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Target Audience Section - 2ª dobra (Branco) */
.target-audience {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.target-audience h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.audience-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-item i {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

/* Treatments Section */
.treatments {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: white;
}

.treatments h2 {
    color: white;
    font-family: 'Playfair Display', serif;
}

.treatments-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.treatment-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.treatment-item i {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.treatment-item h3 {
    color: white;
    margin-bottom: 15px;
}

.treatment-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.treatment-description {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}

.microcopy {
    text-align: center;
    margin-top: 2rem;
}

.microcopy p {
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section - 4ª dobra (Branco) */
.about {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image .placeholder-image {
    width: 250px;
    height: 250px;
}

/* Why Choose Section - 5ª dobra (Verde) */
.why-choose {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: white;
}

.why-choose h2 {
    color: white;
    font-family: 'Playfair Display', serif;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 3rem;
}

.why-choose-text {
    padding-right: 2rem;
}

.why-choose-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.why-choose-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-choose-benefits .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.why-choose-benefits .feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: left;
    border-radius: 8px;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-benefits .feature-item i {
    font-size: 1.3rem;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.why-choose-benefits .feature-item-content {
    flex: 1;
}

.why-choose-benefits .feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.why-choose-benefits .feature-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: white;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: white;
}

.testimonials h2 {
    color: white;
    font-family: 'Playfair Display', serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.testimonial-item i {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.testimonial-item p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.testimonial-item p:last-of-type {
    margin-bottom: 20px;
}

.testimonial-stars {
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* How it Works Section - 7ª dobra (Branco) */
.how-it-works {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 3rem 0;
}

.step-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-item i {
    font-size: 3rem;
    color: var(--primary-green);
    margin: 20px 0;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section - 8ª dobra (Verde) */
.faq {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: white;
}

.faq h2 {
    color: white;
    font-family: 'Playfair Display', serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: white;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    font-size: 1.2rem;
}

.faq-question i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section - 9ª dobra (Branco) */
.contact {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--primary-brown);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--hover-gold);
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        margin-top: 2rem !important;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* TÍTULOS DAS DOBRAS - AUMENTAR PARA O MESMO TAMANHO DA 2ª DOBRA (EXCETO HERO) */
    section:not(.hero) h2 {
        font-size: 2.2rem !important;
    }
    
    /* Ajustar segunda dobra para máximo 3 linhas */
    .target-audience h2 {
        font-size: 1.9rem !important;
        line-height: 1.3;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    /* Mobile Hero Reordering */
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
    /* Mobile order: CRP, H1, Image, CTA, Text support, H2 */
    .crp-info {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        order: 2;
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    /* Image comes after H1 */
    .hero-image {
        order: 3;
        margin-bottom: 1.5rem;
    }
    
    /* CTA comes after image */
    .hero-cta {
        order: 4;
        margin: 0 auto 2rem auto;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }
    
    /* Text support comes after CTA */
    .hero-priority {
        order: 5;
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }
    
    /* H2 comes last */
    .hero-text h2 {
        order: 6;
        margin-bottom: 0;
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-image-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .hero-photo {
        width: 280px;
        height: 280px;
    }
    
    .image-bg-shape {
        width: 260px;
        height: 260px;
        top: 20px;
        left: 20px;
    }
    
    .image-bg-shape-2 {
        width: 130px;
        height: 130px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .audience-grid,
    .treatments-grid,
    .features-grid,
    .testimonials-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-text {
        padding-right: 0;
        text-align: center;
    }
    
    .why-choose-text h2 {
        text-align: center;
    }
    
    .treatment-item,
    .faq-item {
        min-width: auto;
    }
    
    .placeholder-image {
        width: 250px;
        height: 250px;
    }
    
    .about-image .placeholder-image {
        width: 200px;
        height: 200px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    /* TÍTULOS DAS DOBRAS - AUMENTAR PROPORCIONALMENTE (EXCETO HERO) */
    section:not(.hero) h2 {
        font-size: 1.8rem !important;
    }
    
    /* Ajustar segunda dobra para máximo 3 linhas */
    .target-audience h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .placeholder-image {
        width: 200px;
        height: 200px;
    }
    
    .placeholder-image i {
        font-size: 3rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.audience-item,
.treatment-item,
.feature-item,
.testimonial-item,
.step-item,
.faq-item,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.whatsapp-float a:focus {
    outline: 3px solid var(--hover-gold);
    outline-offset: 2px;
}

/* Smooth scrolling para links internos */
a[href^="#"] {
    scroll-behavior: smooth;
}
