/* --- Design System & Variables --- */
:root {
    /* Cores */
    --brand-fluor: #39ff14;
    --brand-fluor-dim: rgba(57, 255, 20, 0.1);
    --bg-deep: #050505;
    --bg-surface: #0f0f0f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    
    /* Fontes */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Efeitos */
    --glow: 0 0 40px rgba(57, 255, 20, 0.15);
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.03em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- Utilities --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--brand-fluor); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(90deg, #fff, var(--brand-fluor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-darker { background-color: #020202; }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    border-radius: 8px; font-weight: 600; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 0.05em; cursor: pointer;
    transition: 0.3s;
}
.btn-primary { 
    background: var(--brand-fluor); 
    color: #000; 
    border: none; 
    position: relative; 
    overflow: hidden; 
    z-index: 20; /* Garante prioridade de clique */
}
.glow-effect:hover { box-shadow: 0 0 30px var(--brand-fluor); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-large { font-size: 1.1rem; padding: 20px 32px; font-weight: 800; }

/* --- Hero Section (CORRIGIDA) --- */
.hero { 
    padding-top: 60px; 
    padding-bottom: 80px; 
    position: relative; 
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: top center;
    /* Ajuste Flex para controle de camadas */
    display: flex;
    flex-direction: column;
}

.hero-bg-glow {
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; background: radial-gradient(circle, rgba(57,255,20,0.15) 0%, transparent 70%);
    z-index: 1; filter: blur(80px);
}

.hero-grid { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 4rem; 
    align-items: center; 
    position: relative; 
    z-index: 5; 
}

.hero-content {
    position: relative;
    z-index: 10; /* Texto acima do background */
}

.badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; font-size: 0.8rem; margin-bottom: 24px; color: var(--brand-fluor);
}
.pulse-dot { width: 8px; height: 8px; background: var(--brand-fluor); border-radius: 50%; box-shadow: 0 0 10px var(--brand-fluor); }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; }
.hero-sub { color: var(--text-secondary); font-size: 0.9rem; max-width: 500px; margin-bottom: 32px; }

.cta-group { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    position: relative;
    z-index: 25; /* Botão acima de tudo */
}
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; color: var(--text-secondary); }

/* --- Marquee --- */
.marquee-container {
    background: var(--brand-fluor); color: #000; padding: 14px 0; overflow: hidden;
    white-space: nowrap; font-weight: 800; font-family: var(--font-display);
    text-transform: uppercase; font-size: 0.95rem; position: relative; z-index: 10;
    border-top: 1px solid #000; border-bottom: 1px solid #000;
}
.marquee-content { display: inline-block; animation: scroll 40s linear infinite; transform: translate3d(0, 0, 0); will-change: transform; }
.marquee-content span { margin: 0 5px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Comparison Grid --- */
.reality-check { padding: 100px 0; }
.comparison-grid { display: grid; gap: 2rem; margin-top: 40px; }
.comparison-grid.three-cols { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-reality {
    padding: 30px; border-radius: 20px; background: var(--bg-surface);
    border: 1px solid var(--glass-border); transition: 0.3s;
}
.card-reality:hover { border-color: var(--brand-fluor); transform: translateY(-5px); }
.icon-box { 
    width: 50px; height: 50px; border-radius: 12px; background: #222; color: var(--brand-fluor);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}

/* --- Methodology --- */
.methodology-section { padding: 120px 0; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.method-content h2 { margin-bottom: 1.5rem; line-height: 1.2; }
.method-subtitle { margin-bottom: 2.5rem; font-size: 1.1rem; color: var(--text-secondary); }
.check-list li { margin-bottom: 1.2rem; display: flex; gap: 15px; color: #ddd; align-items: flex-start; }
.check-list i { color: var(--brand-fluor); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.tag-highlight { background: rgba(57, 255, 20, 0.1); padding: 2px 6px; color: var(--brand-fluor); border-radius: 4px; }

.glass-card-visual.dancing-bg {
    position: relative;
    background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(5,5,5,0.95)),
                url('https://images.unsplash.com/photo-1545959570-a94396019009?q=80&w=1000&auto=format&fit=crop');
    background-size: cover; background-position: center; border: 1px solid rgba(57, 255, 20, 0.2);
    padding: 60px 40px; border-radius: 24px; text-align: center; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-overlay-content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 15px; align-items: center; }
.icon-stop { font-size: 4rem; color: #ff3333; filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.4)); }
.dancing-bg h3 { font-size: 1.8rem; margin: 0; color: #fff; }
.dancing-bg span { font-size: 1.1rem; color: #ccc; }

/* --- Bento Grid --- */
.features-bento { padding: 100px 0; }
.bento-grid { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: auto auto; gap: 20px; margin-top: 40px; }
.bento-item { background: var(--bg-surface); border: 1px solid var(--glass-border); border-radius: 24px; padding: 30px; transition: 0.3s; }
.bento-item:hover { border-color: var(--brand-fluor); transform: translateY(-5px); }
.main-feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(57,255,20,0.05), transparent); }
.routine { grid-column: span 2; }
.highlight-box { background: var(--brand-fluor); color: #000; font-weight: 700; display: flex; align-items: center; justify-content: center; text-transform: uppercase; font-size: 1.2rem; }
.icon-lg { font-size: 2.5rem; color: var(--brand-fluor); margin-bottom: 16px; display: block; }

/* --- Outcomes & Profile --- */
.outcomes-section, .profile-section { padding: 80px 0; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.outcome-card { border: 1px solid var(--glass-border); padding: 30px; border-radius: 16px; background: linear-gradient(145deg, #111, #0a0a0a); }
.outcome-card h4 { color: var(--brand-fluor); margin-bottom: 10px; }
.outcome-card p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.profile-wrapper { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; padding: 60px; border-radius: 30px; border: 1px solid var(--glass-border); background: var(--glass-bg); }
.profile-item { display: flex; gap: 16px; margin-bottom: 24px; }
.profile-item i { font-size: 1.5rem; color: var(--brand-fluor); }
.bonus-card { background: #000; border: 1px solid var(--brand-fluor); padding: 30px; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; position: relative; box-shadow: 0 0 30px rgba(57,255,20,0.05); }
.bonus-tag { position: absolute; top: -12px; left: 30px; background: var(--brand-fluor); color: #000; font-weight: 700; font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; }
.bonus-card h3 { margin-bottom: 10px; }
.bonus-card p { font-size: 0.9rem; color: #ccc; margin-bottom: 20px; }
.btn-link { color: var(--brand-fluor); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* --- Filter Section --- */
.filter-section { padding: 80px 0; }
.filter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.filter-item { display: flex; flex-direction: column; align-items: center; gap: 15px; color: #ccc; font-size: 0.95rem; }
.filter-item i { color: #ff3333; font-size: 2rem; }

/* --- REVIEWS CAROUSEL --- */
.reviews-section { padding: 100px 0; background-color: var(--bg-deep); position: relative; border-top: 1px solid rgba(255,255,255,0.02); }
.reviews-header { margin-bottom: 60px; }

.carousel-viewport {
    width: 100%;
    margin: 0 auto; 
    overflow: hidden; 
    position: relative;
    padding: 20px 0 40px 0;
}

.carousel-viewport { max-width: 320px; } /* Mobile Default */

.carousel-track {
    display: flex; gap: 24px; width: max-content;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    justify-content: flex-start;
}

.google-card {
    width: 320px; 
    flex-shrink: 0; 
    background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 20px; padding: 24px; 
    display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.google-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(57, 255, 20, 0.4); 
    background: rgba(25, 25, 25, 0.9);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.card-header-center { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.meta-center { display: flex; flex-direction: column; }
.meta-center strong { font-size: 1rem; color: var(--text-primary); line-height: 1.2; }
.verified { font-size: 0.75rem; color: var(--brand-fluor); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.center-stars { color: #FFD700; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 2px; }
.review-text { font-size: 0.95rem; color: #ddd; line-height: 1.6; margin: 0; font-weight: 300; }

.pagination-dots { display: flex; justify-content: center; gap: 10px; margin-top: 10px; }
.dot { width: 8px; height: 8px; background-color: rgba(255,255,255,0.2); border-radius: 20px; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.dot:hover { background-color: rgba(255,255,255,0.5); }
.dot.active { background-color: var(--brand-fluor); width: 32px; box-shadow: 0 0 10px rgba(57, 255, 20, 0.3); }

/* --- Pricing --- */
.pricing-section { padding: 100px 0; }
.pricing-card {
    max-width: 550px; margin: 0 auto; padding: 0;
    background: #0d0d0d; border: 1px solid var(--glass-border); 
    border-radius: 30px; overflow: hidden;
    position: relative; box-shadow: var(--glow);
}

.offer-stack { padding: 40px 40px 20px 40px; display: flex; flex-direction: column; gap: 15px; }
.stack-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.stack-item:last-child { border-bottom: none; }
.stack-desc { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #ccc; }
.stack-desc i { color: var(--brand-fluor); font-size: 1.2rem; }
.stack-value { font-family: var(--font-display); font-weight: 600; color: #777; font-size: 0.9rem; }

@keyframes pulse-border {
    0% { border-color: rgba(57, 255, 20, 0.3); box-shadow: 0 0 0 rgba(57, 255, 20, 0); }
    50% { border-color: rgba(57, 255, 20, 0.8); box-shadow: 0 0 15px rgba(57, 255, 20, 0.1); }
    100% { border-color: rgba(57, 255, 20, 0.3); box-shadow: 0 0 0 rgba(57, 255, 20, 0); }
}

.bonus-highlight {
    background: rgba(57, 255, 20, 0.03); 
    border: 1px solid var(--brand-fluor);
    border-radius: 8px; padding: 12px 15px; margin: 5px 0;
    animation: pulse-border 2s infinite;
}
.bonus-highlight .stack-desc { color: #fff; }
.bonus-highlight .stack-desc strong { color: var(--brand-fluor); }
.highlight-free { color: var(--brand-fluor); display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; font-weight: 700; }
.crossed { text-decoration: line-through; color: #555; font-size: 0.75rem; font-weight: 400; }

.pricing-divider { text-align: center; padding: 0 40px; margin-bottom: 20px; }
.total-value-label { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }
.striked-total { text-decoration: line-through; color: #555; font-weight: 600; }

.pricing-main-offer {
    background: linear-gradient(180deg, rgba(20,20,20,0.5), rgba(0,0,0,0.8));
    padding: 30px 40px 40px 40px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.tag-offer { 
    background: #fff; color: #000; font-weight: 800; font-size: 0.75rem; 
    padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 15px; 
}
.price-display { margin-bottom: 25px; }
.price-row { display: flex; justify-content: center; align-items: flex-start; line-height: 1; color: var(--text-primary); }
.amount { font-size: 6rem; font-weight: 800; letter-spacing: -2px; font-family: var(--font-display); text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.currency { font-size: 2rem; margin-top: 15px; font-weight: 500; }
.cents { font-size: 2rem; margin-top: 15px; font-weight: 500; }
.payment-installments { color: var(--brand-fluor); font-size: 0.9rem; margin-top: 5px; font-weight: 500; }

.guarantee-row { display: flex; justify-content: center; gap: 20px; margin-top: 20px; color: #666; font-size: 0.8rem; }
.g-item { display: flex; align-items: center; gap: 5px; }

/* --- Footer --- */
.main-footer { padding: 80px 0 40px; border-top: 1px solid #222; }
.footer-cta { margin-bottom: 60px; }
.footer-cta h3 { font-size: 2rem; margin-bottom: 1rem; }
.iceberg-list { display: flex; flex-direction: column; gap: 10px; margin-top: 30px; font-size: 0.9rem; color: #777; }
.iceberg-list .highlight { color: var(--brand-fluor); font-weight: 600; }
.footer-divider { border: 0; border-top: 1px solid #222; margin: 40px 0; }

.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.8rem; 
    color: #555; 
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-social:hover { color: var(--brand-fluor); }
.dev-link { font-size: 0.85rem; color: #888; text-decoration: none; transition: 0.3s; }
.dev-link:hover { filter: brightness(1.2); }
.legal-links a { margin-left: 20px; }

/* --- Animation --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Responsive Media Queries --- */

/* TABLET E UP */
@media (min-width: 768px) {
    .hero { 
        padding-top: 100px;
        padding-bottom: 120px;
        background-image: url('bg-desktop.jpg'); /* Desktop BG */
        min-height: 55vh; 
        background-size: cover; 
        background-position: center;
        /* Desktop mantém layout normal (grid/block) */
    }
    .hero h1 { font-size: 3.5rem; }
    .hero-grid, .split-layout, .profile-wrapper { 
        grid-template-columns: 1.2fr 0.8fr; gap: 4rem; text-align: left; 
    }
    .hero-content { align-items: flex-start; display: block; }
    .cta-group { justify-content: flex-start; flex-direction: row; }
    .badge { margin: 0 0 24px 0; }
    
    .carousel-viewport { max-width: 664px; }
    
    .bento-grid { grid-template-columns: 1.5fr 1fr; }
    .main-feature { grid-row: span 2; }
    .routine { grid-column: span 2; }
    .outcomes-grid { grid-template-columns: 1fr 1fr; }
    .filter-grid { grid-template-columns: repeat(3, 1fr); }
    .profile-wrapper { padding: 60px; }
    .offer-stack, .pricing-main-offer { padding: 40px; }
    .footer-bottom { flex-direction: row; text-align: left; }
}

/* DESKTOP LARGE */
@media (min-width: 1100px) {
    .carousel-viewport { max-width: 1008px; }
}

/* MOBILE - CORREÇÕES INSTAGRAM */
@media (max-width: 767px) {
    .hero { 
        padding-top: 40px; 
        padding-bottom: 60px;
        background-image: url('bg-mobile.jpg');
        background-position: top center;
        background-repeat: no-repeat;
        
        /* CORREÇÃO PRINCIPAL: Substituir aspect-ratio por min-height */
        /* Isso impede o navegador do Insta de colapsar a altura */
        background-size: 100% auto;
        min-height: 165vw; 
        
        /* Flex column para empilhar: Texto -> Botão -> Mockup */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .hero h1 { font-size: 2.2rem; }
    
    .hero-grid { 
        display: flex; 
        flex-direction: column; 
        gap: 3rem; 
        text-align: center;
        position: relative;
        z-index: 5;
    }
    
    .hero-content { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        /* Z-index 10 garante que fique ACIMA do Mockup se houver overlap */
        position: relative;
        z-index: 10; 
    }
    
    .cta-group { 
        flex-direction: column; 
        gap: 15px; 
        /* Z-index 25 garante que o botão receba o clique */
        position: relative;
        z-index: 25; 
        margin-top: 20px;
    }

    /* Outros Ajustes Mobile */
    .split-layout, .profile-wrapper { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .align-left-on-mobile { text-align: left !important; }
    .align-left-on-mobile .check-list li { justify-content: flex-start; }
    
    .outcomes-grid, .filter-grid { grid-template-columns: 1fr; }
    .profile-wrapper { padding: 30px; }
    .offer-stack, .pricing-main-offer { padding: 30px 20px; }
    .amount { font-size: 4.5rem; }
    .stack-desc span { font-size: 0.85rem; text-align: left; }
    
    /* Footer Mobile */
    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }
    .footer-social { justify-content: center; }
    .legal-links a { margin: 0 10px; }
    
    /* BENTO GRID MOBILE - UPGRADE */
    .features-bento .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .features-bento .bento-item {
        padding: 20px;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(20,20,20,0.9), rgba(5,5,5,1));
        border: 1px solid rgba(255,255,255,0.08);
        min-height: auto;
    }

    .features-bento .bento-content {
        display: grid;
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 4px;
        text-align: left;
    }

    .features-bento .icon-lg {
        grid-column: 1;
        grid-row: 1 / 3;
        font-size: 1.8rem;
        background: rgba(57, 255, 20, 0.05);
        border: 1px solid rgba(57, 255, 20, 0.1);
        border-radius: 12px;
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .features-bento h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.1rem;
        margin: 0;
        align-self: center;
    }

    .features-bento p {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.85rem;
        color: #aaa;
    }

    .features-bento .highlight-box {
        background: var(--brand-fluor);
        padding: 14px;
        border-radius: 50px;
        margin-top: 8px;
        animation: pulse-mobile 3s infinite;
    }
    
    .features-bento .highlight-box span {
        color: #000;
        font-size: 0.9rem;
    }
    
    .features-bento .highlight-box span::before {
        content: '\2713';
        font-weight: bold;
        margin-right: 8px;
    }
    
    @keyframes pulse-mobile {
        0% { transform: scale(1); box-shadow: 0 0 0 rgba(57, 255, 20, 0); }
        50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(57, 255, 20, 0.4); }
        100% { transform: scale(1); box-shadow: 0 0 0 rgba(57, 255, 20, 0); }
    }
}