/* ==========================================================================
   1. RESET & VARIÁVEIS
   ========================================================================== */
:root {
    --primary-color: #2563eb; 
    --primary-hover: #1d4ed8;
    --dark-color: #0e1923; 
    --text-color: #334155;
    --light-bg: #f8fafc;
    --ice-blue: #eff6ff; 
    --white: #ffffff;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

img { 
    width: 100%; 
    height: 100%; 
    display: block; 
    object-fit: cover; 
    border-radius: var(--border-radius); 
}

.container { width: 90%; max-width: 1440px; margin: 0 auto; }

/* ==========================================================================
   2. UTILITÁRIOS GERAIS
   ========================================================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.text-white { color: var(--white) !important; }
.text-light { color: #94a3b8; }
.bg-light { background-color: var(--light-bg); }
.bg-dark { background-color: var(--dark-color); }
.section { padding: 6rem 0; }

/* ==========================================================================
   3. TIPOGRAFIA & BOTÕES
   ========================================================================== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark-color); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background-color: #dbeafe;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary { background-color: var(--primary-color); color: var(--white); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-3px); }
.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background-color: var(--primary-color); color: var(--white); }
.btn-dark { background-color: var(--dark-color); color: var(--white); }
.btn-dark:hover { background-color: #1a2a3b; }

/* ==========================================================================
   4. HEADER / NAVBAR E LOGO
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000; padding: 1.2rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container { width: 100%; padding: 0 4%; display: flex; justify-content: space-between; align-items: center; }

.logo {
    display: block; width: 180px; height: 45px;
    background-image: url('img/smart-preto.svg');
    background-size: contain; background-position: left center; background-repeat: no-repeat;
}

.footer-logo {
    display: block; width: 180px; height: 45px;
    background-image: url('img/smart-preto.svg');
    background-size: contain; background-position: left center; background-repeat: no-repeat;
    filter: brightness(0) invert(1); margin-bottom: 1rem;
}

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

.nav-link { font-weight: 500; transition: var(--transition); }
.nav-link:hover { color: var(--primary-color); }

.hamburger { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--dark-color); }

/* ==========================================================================
   5. SESSÕES: HERO
   ========================================================================== */
.hero-section {
    width: 100%; position: relative; background-color: var(--white);
    background-image: radial-gradient(circle at top right, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}

.hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: stretch; padding-top: 10rem; padding-bottom: 4rem; }
.hero-image { width: 100%; height: 100%; }
.hero-list { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; }
.hero-list li { font-weight: 500; color: var(--dark-color); }
.hero-buttons { margin-top: 2rem; }
.trust-text { font-size: 0.875rem; color: #64748b; margin-top: 1rem; }

/* ==========================================================================
   6. SESSÕES: TARJA DE BENEFÍCIOS (MARQUEE)
   ========================================================================== */
.benefits-bar { background-color: var(--dark-color); color: var(--white); padding: 1.8rem 0; overflow: hidden; width: 100%; }
.marquee-track { display: flex; width: max-content; animation: scrollMarquee 20s linear infinite; }
.marquee-content { display: flex; }
.benefit-item { width: 50vw; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 500; font-family: var(--font-heading); font-size: 1.15rem; white-space: nowrap; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================================================
   7. SESSÕES: COMO FUNCIONA (LIGHT UI APP)
   ========================================================================== */
.process-wrapper { background-color: var(--ice-blue); border-radius: 24px; padding: 4rem; box-shadow: 0 20px 40px rgba(37, 99, 235, 0.05); }
.process-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.process-header-content { max-width: 600px; }
.process-badge { display: flex; align-items: center; gap: 0.5rem; color: var(--primary-color); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.process-badge .dot { width: 8px; height: 8px; background-color: var(--primary-color); border-radius: 50%; }
.process-header h2 { color: var(--dark-color); margin-bottom: 0; font-size: clamp(2rem, 3vw, 2.5rem); }
.process-line { flex-grow: 1; height: 1px; background-color: rgba(37, 99, 235, 0.15); margin-bottom: 1rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.process-card { background-color: var(--white); border: 1px solid rgba(37, 99, 235, 0.05); border-radius: 20px; padding: 2.5rem; display: flex; flex-direction: column; transition: var(--transition); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.process-card:hover { background-color: var(--white); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08); }
.process-number { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--primary-color); margin-bottom: 1.5rem; }
.process-card h3 { color: var(--dark-color); font-size: 1.3rem; margin-bottom: 1rem; }
.process-card p { color: var(--text-color); font-size: 0.95rem; margin-bottom: 2rem; flex-grow: 1; }
.process-img { width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; }
.process-img img { transition: transform 0.5s ease; }
.process-card:hover .process-img img { transform: scale(1.05); }

/* CTA Interno do Processo */
.process-cta-bar { margin-top: 1.5rem; background-color: var(--white); border: 1px solid rgba(37, 99, 235, 0.05); border-radius: 20px; padding: 1.5rem 2.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.process-avatars { display: flex; align-items: center; }
.avatars-group { display: flex; }
.avatars-group img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--white); margin-left: -12px; }
.avatars-group img:first-child { margin-left: 0; }
.process-avatars span { margin-left: 1rem; color: var(--dark-color); font-size: 0.95rem; font-weight: 500; }

.btn-icon { display: flex; align-items: center; gap: 0.5rem; background-color: var(--primary-color); color: var(--white); padding: 0.8rem 1.5rem 0.8rem 0.8rem; border-radius: 50px; font-weight: 600; transition: var(--transition); }
.btn-icon:hover { background-color: var(--primary-hover); transform: scale(1.05); }
.btn-icon .icon-arrow { background-color: var(--white); color: var(--primary-color); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1rem; }

/* ==========================================================================
   8. SESSÕES: RESULTADOS IMPACTO REAL (BORDAS DIVISÓRIAS)
   ========================================================================== */
.flat-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; }
.flat-stat-item { text-align: center; padding: 0 3rem; }
.flat-stat-item:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.stat-number-wrapper { display: flex; justify-content: center; align-items: baseline; margin-bottom: 1rem; }
.stat-number { font-family: var(--font-heading); font-size: 5.5rem; font-weight: 800; color: var(--primary-color); line-height: 1; letter-spacing: -2px; }
.stat-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.flat-stat-item p { font-size: 0.95rem; line-height: 1.6; }

/* ==========================================================================
   9. SESSÕES: TRATAMENTOS & SPLIT LAYOUT
   ========================================================================== */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
.feature-list { display: flex; flex-direction: column; gap: 1.2rem; }
.feature-list li { display: flex; align-items: center; gap: 1rem; font-weight: 500; font-size: 1rem; color: var(--dark-color); }
.icon-box { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background-color: #dbeafe; color: var(--primary-color); border-radius: 8px; flex-shrink: 0; }

.split-image-wrapper { position: relative; width: 100%; height: 100%; padding-right: 2rem; padding-bottom: 2rem; display: flex; }
.image-decoration { position: absolute; bottom: 0; right: 0; width: 80%; height: 80%; background-color: var(--light-bg); border-radius: var(--border-radius); z-index: 0; }
.split-image-wrapper img { position: relative; z-index: 1; width: 100%; flex-grow: 1; object-fit: cover; min-height: 400px; border-radius: var(--border-radius); box-shadow: 0 20px 40px rgba(14, 25, 35, 0.1); }

/* ==========================================================================
   10. SESSÕES: ESTUDOS CLÍNICOS (CARDS)
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.card { background: var(--white); border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition); }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.estudo-card { display: flex; flex-direction: column; padding: 2.5rem 2rem; }
.estudo-header { margin-bottom: 1.5rem; }
.estudo-title-wrapper { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.25rem; }
.estudo-title-wrapper h3 { margin-bottom: 0; font-size: 1.3rem; }
.estudo-journal { font-size: 0.85rem; font-style: italic; color: #64748b; display: block; padding-left: 2.3rem; }
.estudo-meta { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
.meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 500; color: var(--dark-color); }
.meta-item svg { color: #64748b; }
.estudo-divider { border: none; border-top: 1px solid #e2e8f0; margin: 0 0 1.5rem 0; }
.estudo-results h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--dark-color); }
.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.check-list li { position: relative; padding-left: 1.5rem; font-size: 0.9rem; }
.check-list li::before { content: "→"; color: var(--primary-color); position: absolute; left: 0; font-weight: bold; }

/* ==========================================================================
   11. GRÁFICO DE EFICIÊNCIA ANIMADO (NOVA LÓGICA DE ALTURA 100% ROBUSTA)
   ========================================================================== */
.chart-container { display: flex; gap: 1.5rem; max-width: 900px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; }
.chart-y-axis { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; padding-bottom: 2.5rem; color: #94a3b8; font-size: 0.85rem; font-weight: 500; width: 40px; }
.chart-wrapper { flex-grow: 1; display: flex; flex-direction: column; }
.chart-legend { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; font-size: 0.9rem; font-weight: 500; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-primary { background-color: var(--primary-color); }
.dot-placebo { background-color: #cbd5e1; }

.chart-bars {
    height: 300px; /* Altura principal ancorada */
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.chart-bars::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(to top, #f1f5f9 1px, transparent 1px);
    background-size: 100% 20%; z-index: 0;
}

.bar-group {
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    width: 20%; height: 100%; position: relative; z-index: 1;
}

.bar-pair {
    display: flex; align-items: flex-end; justify-content: center; gap: 4px;
    width: 100%; height: 100%; flex-grow: 1;
}

.bar {
    width: 30px; border-radius: 6px 6px 0 0; cursor: pointer; position: relative;
    height: 0%; /* Inicia zerado. JS fará a alteração. */
    transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.bar:hover { filter: brightness(1.1); }

.bar::after {
    content: attr(title); position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
    background: var(--dark-color); color: var(--white); padding: 4px 8px; font-size: 0.75rem;
    border-radius: 4px; white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 10;
}
.bar:hover::after { opacity: 1; visibility: visible; }
.bar-primary { background-color: var(--primary-color); }
.bar-placebo { background-color: #cbd5e1; }
.bar-label { margin-top: 1rem; color: var(--dark-color); font-size: 0.85rem; font-weight: 600; }

/* ==========================================================================
   12. SESSÕES: FAQ GERAL (30/70 LAYOUT) E ACORDEÃO
   ========================================================================== */
.faq-layout { display: grid; grid-template-columns: 3fr 7fr; gap: 4rem; }
.faq-text h2 { margin-bottom: 0.5rem; }
.faq-text .mt-4 { margin-top: 1rem; }

.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item { border: 1px solid #e2e8f0; border-radius: var(--border-radius); overflow: hidden; transition: var(--transition); background-color: var(--white); }
.accordion-item.active { border-color: var(--primary-color); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08); }
.accordion-header { width: 100%; text-align: left; padding: 1.25rem 1.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--dark-color); background: transparent; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.accordion-header:hover { color: var(--primary-color); }
.accordion-header .icon { font-size: 1.5rem; font-weight: 400; color: var(--primary-color); transition: transform 0.3s ease; line-height: 1; }
.accordion-item.active .accordion-header .icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; padding: 0 1.5rem; background-color: #f8fafc; }
.accordion-item.active .accordion-body { max-height: 400px; padding: 0 1.5rem 1.25rem 1.5rem; }
.accordion-body p { font-size: 0.95rem; color: var(--text-color); margin: 0; padding-top: 1rem; border-top: 1px solid #e2e8f0; }

/* ==========================================================================
   13. CTA FORMULÁRIO & FOOTER
   ========================================================================== */
.cta-section { background-color: var(--primary-color); color: var(--white); border-radius: var(--border-radius); margin: 4rem auto; width: 90%; max-width: 1440px; padding: 6rem 2rem; }
.cta-section h2 { color: var(--white); }
.cta-form { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.cta-form input { padding: 1rem 1.5rem; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 1rem; outline: none; flex: 1; min-width: 250px; max-width: 400px;}

.footer { background-color: var(--dark-color); color: #94a3b8; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer h3, .footer h4 { color: var(--white); }
.footer-links p, .footer-legal a { display: block; margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; font-size: 0.875rem; }

/* ==========================================================================
   14. PÁGINAS LEGAIS (TERMOS E PRIVACIDADE)
   ========================================================================== */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal-content p { margin-bottom: 1.5rem; color: #475569; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; list-style-type: disc; color: #475569; }

/* ==========================================================================
   15. ANIMAÇÕES DE INTERSECTION OBSERVER
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in { opacity: 0; transition: opacity 1s ease-out; }
.fade-up.is-visible, .fade-in.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   16. MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 992px) {
    .hero, .split-layout, .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { order: 1; }
    .hero-image { height: 400px; order: 2; }
    
    .split-image-wrapper { height: 400px; order: -1; padding-right: 0; padding-bottom: 0; }
    .image-decoration { display: none; } 
    
    .method-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    
    .flat-stats-grid { padding: 0 1rem; }
    .stat-number { font-size: 4.5rem; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Menu Drawer */
    .mobile-hidden { display: none; }
    .hamburger { display: block; z-index: 1001; }
    
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 100vw; height: 100vh;
        background: var(--dark-color); flex-direction: column; align-items: center; justify-content: center;
        padding: 2rem; gap: 2rem; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000;
    }
    .nav-menu.active { right: 0; }

    .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; width: 100%; position: absolute; top: 1.2rem; left: 0; padding: 0 4%; }
    .close-menu { background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
    .nav-link { color: var(--white); font-size: 1.5rem; }
    .nav-btn { margin-top: 1rem; width: 80%; }

    .hero { padding-top: 6rem; padding-bottom: 3rem; }
    .benefit-item { width: 100vw; font-size: 1rem; }
    /* Reduz o espaço entre a tarja e o Passo a Passo no mobile */
    #como-funciona { 
        padding-top: 2rem; 
    }
    
    /* ==========================================
       SLIDER NATIVO NO MOBILE (FULL-BLEED)
       ========================================== */
    .process-wrapper { 
        padding: 2rem 1.5rem; 
        border-radius: 16px; 
        /* Garante que a caixa azul não corte os cards */
        overflow: visible; 
    }

    .process-grid { 
        display: flex; 
        flex-wrap: nowrap; 
        overflow-x: auto; 
        gap: 1rem;
        
        /* Truque Mágico para o Slider vazar a tela toda (Full-bleed) */
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        
        /* O padding alinha o primeiro card exatamente com o texto da caixa azul
           (5vw da margem do body + 1.5rem do padding do wrapper) */
        padding: 1rem calc(5vw + 1.5rem) 2.5rem calc(5vw + 1.5rem);
        
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .process-grid::-webkit-scrollbar { 
        display: none; 
    }
    
    .process-card { 
        /* Trava o tamanho exato do card, resolvendo o bug de ficarem gigantes */
        width: 80vw;
        max-width: 320px;
        flex: 0 0 auto; /* Impede o card de esmagar ou esticar */
        
        scroll-snap-align: center; 
        padding: 2rem 1.5rem; 
    }

    /* Ajustes dos elementos do Header e Footer da caixa azul */
    .process-cta-bar { flex-direction: column; text-align: center; justify-content: center; }
    .process-avatars { flex-direction: column; gap: 1rem; }
    .process-avatars span { margin-left: 0; text-align: center; }
    .avatars-group img { margin-left: -8px; }
    .process-wrapper { padding: 2rem 1.5rem; border-radius: 16px; }
    .process-cta-bar { flex-direction: column; text-align: center; justify-content: center; }
    .process-avatars { flex-direction: column; gap: 1rem; }
    .process-avatars span { margin-left: 0; text-align: center; }
    .avatars-group img { margin-left: -8px; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .legal-content { padding: 2rem 1.5rem; }
    .legal-content h1 { font-size: 2rem; }

    .flat-stats-grid { grid-template-columns: 1fr; margin-top: 3rem; padding: 0; }
    .flat-stat-item { padding: 0; }
    .flat-stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding-bottom: 3rem; margin-bottom: 3rem; }

    /* Gráfico Responsivo */
    .chart-container { padding: 2rem 1rem; flex-direction: column; }
    .chart-legend { gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; justify-content: flex-start;}
    .chart-bars { height: 200px; gap: 1rem; justify-content: space-between;}
    .bar-group { width: 23%; }
    .bar { width: 15px; } 
    .bar-label { font-size: 0.75rem;}

    /* Desativa a animação de opacidade no carrossel para mostrar a "pontinha" do próximo card */
    .process-card.fade-up {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .text-center, .section-header, .flat-stat-item, .cta-section .container { text-align: left !important; }
    .stat-number-wrapper { justify-content: flex-start; }
    
    .btn { width: 100%; display: block; text-align: center !important; }
    .hero-buttons { display: flex; flex-direction: column; width: 100%; }
    .hero-buttons .trust-text { text-align: left; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: left !important; }
    .footer-logo { margin: 0 0 1rem 0 !important; background-position: left center !important; }
}