/* styles.css */

:root {
    --bg-color: #282b31; /* Cinza Irídio médio-escuro visível */
    --surface-color: rgba(40, 43, 49, 0.75);
    --surface-border: rgba(255, 255, 255, 0.15); /* Bordas mais marcadas */
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0; /* Texto secundário mais claro para brilhar no fundo escuro */
    
    --neon-cyan: #00F0FF;
    --neon-purple: #7000FF;
    --glow-cyan: rgba(0, 240, 255, 0.5);
    --glow-purple: rgba(112, 0, 255, 0.5);
    
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

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

/* CORREÇÃO DUPLO SCROLLBAR:
   overflow-x: hidden em html E body simultaneamente faz o CSS converter
   overflow-y para 'auto' nos DOIS elementos = dois containers de scroll = dois scrollbars.
   Solução: overflow-x apenas no html. O body não define overflow. */
html {
    overflow-x: hidden;
    /* overflow-y implicitamente vira 'auto' = browser adiciona UM único scrollbar aqui */
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(160deg, #2e3138 0%, #22252b 50%, #282b31 100%);
    background-color: #282b31;
    color: var(--text-primary);
    line-height: 1.6;
    /* Sem overflow definido: body não vira container de scroll = zero scrollbars extras */
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

/* Background Effects - Aurora Mesh Gradient */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.12;
    /* Sem animação: o translate da animação float causa layout shifts e duplo scroll */
    pointer-events: none;
    will-change: auto;
}

.top-glow {
    top: -200px;
    left: -200px;
    background: var(--glow-purple);
}

.bottom-glow {
    bottom: -200px;
    right: -200px;
    background: var(--glow-cyan);
    animation-delay: -10s;
}



/* Wrapper fixo que cobre TODA a viewport — o canvas fica preso nele */
.matrix-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;  /* Transparente para cliques E toques */
    touch-action: none;    /* Delega todos os toques ao elemento abaixo (o body) */
    overflow: hidden;
    /* Máscara: centro transparente (protege a leitura), bordas com código em plena força */
    -webkit-mask-image: radial-gradient(
        ellipse 55% 55% at 50% 48%,
        transparent 0%,
        transparent 28%,
        rgba(0,0,0,0.3) 45%,
        rgba(0,0,0,0.7) 60%,
        black 80%
    );
    mask-image: radial-gradient(
        ellipse 55% 55% at 50% 48%,
        transparent 0%,
        transparent 28%,
        rgba(0,0,0,0.3) 45%,
        rgba(0,0,0,0.7) 60%,
        black 80%
    );
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transform: translateZ(0);
    will-change: transform;
    /* Canvas completamente invisível ao sistema de toque */
    pointer-events: none;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Animação suave e fluida simulando uma aurora cósmica */
@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(80px, 60px) scale(1.2) rotate(45deg); }
    100% { transform: translate(-40px, 120px) scale(0.9) rotate(-45deg); }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95); /* Destaque máximo para títulos */
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8)); /* Sombra para o gradiente recortado */
}

/* Navbar Unificada (Ticker + Botão) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    /* CRÍTICO: width + box-sizing garantem que a navbar NUNCA vaze para fora da tela */
    width: 100%;
    box-sizing: border-box;
    height: 64px;
    z-index: 1000;
    background: rgba(20, 22, 26, 0.95);
    border-bottom: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px;
    overflow: hidden; /* Impede que o ticker vaze horizontalmente */
}

.navbar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 350px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(5, 8, 17, 1) 60%);
    z-index: 2;
    pointer-events: none;
}

.nav-actions {
    position: relative;
    z-index: 10;
    margin-left: auto;
    flex-shrink: 0; /* NUNCA deixa o botão ser comprimido para fora da navbar */
}

.nav-actions .btn-outline {
    background: #14161a; /* Cinza irídio sólido para não misturar com o ticker passando */
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--surface-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    color: #fff;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 40px;
    width: 100%;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-inline: auto;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

/* Tech Ticker (Marquee na Navbar) */
.tech-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap; /* CRÍTICO: Impede que o texto quebre em várias linhas */
    z-index: 1; /* Fica no fundo da navbar */
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* CRÍTICO: Impede quebra de linha interna */
    animation: scrollTicker 45s linear infinite;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.ticker-track span {
    display: inline-block;
}

.ticker-track .dot {
    color: var(--neon-cyan);
    margin: 0 24px;
    opacity: 0.6;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Glass Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6); /* Sombra extra atrás dos cards para desgrudar do vídeo */
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid rgba(112, 0, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--neon-cyan);
    font-size: 28px;
    transition: all 0.3s ease;
}

.glass-card:hover .card-icon {
    background: var(--neon-purple);
    color: #fff;
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    padding: 64px 32px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-inline: auto;
}


/* Case de Sucesso Real */
.case-study {
    padding: 60px 0;
}

.case-box {
    padding: 48px;
    border: 1px solid rgba(112, 0, 255, 0.25);
    background: linear-gradient(135deg, rgba(40, 43, 49, 0.8) 0%, rgba(20, 22, 26, 0.4) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.case-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.case-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.case-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.case-text h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.case-highlight {
    color: var(--neon-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.case-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.case-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(20, 22, 26, 0.6);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
}

.case-stat-item {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.case-stat-item h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 4px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.case-stat-item:last-child h3 {
    color: #00ff66; /* Verde sucesso para faturamento */
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.case-stat-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Box de Preço de Alta Conversão */
.price-box {
    margin: 32px auto;
    background: rgba(20, 22, 26, 0.6);
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-anchor {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-value {
    font-size: 3.5rem;
    color: var(--neon-cyan);
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.price-pix {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 8px;
}

.price-pix strong {
    color: #00ff66; /* Verde PIX destaque */
}

.cta-checkout-btn {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

/* Footer */

footer {
    border-top: 1px solid var(--surface-border);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link.instagram {
    color: #E1306C;
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-3px);
}

.social-link.whatsapp {
    color: #25D366;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.footer-note {
    opacity: 0.6;
}



/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px; /* Margem segura para não sair da tela em nenhum device */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
    /* Garante que fique dentro do viewport em qualquer tela */
    max-width: calc(100vw - 48px);
    max-height: calc(100vw - 48px);
    box-sizing: border-box;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- High Conversion Funnel Styles --- */

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    margin-left: -12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* Corta a imagem no formato circular */
}

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

.avatar:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 200px;
    text-align: left;
    line-height: 1.4;
}

.social-proof strong {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* Authority Section */
.authority {
    padding: 100px 0;
}

.authority-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.authority-text {
    flex: 1;
}

.authority-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.authority-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.authority-text p strong {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.authority-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.visual-card {
    text-align: center;
    padding: 48px;
    width: 100%;
    max-width: 400px;
}

.visual-card i {
    font-size: 4rem;
    color: var(--neon-purple);
    margin-bottom: 32px;
    display: inline-block;
    filter: drop-shadow(0 0 20px var(--glow-purple));
}

.stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--surface-border);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-primary);
    text-shadow: 0 0 15px var(--glow-cyan);
}

.stat-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 32px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-question i {
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 32px 32px 32px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Urgency Badge */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff5252;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 32px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 60, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 60, 60, 0); }
}

/* Animations (will be triggered by JS) */
.hidden-onload {
    opacity: 0;
    transform: translateY(16px); /* Deslocamento menor = animacão mais rápida e clean */
}

.fade-in {
    /* 0.4s (era 0.8s) — aparecem rapidamente sem parecer que está 'carregando' */
    animation: fadeIn 0.4s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(20px); /* Era 30px — deslocamento menor, transição mais sutil */
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   RESPONSIVIDADE MOBILE — reescrita limpa
   ================================================ */

/* Tablet e Mobile */
@media (max-width: 768px) {

    /* === OTIMIZAÇÕES DE PERFORMANCE MOBILE === */

    /* bg-glow: animação pausada + opacity zero no mobile
       filter:blur(140px) animado é pesadíssimo em GPU mobile */
    .bg-glow {
        opacity: 0 !important;
        animation: none !important;
        display: none;
    }

    /* backdrop-filter: 24px causa stuttering em TODA rolagem no mobile
       Reduzido para 6px — visualmente idêntico, CPU cai ~70% */
    .glass-card,
    .faq-item,
    .case-box {
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    /* Hero aparece instantaneamente — sem esperar o JS de animação */
    .hero-content.hidden-onload,
    .social-proof.hidden-onload {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Container com padding garantido */
    .container {
        padding: 0 20px;
    }


    /* Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
    }

    /* Authority — coluna no mobile */
    .authority {
        padding: 60px 0;
    }

    .authority-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .authority-text,
    .authority-visual {
        width: 100%;
        flex: none;
    }

    .authority-text h2 {
        font-size: 2rem;
    }

    .authority-visual {
        justify-content: center;
    }

    .visual-card {
        padding: 32px 24px;
        max-width: 100%;
    }

    /* Seções gerais */
    .features, .faq, .final-cta {
        padding: 60px 0;
    }

    .section-header h2,
    .cta-box h2 {
        font-size: 2rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1.05rem;
        padding: 20px 24px;
    }

    .faq-answer-inner {
        padding: 0 24px 24px;
        font-size: 1rem;
    }

    /* CTA box */
    .cta-box {
        padding: 48px 24px;
    }

    /* Navbar */
    .navbar {
        height: 56px;
        padding: 0 16px;
    }

    .navbar::after {
        width: 200px;
    }

    .ticker-track {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* Social proof empilhado */
    .social-proof {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-proof p {
        text-align: center;
        max-width: 100%;
    }

    /* Cards em coluna única */
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 24px;
    }

    .glass-card h3 {
        font-size: 1.25rem;
    }

    /* Case de Sucesso no Mobile */
    .case-box {
        padding: 32px 20px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .case-text h2 {
        font-size: 1.8rem;
    }

    .case-stats-panel {
        padding: 20px;
    }

    /* Botões */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    /* WhatsApp flutuante */
    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 32px;
        bottom: 24px;
        right: 20px;
    }

    /* Footer */
    .footer-socials {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {

    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 32px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .authority-text h2,
    .section-header h2,
    .cta-box h2 {
        font-size: 1.7rem;
    }

    .authority-text p {
        font-size: 0.95rem;
    }

    .navbar {
        height: 56px;
        padding: 0 12px;
    }

    /* Botão da navbar em mobile: fonte e padding menores para não vazar */
    .btn-nav {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
        min-height: 40px !important;
    }

    .navbar::after {
        width: 150px;
    }

    .tech-ticker {
        height: 56px;
    }

    .ticker-track {
        font-size: 0.8rem;
        gap: 8px;
    }

    .ticker-track span,
    .ticker-track .dot {
        margin: 0 8px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 16px 16px;
    }

    .faq-answer-inner {
        font-size: 0.9rem;
        padding: 0 16px 16px;
    }

    .cta-box {
        padding: 32px 16px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .glass-card {
        padding: 20px 16px;
    }

    .btn,
    .btn-large,
    .btn-outline,
    .btn-nav {
        min-height: 48px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 0.9rem;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 20px;
        right: 16px;
    }

    /* Case e Preço Mobile Pequeno */
    .case-text h2 {
        font-size: 1.5rem;
    }

    .case-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 16px;
    }

    .case-stat-item h3 {
        font-size: 1.6rem;
    }

    .price-box {
        padding: 16px 20px;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .price-pix {
        font-size: 0.95rem;
    }
}

/* Telas muito pequenas (iPhone SE, etc) */
@media (max-width: 360px) {

    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .authority-text h2,
    .section-header h2,
    .cta-box h2 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 16px 12px;
    }

    .glass-card h3 {
        font-size: 1.1rem;
    }

    .navbar {
        height: 52px;
        padding: 0 10px;
    }

    .floating-whatsapp {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 16px;
        right: 12px;
    }
}

