/* --- CARREGAMENTO LOCAL DA FONTE POOINS --- */
/* Certifique-se de que estes arquivos (.woff2) estão na pasta 'fonts/' */

/* Peso Regular (400) */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
/* Peso Medium (500) - Usado como SemiBold alternativo para este peso */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
/* Peso SemiBold (600) */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
/* Peso Bold (700) */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* --- GLOBAIS E VARIÁVEIS --- */
:root {
    --bg-dark: #1A1A2E;
    --bg-card: #16213E;
    --text-light: #E0E0E0;
    --text-muted: #9BA3AE;
    --gradient-primary: linear-gradient(90deg, #e02f8b, #ff4b4b);
    --whatsapp-green: #25D366;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 15px rgba(0,0,0,0.2);
    --border-radius-lg: 15px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    /* CORREÇÃO 1: Fundo HTML para mascarar o efeito elástico lateral */
    background-color: var(--bg-dark); 
    max-width: 100vw; 
    overflow-x: hidden;
}
body {
    /* CORREÇÃO 2: Impede a rolagem horizontal */
    overflow-x: hidden; 
    width: 100vw; 
    
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }

/* --- UTILIDADES E HEADER --- */
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.header { 
    background-color: rgba(26, 26, 46, 0.9); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-color); 
    width: 100%; 
    position: fixed; 
    top: 0; 
    z-index: 1000; 
    max-width: 100vw;
}
.navbar { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.nav-logo img { height: 55px; }
.nav-menu { display: flex; list-style: none; gap: 40px; }
.nav-link { color: var(--text-light); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-link:hover { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-action { display: block; }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--text-light); transition: all 0.3s ease-in-out; }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 30px; border-radius: 50px; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--gradient-primary); color: var(--text-light); box-shadow: 0 8px 20px rgba(224, 47, 139, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(224, 47, 139, 0.4); }
.btn-lg { padding: 18px 45px; font-size: 1.15rem; }
.btn-secondary { background: var(--bg-card); color: var(--text-light); border-color: var(--border-color); }
.btn-secondary:hover { background-color: var(--bg-dark); border-color: #ff4b4b; color: #ff4b4b; transform: translateY(-2px); }

/* --- HERO SECTION --- */
.hero-section { padding: 180px 0 100px; background: radial-gradient(circle at top left, #2a0a4c 0%, transparent 40%), radial-gradient(circle at bottom right, #3f0f3a 0%, transparent 40%), var(--bg-dark); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-text h1 { font-size: clamp(2.8rem, 5vw, 3.8rem); line-height: 1.2; margin-bottom: 25px; min-height: 150px; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; }
.hero-highlights { display: flex; gap: 30px; margin-top: 50px; }
.highlight-item h3 { font-size: 2rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 5px; }
.highlight-item p { color: var(--text-muted); font-size: 0.95rem; }
.hero-image img { max-width: 100%; height: auto; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5)); animation: floating 5s ease-in-out infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.typed-cursor { font-size: 3.8rem; color: #ff4b4b; }

/* --- SEÇÃO DE CANAIS (PARCEIROS) --- */
.partners-section { padding: 40px 0; background-color: var(--bg-card); text-align: center; overflow: hidden; }
.partners-container p { color: var(--text-muted); margin-bottom: 20px; font-weight: 500; }
.partners-track { 
    display: flex; 
    /* Largura de 180px por logo. 28 logos */
    width: calc(180px * 28); 
    /* VELOCIDADE DA ROLAGEM: 7 SEGUNDOS */
    animation: scroll 15s linear infinite; 
}
.partners-track img { 
    height: 35px; /* Altura padronizada */
    width: 100px; /* Largura padronizada */
    object-fit: contain; /* Garante que o logo não distorça */
    margin: 0 40px; 
    /* FILTRO DE COR CINZA/BRANCO (GRÁFICOS) */
    filter: grayscale(1) invert(0.8) brightness(1.2); 
    opacity: 1; /* Torna o logo sólido */
}
@keyframes scroll { 
    0% { transform: translateX(0); } 
    /* Rola metade da lista (14 logos) para um loop suave */
    100% { transform: translateX(calc(-180px * 14)); } 
}

/* --- FEATURES / VANTAGENS --- */
.features-section { padding: 100px 0; background-color: var(--bg-card); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { background-color: var(--bg-dark); padding: 35px; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); text-align: center; transition: all 0.3s ease; }
.feature-card:hover { transform: translateY(-10px); border-color: #ff4b4b; }
.feature-icon { font-size: 3.5rem; margin-bottom: 20px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.feature-card p { color: var(--text-muted); }

/* --- SEÇÃO DE COMPATIBILIDADE --- */
.compatibility-section { padding: 100px 0; }
.compatibility-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.compatibility-image img { 
    max-width: 100%; 
    /* BORDA ARREDONDADA */
    border-radius: 130px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
}
.compatibility-devices ul { list-style: none; padding-left: 0;}
.compatibility-devices li { font-size: 1.2rem; font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; }
.compatibility-devices li i { color: #5cff5c; margin-right: 15px; font-size: 1.4rem; }
.compatibility-devices li span { color: var(--text-muted); font-size: 1rem; margin-left: 8px; }

/* --- SEÇÃO DE GARANTIA --- */
.guarantee-section { padding: 100px 0; background-color: var(--bg-card); }
.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.guarantee-item { text-align: center; }
.guarantee-item i { font-size: 3rem; margin-bottom: 15px; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.guarantee-item h3 { font-size: 1.4rem; margin-bottom: 10px; }
.guarantee-item p { color: var(--text-muted); }


/* --- SEÇÃO COMPARATIVA (AJUSTADA) --- */
.comparison-section {
    padding: 100px 0;
    /* FUNDO PRINCIPAL DO SITE */
    background-color: var(--bg-dark); 
}
.comparison-grid {
    display: grid;
    /* Alinha a altura das colunas */
    grid-template-columns: 1.1fr 1fr; 
    gap: 60px;
    align-items: flex-start; /* Alinha o topo das colunas */
}

/* Coluna da Tabela (Esquerda) */
.comparison-table {
    padding: 30px;
    /* FUNDO PRINCIPAL (REMOVIDO O AZUL) */
    background-color: var(--bg-dark); 
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}
.comparison-table h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}
.platform-list {
    display: grid;
    gap: 15px;
}
.platform-item, .platform-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 500;
}
.platform-item {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.platform-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    padding-top: 20px;
}

/* Estilo dos logos na tabela: Cinza e Branco */
.platform-item img {
    height: 25px;
    width: 60px;
    object-fit: contain;
    margin-right: 10px;
    /* FILTRO CINZA E BRANCO OTIMIZADO */
    filter: grayscale(1) invert(0.8) brightness(1.2); 
    opacity: 1;
}
.platform-item .platform-name {
    flex-grow: 1;
    color: var(--text-muted);
}
.platform-item .platform-price {
    font-weight: 600;
    color: var(--text-light);
}

/* Coluna de Valor (Direita) */
.comparison-value {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ajusta o espaçamento para alinhar com o topo da tabela */
    padding-top: 30px; 
}
.value-box {
    padding: 10px 0;
    margin-bottom: 10px; 
}
.value-box p {
    /* MANTÉM GRADIENTE */
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.price-tag {
    /* Estilizando o contêiner do Typed.js */
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    min-height: 50px; /* Garante que o efeito de digitação não mova outros elementos */
}
.price-tag .typed-cursor {
    font-size: 3rem; 
}

.savings-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5cff5c; /* Verde para destacar a economia */
    margin-bottom: 25px;
}
.savings-text i {
    margin-right: 8px;
}
.mt-3 {
    margin-top: 20px;
}
/* FIM DA NOVA SEÇÃO */


/* --- PLANOS DE PREÇOS COM TOGGLE --- */
.pricing-section { padding: 100px 0; }
.pricing-toggle { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 40px; }
.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--bg-card); transition: .4s; border-radius: 34px; border: 1px solid var(--border-color); }
.slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background: var(--gradient-primary); }
input:checked + .slider:before { transform: translateX(26px); }
.price-container { min-height: 50px; position: relative; }
.price { transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease; position: absolute; opacity: 0; transform: scale(0.9); height: 0; overflow: hidden; left: 0; right: 0; }
.price.active { position: relative; opacity: 1; transform: scale(1); height: auto; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pricing-card { background-color: var(--bg-card); padding: 40px; border-radius: var(--border-radius-lg); border: 1px solid var(--border-color); text-align: center; position: relative; transition: all 0.3s ease; display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-5px); border-color: #e02f8b; }
.pricing-card.featured { border: 2px solid #e02f8b; transform: scale(1.03); }
.badge { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: var(--text-light); padding: 6px 18px; border-radius: 25px; font-size: 0.85rem; font-weight: 600; }
.plan-name { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; display: block; }
.price { font-size: 3rem; font-weight: 700; }
.period { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-left: 5px; }
.features-list { list-style: none; text-align: left; margin: 30px 0; flex-grow: 1; padding-left: 0; }
.features-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.features-list .fa-check-circle { color: #5cff5c; }
.pricing-card .btn { margin-top: auto; }

/* --- FAQ --- */
.faq-section { padding: 100px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--border-radius-lg); margin-bottom: 15px; }
.faq-item summary { font-size: 1.15rem; font-weight: 600; padding: 20px; cursor: pointer; position: relative; list-style: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); color: #ff4b4b; }
.faq-item p { padding: 0 20px 20px; color: var(--text-muted); }

/* --- FOOTER --- */
.footer { background: #10101C; color: var(--text-muted); padding: 60px 0 20px; border-top: 1px solid var(--border-color); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 50px; margin-bottom: 40px; }
.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.95rem; }
.footer-links-group h4, .footer-contact-info h4 { font-size: 1.3rem; margin-bottom: 20px; color: var(--text-light); }
.footer-links-group ul { list-style: none; padding-left: 0; }
.footer-links-group li { margin-bottom: 10px; }
.footer-links-group a, .footer-contact-info a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links-group a:hover, .footer-contact-info a:hover { color: var(--text-light); }
.footer-contact-info p { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.social-icons a { color: var(--text-muted); font-size: 1.2rem; margin-right: 15px; transition: color 0.3s; }
.social-icons a:hover { color: var(--text-light); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 25px; text-align: center; font-size: 0.9rem; }
.footer-bottom .disclaimer { margin-top: 10px; font-size: 0.8rem; }

/* --- FOOTER | ÍCONES DE CONFIANÇA --- */
.footer-trust-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.footer-trust-icons i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: color 0.3s;
}
.footer-trust-icons i:hover {
    color: var(--text-light);
}

/* --- BOTÃO FLUTUANTE WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-green);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* --- PROVA SOCIAL DINÂMICA --- */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-card);
    color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateX(-120%);
    transition: transform 0.5s ease-in-out;
    visibility: hidden;
}
.social-proof-popup.show { transform: translateX(0); visibility: visible; }
.social-proof-popup i { font-size: 1.8rem; color: #5cff5c; }
.social-proof-text p { margin: 0; line-height: 1.3; font-size: 0.9rem; }
.social-proof-text p strong { font-weight: 600; }

/* --- POPUP DE SAÍDA (EXIT-INTENT) --- */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s ease 0.4s;
}
.exit-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}
.exit-popup {
    background: var(--bg-card);
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.exit-popup-overlay.show .exit-popup {
    transform: scale(1);
}
.exit-popup-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.exit-popup h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-light);
}
.exit-popup p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}
.exit-popup .btn {
    width: 100%;
    font-size: 1.1rem;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}
.close-popup:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

/* ------------------------------------------------------------------ */
/* -------------------- RESPONSIVIDADE OTIMIZADA -------------------- */
/* ------------------------------------------------------------------ */

/* Breakpoint 1: Telas de Tablets (Landscape) e Desktops Menores (Max 1050px) */
@media (max-width: 1050px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }

    .hero-section {
        padding: 150px 0 80px;
    }

    .hero-image img {
        max-width: 90%;
    }
}


/* Breakpoint 2: Telas de Tablets (Portrait) e Dispositivos Móveis Maiores (Max 768px) */
@media (max-width: 768px) {
    
    /* --- GERAIS E CONTAINER --- */
    .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .section-header p {
        font-size: 1rem;
    }

    /* --- HEADER E NAVBAR --- */
    .header {
        height: 75px;
    }
    .navbar {
        height: 75px;
        /* CORREÇÃO DO HAMBÚRGUER: Garante que o conteúdo respeite o padding do container */
        padding: 0 15px;
    }
    .nav-logo img {
        height: 45px;
    }

    /* Esconde o menu e botão por padrão e mostra o hambúrguer */
    .nav-menu, .nav-action { 
        display: none; 
    }
    .hamburger { 
        display: block;
    }

    /* Estilo do menu aberto (Fixed para cobrir a tela) */
    .nav-menu.active { 
        display: flex;
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark); 
        flex-direction: column;
        text-align: center; 
        padding: 20px 0; 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    .nav-item {
        margin: 10px 0;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 10px;
        display: block;
    }

    /* --- HERO SECTION --- */
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px;
    }
    .hero-text { 
        order: 2;
    }
    .hero-image { 
        order: 1;
        margin-bottom: 20px; 
    }
    .hero-text h1 { 
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
        min-height: 0; 
    }
    .typed-cursor {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-highlights { 
        justify-content: space-around; 
        gap: 15px;
        margin-top: 30px;
    }
    .highlight-item h3 {
        font-size: 1.5rem;
    }
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }

    /* --- GRADES DE CONTEÚDO (1 COLUNA) --- */
    .features-grid, 
    .guarantee-grid, 
    .pricing-cards { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    /* --- SEÇÃO COMPARATIVA (AJUSTADA) --- */
    .comparison-grid {
        /* Empilha as colunas no mobile */
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
        /* CORREÇÃO DA ORDEM NO MOBILE: Tabela primeiro, Valor depois */
        display: flex;
        flex-direction: column;
    }
    .comparison-value {
        order: 2; /* Chamada de Valor DEPOIS da Tabela */
    }
    .comparison-table {
        order: 1; /* Tabela COMPARATIVA PRIMEIRO */
        padding: 20px;
    }
    .comparison-table h2 {
        font-size: 1.6rem;
    }
    .platform-item img {
        height: 20px;
    }
    .platform-total {
        font-size: 1.1rem;
    }
    .savings-text {
        font-size: 1rem;
    }

    /* --- COMPATIBILIDADE --- */
    .compatibility-content { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .compatibility-image { 
        order: -1; 
        margin-bottom: 30px;
    }
    .compatibility-devices li {
        justify-content: flex-start;
        max-width: 350px;
        margin: 0 auto 20px auto;
    }
    .compatibility-devices li i {
        margin-right: 10px;
    }

    /* --- PLANOS DE PREÇOS --- */
    .pricing-card.featured {
        transform: scale(1);
    }
    
    /* --- FOOTER --- */
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px;
    }

    /* --- FLUTUANTES E POPUPS --- */
    .whatsapp-float { 
        width: 55px; 
        height: 55px; 
        bottom: 25px; 
        right: 25px; 
        font-size: 26px; 
    }
    
    .social-proof-popup {
        left: 50%;
        transform: translateX(-50%);
        bottom: 90px;
        width: calc(100% - 30px);
        max-width: 300px;
    }
    .social-proof-popup.show { 
        transform: translateX(-50%);
    }

    .exit-popup {
        width: 90%;
        max-width: 350px;
        padding: 30px 20px;
    }
    .exit-popup h2 {
        font-size: 1.6rem;
    }
    
    /* --- Parceiros (Animação) --- */
    .partners-track {
        /* Acelera um pouco no mobile para compensar a tela menor */
        animation: scroll 6s linear infinite; 
    }
    .partners-track img {
        height: 30px;
        width: 80px; 
        margin: 0 20px; 
        /* FILTRO DE COR CINZA/BRANCO (GRÁFICOS) */
        filter: grayscale(1) invert(0.8) brightness(1.2); 
        opacity: 1;
    }
    /* Reajuste do @keyframes para mobile */
    @keyframes scroll { 
        0% { transform: translateX(0); } 
        /* Rola metade dos 28 logos (14) */
        100% { transform: translateX(calc(-120px * 14)); } 
    }
}

/* Breakpoint 3: Celulares Pequenos (Max 480px) */
@media (max-width: 480px) {
    
    .hero-text h1 {
        font-size: 2rem;
    }
    .typed-cursor {
        font-size: 2rem;
    }
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        font-size: 1rem;
    }
    .price-tag {
        font-size: 3.5rem;
    }

    /* Esconde o disclaimer para economizar espaço em telas muito pequenas */
    .footer .disclaimer {
        display: none;
    }
}