:root {
    --bg-color: #000B1E;
    --surface-color: #001229;
    --primary: #39FF14;
    --gold: #D4AF37;
    --text-main: #FFFFFF;
    --text-dim: #A0A0A0;
    --font-heading: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s ease;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

#urgency-bar {
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 1000;
}

#timer {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.hacker-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #001C3D 0%, #000B1E 100%);
    opacity: 0.8;
}

.hacker-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, transparent 24%, rgba(57, 255, 20, 0.05) 25%, rgba(57, 255, 20, 0.05) 26%, transparent 27%, transparent 74%, rgba(57, 255, 20, 0.05) 75%, rgba(57, 255, 20, 0.05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(57, 255, 20, 0.05) 25%, rgba(57, 255, 20, 0.05) 26%, transparent 27%, transparent 74%, rgba(57, 255, 20, 0.05) 75%, rgba(57, 255, 20, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px var(--accent-glow);
    font-weight: 800;
}

/* Header */
header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Base Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.status-indicator {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Section */
#hero {
    padding: 80px 0;
    text-align: center;
}

.badge {
    background: rgba(57, 255, 20, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: var(--font-mono);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

h1 .highlight {
    background: linear-gradient(90deg, var(--primary), #00F0FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 50px;
}

.vsl-placeholder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: var(--surface-color);
    margin: 0 auto 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.vsl-placeholder:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.vsl-placeholder .play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--gold-glow);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.play-button svg {
    width: 30px;
    fill: var(--bg-color);
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary);
    color: var(--bg-color);
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px var(--accent-glow);
}

.sub-cta {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Pain Section */
#pain {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Solution Section */
#solution {
    padding: 80px 0;
}

.glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.glass-box .tag {
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.glass-box h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.method-list {
    list-style: none;
    margin-top: 40px;
}

.method-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Modules Section */
#modules {
    padding: 100px 0;
}

#modules h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.module-item {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.module-item.bonus {
    border-left-color: var(--primary);
    background: rgba(57, 255, 20, 0.05);
}

.module-item .num {
    display: block;
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.module-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.module-item p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Testimonials Section */
#proof {
    padding: 100px 0;
}

#proof h2 {
    text-align: center;
    margin-bottom: 60px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border-top: 2px solid var(--primary);
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.user-info strong {
    color: var(--primary);
    font-family: var(--font-mono);
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.proof-card p {
    font-style: italic;
    font-size: 0.95rem;
}

/* Updated VSL Placeholder */
.vsl-placeholder {
    background: linear-gradient(rgba(0, 28, 61, 0.8), rgba(0, 28, 61, 0.8)), url('https://images.unsplash.com/photo-1436491865332-7a61a109c05d?auto=format&fit=crop&q=80&w=1000') center/cover;
    position: relative;
    overflow: hidden;
}

.vsl-placeholder::before {
    content: "SCANNING FOR ERROR FARES...";
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Guarantee Section */
#guarantee {
    padding: 100px 0;
}

.guarantee-box {
    background: rgba(57, 255, 20, 0.05);
    border: 2px dashed var(--primary);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 100px;
    color: var(--primary);
}

.guarantee-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Offer Section */
#checkout {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(57, 255, 20, 0.05) 0%, transparent 70%);
}

.offer-card {
    background: var(--surface-color);
    border: 1px solid var(--primary);
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.2);
}

.offer-tag {
    background: var(--primary);
    color: var(--bg-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.price-box {
    margin: 40px 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.2rem;
}

.main-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.main-price .currency {
    font-size: 2rem;
}

.main-price .value {
    font-size: 5rem;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 40px auto;
}

.offer-benefits li {
    padding: 10px 0;
    font-size: 1.1rem;
}

/* FAQ Section */
#faq {
    padding: 100px 0;
}

#faq h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-dim);
}

.footer-logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.secure-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
}

/* Premium Hero with Video Background */
#hero {
    position: relative;
    padding: 150px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 11, 30, 0.4) 0%, var(--bg-color) 100%);
    z-index: -1;
}

#hero h1 {
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

/* Quiz Section */
#quiz {
    padding: 100px 0;
    background: rgba(212, 175, 55, 0.02);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--border-glass);
}

.quiz-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: rgba(57, 255, 20, 0.05);
}

/* Calculator Section */
#calculator {
    padding: 100px 0;
}

.calc-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--glass);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--border-glass);
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-input-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-mono);
}

.calc-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.savings-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* Exit Pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    /* Conditional */
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: var(--bg-color);
    border: 2px solid var(--gold);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px var(--gold-glow);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Module Cards Refinement */
.module-item {
    border: 1px solid var(--border-glass);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.module-item .num {
    color: var(--gold);
    opacity: 1;
}

/* Premium Badges/Icons */
.premium-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Social Proof Photos */
.proof-user-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .module-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Legal & Warnings */
.warning-box {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid #ff4444;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
    border-left-width: 8px;
}

.warning-box h5 {
    color: #ff4444;
    font-family: var(--font-mono);
    margin-bottom: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.legal-item h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-item p {
    line-height: 1.5;
}

@media (max-width: 600px) {
    .module-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 18px 25px;
        width: 100%;
        max-width: 320px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .main-price .value {
        font-size: 3.5rem;
    }

    /* Sticky Mobile CTA (Thumb Zone) */
    .mobile-sticky-cta {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 1500;
        display: block !important;
        animation: slideUp 0.5s ease;
    }

    .mobile-sticky-cta .cta-button {
        box-shadow: 0 10px 30px rgba(57, 255, 20, 0.4);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* O Mapa do Tesouro - Mobile Optimized Preview */
.map-preview-mobile {
    display: none;
}

@media (max-width: 768px) {
    .map-preview-mobile {
        display: block;
        background: var(--surface-color);
        border: 1px solid var(--border-glass);
        border-radius: 24px;
        padding: 20px;
        margin-top: 20px;
    }

    .map-step {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .map-step:last-child {
        border-bottom: none;
    }

    .map-icon-vertical {
        font-size: 2rem;
        background: rgba(212, 175, 55, 0.1);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--gold);
    }
}

/* FOMO Toast */
.fomo-toast {
    position: fixed;
    bottom: -150px;
    left: 20px;
    background: rgba(0, 28, 61, 0.9);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.fomo-toast.active {
    bottom: 20px;
}

.fomo-icon {
    font-size: 1.5rem;
}

.fomo-content {
    display: flex;
    flex-direction: column;
}

.fomo-content strong {
    color: var(--gold);
    font-size: 0.9rem;
}

.fomo-content span {
    color: var(--text-dim);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .fomo-toast {
        left: 10px;
        right: 10px;
        bottom: -150px;
    }

    .fomo-toast.active {
        bottom: 10px;
    }
}