/* ==========================================================================
   1. DIRETRIZES GERAIS, VARIÁVEIS E RESET
   ========================================================================== */
:root {
    --bg-pure-black: #000000;
    --bg-card-dark: rgba(10, 10, 12, 0.62);
    --brand-emerald: #10b981;
    --brand-emerald-glow: #34d399;
    --brand-gold: #f59e0b;
    --brand-gold-glow: #fbbf24;
    --text-primary: #e2e8f0;
    --text-muted: #94a3b8;
    --border-alpha: rgba(255, 255, 255, 0.13);
    --gpu-acceleration: translateZ(0);
}

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

body {
    background-color: var(--bg-pure-black);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Acessibilidade e SEO (Escondido visualmente, legível para robôs/leitores) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   2. HEADER E NAVEGAÇÃO NATIVA
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); 
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(to right, rgba(16, 185, 129, 0) 0%, var(--brand-emerald) 50%, rgba(16, 185, 129, 0) 100%) 1;
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 4%; 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: var(--gpu-acceleration);
}

.logo-container {
    margin-bottom: 0; 
}

.logo-link {
    display: inline-block;
}

.logo-link:hover .logo-text {
    color: var(--brand-emerald-glow) !important;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.6); 
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.logo-text-medium {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav a {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.8);
}

.main-nav a:hover, .main-nav a:focus-visible {
    color: var(--brand-emerald-glow);
    outline: none;
}

/* Botão Mobile Hambúrguer */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: background 0.3s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: #ffffff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.menu-toggle.active .hamburger { background: transparent; }
.menu-toggle.active .hamburger::before { transform: rotate(45deg) translateZ(0); top: 0; }
.menu-toggle.active .hamburger::after { transform: rotate(-45deg) translateZ(0); top: 0; }

/* ==========================================================================
   3. ARQUITETURA DO CANVAS E CAMADAS DE ROLAGEM
   ========================================================================== */
#scrollytelling-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-pure-black);
}

#animation-canvas {
    width: 100%;
    height: 100%;
    display: block; 
}

#content-layers {
    position: relative;
    z-index: 2;
    width: 100%;
}

.scroll-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 6% 60px 6%;
    position: relative;
}

/* ==========================================================================
   4. COMPONENTES PREMIUM (Glassmorphism de Alta Performance)
   ========================================================================== */
.content-box-premium {
    width: 100%;
    max-width: 680px;
    height: auto;
    background: var(--bg-card-dark); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-alpha); 
    padding: 45px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.95); 
    /* Otimização de GPU: Previne lag de repintura durante a execução do canvas */
    will-change: transform, opacity;
    transform: var(--gpu-acceleration);
}

.side-by-side-wrapper {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    will-change: transform, opacity;
}

.dual-box {
    flex: 1;
    background: var(--bg-card-dark); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-alpha);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.95);
    padding: 45px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transform: var(--gpu-acceleration);
}

.desktop-align-box {
    border-left: 3px solid var(--brand-gold) !important; 
}

.content-box-premium.central, .dual-box.central {
    margin: 0 auto;
    padding: 55px;
    align-items: center;
    text-align: center;
}

.content-box-premium.right {
    margin-left: auto;
    margin-right: 0;
    border-left: 3px solid var(--brand-emerald);
}

.content-box-premium.left {
    margin-right: auto;
    margin-left: 0;
    border-right: 3px solid var(--brand-emerald);
}

.seal-box {
    border-top: 3px solid var(--brand-emerald) !important;
    padding: 100px 6% !important; 
}

#section-hero .content-box-premium {
    border-bottom: 3px solid var(--brand-emerald) !important;
}

#section-unidades .side-by-side-wrapper > .dual-box:first-child {
    border-right: 3px solid var(--brand-emerald) !important;
}

/* Painel Informativo Técnico */
.contact-specs-panel {
    width: 100%;
    background: rgba(245, 158, 11, 0.02);
    border: 1px dashed rgba(245, 158, 11, 0.2);
    padding: 22px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.contact-specs-panel h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--brand-gold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-specs-panel p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.specs-bullet-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specs-bullet-list li {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.specs-bullet-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--brand-gold);
    font-size: 0.8rem;
}

/* ==========================================================================
   4.1 BOTÕES DE CONTATO WHATSAPP
   ========================================================================== */
.whatsapp-links-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 12px;
    margin-top: 20px;
}

.whatsapp-branch-link {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 24px 28px !important; 
    background: rgba(15, 11, 8, 0.7) !important; 
    border: 1px solid rgba(245, 158, 11, 0.45) !important; 
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform: var(--gpu-acceleration);
}

.whatsapp-branch-link .link-headline {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ffffff !important; 
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.whatsapp-branch-link .link-subtext {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important;
    color: var(--brand-gold) !important; 
    margin-top: 6px !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
}

.whatsapp-branch-link:hover, .whatsapp-branch-link:focus-visible {
    background: rgba(245, 158, 11, 0.12) !important;
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.35) !important;
    transform: translateY(-2px) !important;
    outline: none;
}

.whatsapp-branch-link:hover .link-headline {
    color: var(--brand-gold-glow) !important;
}

/* ==========================================================================
   4.2 FLOATING ACTION BUTTON (FAB) E MODAL (Limpeza de Inline do HTML)
   ========================================================================== */
#fab-contact {
    position: fixed !important; 
    bottom: 35px !important;
    right: 35px !important;
    width: 65px !important;
    height: 65px !important;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    display: flex !important; 
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 160 !important; 
    box-shadow: 0 8px 35px rgba(5, 150, 105, 0.5) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s !important;
    transform: var(--gpu-acceleration);
}

#fab-contact svg.fab-icon {
    width: 26px !important;
    height: 26px !important;
    color: #ffffff !important;
    fill: currentColor !important;
    display: block !important;
}

#fab-contact:hover {
    transform: scale(1.08) translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.7) !important;
    background: linear-gradient(135deg, var(--brand-emerald-glow) 0%, #059669 100%) !important;
}

.fab-tooltip {
    position: absolute;
    right: 80px;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#fab-contact:hover .fab-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 300; 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-wrapper {
    background: rgba(10, 10, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 50px 110px rgba(0, 0, 0, 0.95);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 45px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Absorção da tipografia inline do Modal */
.modal-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-align: left;
}

.modal-wrapper p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: left;
}

.modal-overlay.active .modal-wrapper {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

/* ==========================================================================
   5. ACORDEÃO DE SERVIÇOS TÉCNICOS
   ========================================================================== */
.accordion-container {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    cursor: pointer;
    padding: 18px 20px;
    text-align: left;
    border: 1px solid var(--brand-gold);
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn:hover, .accordion-btn:focus-visible, .accordion-btn.active {
    background: rgba(245, 158, 11, 0.1);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-gold);
}

.accordion-btn.active::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    padding: 0 20px;
}

.accordion-content p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ==========================================================================
   6. GRIDS DE CONTEÚDO E FORMULÁRIO DE ORÇAMENTO
   ========================================================================== */
.unidades-grid, .tech-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.dual-grid {
    grid-template-columns: 1fr;
}

.card-unidade, .spec-card {
    background: rgba(255, 255, 255, 0.04); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 8px;
}

.card-unidade h3, .spec-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--brand-emerald-glow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.spec-card h3 { color: #fff; font-size: 1rem; }
.card-unidade p, .spec-card p { font-size: 0.9rem; margin-bottom: 8px; color: #f1f5f9; }

.stealth-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.form-group {
    width: 100%;
}

.stealth-form input, .stealth-form textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6); 
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.stealth-form input[type="file"] {
    padding: 12px 20px; /* Absorção do inline do HTML */
}

.stealth-form input:focus, .stealth-form textarea:focus {
    border-color: var(--brand-emerald);
}

.form-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.form-logo-space {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Miniaturas das Fotos Anexadas */
#file-preview-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.preview-item {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: rgba(239, 68, 68, 0.85);
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    transition: background 0.2s;
}

.preview-item .remove-btn:hover {
    background: rgb(220, 38, 38);
}

/* ==========================================================================
   7. TIPOGRAFIA AVANÇADA E ELEMENTOS DE MARCA
   ========================================================================== */
h1, h2 {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }

.highlight {
    color: var(--brand-emerald-glow);
    text-shadow: 0 0 25px rgba(16, 185, 129, 0.45);
}

p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-primary); 
    margin-bottom: 20px;
}

p strong { color: #ffffff; }

.badge-gold, .badge-laser {
    display: inline-block;
    padding: 6px 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--brand-gold-glow);
}

.badge-laser {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--brand-emerald-glow);
}

.scroll-indicator {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 30px;
    animation: pulse 2s infinite;
}

.seal-box .brand-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem); 
    letter-spacing: 3px;
    color: #ffffff;
    font-weight: 900;
    margin-top: 20px;      
    margin-bottom: 15px;    
    line-height: 1.1;
    width: 100%;
    text-align: center;
}

.seal-box .subtitle {
    font-family: 'Orbitron', sans-serif;
    color: var(--brand-emerald-glow);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 45px;    
}

.footer-deep-text {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    padding: 18px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(5, 150, 105, 0.3);
    letter-spacing: 1px;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(5, 150, 105, 0.5);
    background: linear-gradient(135deg, var(--brand-emerald-glow) 0%, #059669 100%);
    outline: none;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ==========================================================================
   8. RESPONSIVIDADE E ADAPTAÇÃO PARA DISPOSITIVOS MÓVEIS
   ========================================================================== */
@media (max-width: 1024px) {
    .side-by-side-wrapper {
        flex-direction: column;
        gap: 40px; 
    }
    .dual-box {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* CORREÇÃO DO BUG CRÍTICO: Removido gap de 140px que quebrava a experiência mobile */
    .side-by-side-wrapper {
        gap: 40px !important; 
    }

    .contact-specs-panel {
        margin-top: 15px;
        padding: 15px;
    }

    .modal-wrapper {
        padding: 35px 20px;
    }

    #fab-contact {
        bottom: 25px !important;
        right: 25px !important;
        width: 58px !important;
        height: 58px !important;
    }

    /* Ajustado para casar perfeitamente com o multiplicador de altura do main.js */
    #scrollytelling-container {
        height: 115vh !important;
        bottom: -15vh;
    }

    #main-header {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .menu-toggle {
        display: block;
    }

    /* Menu Lateral Mobile Fluido */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.94); 
        backdrop-filter: blur(25px); 
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(16, 185, 129, 0.3);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 40px;
        gap: 30px;
        z-index: 105;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        flex-wrap: nowrap;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 0.9rem;
        letter-spacing: 1px;
        width: 100%;
    }

    .scroll-section {
        padding: 140px 20px 60px 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .seal-box .brand-title { 
        font-size: clamp(1.2rem, 6.5vw, 1.8rem) !important; 
        letter-spacing: 2px !important;
        text-align: center !important;
        margin: 20px auto 15px auto !important;
        display: block;
    }
    
    .seal-box .subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .content-box-premium, .dual-box { 
        padding: 30px 20px; 
    }
    
    .content-box-premium.seal-box {
        padding: 60px 24px !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .unidades-grid, .tech-spec-grid { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.55;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }
}

/* ==========================================================================
   9. INTERRUPTOR DE ESTADO INICIAL PARA GSAP (Evita saltos abruptos de CLS)
   ========================================================================== */
.scroll-section .content-box-premium, 
.scroll-section .side-by-side-wrapper {
    opacity: 0;
    /* Sincronizado milimetricamente com os 30px definidos no main.js */
    transform: translateY(30px);
}