/* ========================================
   PROTOCOLO NEURAL IA - LANDING PAGE
   CSS Futurista com Glassmorphism & Neon
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Neon */
    --neon-cyan: #00f3ff;
    --neon-purple: #b537ff;
    --neon-pink: #ff006e;
    --neon-blue: #0066ff;
    
    /* Cores de Fundo */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.05);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Fontes */
    --font-main: 'Rajdhani', sans-serif;
    --font-title: 'Orbitron', sans-serif;
    
    /* Sombras Neon */
    --glow-cyan: 0 0 20px rgba(0, 243, 255, 0.5);
    --glow-purple: 0 0 20px rgba(181, 55, 255, 0.5);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
#progressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    z-index: 10000;
    transition: width 0.2s ease;
    box-shadow: var(--glow-cyan);
}

/* ========================================
   CONTADOR DE VENDAS EM TEMPO REAL
   ======================================== */
.sales-counter {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    animation: slideInRight 1s ease, pulse 2s infinite;
    box-shadow: var(--glow-purple);
}

.sales-counter-icon {
    font-size: 1.5rem;
    animation: fireAnimation 1.5s infinite;
}

.sales-counter-text {
    font-size: 0.9rem;
    color: #fff;
}

.sales-number {
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 1.2rem;
}

@keyframes fireAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   TRUST BADGES TOP
   ======================================== */
.trust-badges-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: var(--glow-cyan);
    animation: badgePulse 3s infinite;
}

.badge svg {
    stroke: var(--neon-cyan);
    stroke-width: 2;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: var(--glow-cyan); }
    50% { box-shadow: 0 0 30px rgba(0, 243, 255, 0.8); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

/* Cyber Grid Background */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
    animation: particleFloat 10s infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 4px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        filter: brightness(1);
    }
    50% {
        text-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
        filter: brightness(1.2);
    }
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
}

.glitch::before {
    animation: glitch1 2.5s infinite;
    color: var(--neon-cyan);
    z-index: -1;
}

.glitch::after {
    animation: glitch2 2s infinite;
    color: var(--neon-pink);
    z-index: -2;
}

@keyframes glitch1 {
    0%, 100% {
        transform: translate(0);
        opacity: 0.8;
    }
    33% {
        transform: translate(-2px, 2px);
        opacity: 1;
    }
    66% {
        transform: translate(2px, -2px);
        opacity: 0.8;
    }
}

@keyframes glitch2 {
    0%, 100% {
        transform: translate(0);
        opacity: 0.8;
    }
    33% {
        transform: translate(2px, -2px);
        opacity: 1;
    }
    66% {
        transform: translate(-2px, 2px);
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* ========================================
   VSL CONTAINER
   ======================================== */
.vsl-container {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.vsl-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vsl-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    box-shadow: var(--glow-purple);
}

.vsl-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.vsl-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
}

.vsl-hologram-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink), var(--neon-cyan));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: borderFlow 3s ease infinite;
    opacity: 0.5;
}

@keyframes borderFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.vsl-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

.vsl-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff006e, #ff3d00);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.8);
}

.cta-button.mega {
    font-size: 1.3rem;
    padding: 25px 50px;
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-arrow {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 60px rgba(0, 243, 255, 0.9);
    }
}

/* ========================================
   MINI BENEFITS (Hologramas)
   ======================================== */
.mini-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.mini-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: var(--glow-cyan);
}

.mini-icon {
    font-size: 1.5rem;
}

.mini-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.hologram-float {
    animation: hologramFloat 3s ease-in-out infinite;
}

@keyframes hologramFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   E-BOOK MOCKUP 3D
   ======================================== */
.ebook-mockup {
    max-width: 300px;
    margin: 4rem auto 0;
    perspective: 1000px;
    position: relative;
}

.ebook-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3), transparent 70%);
    animation: glowPulse 3s infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ebook-cover {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow-cyan);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
}

.ebook-cover:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.05);
}

.ebook-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.ebook-circuit {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background-image: repeating-linear-gradient(
        90deg,
        var(--neon-cyan) 0px,
        var(--neon-cyan) 1px,
        transparent 1px,
        transparent 4px
    ),
    repeating-linear-gradient(
        0deg,
        var(--neon-cyan) 0px,
        var(--neon-cyan) 1px,
        transparent 1px,
        transparent 4px
    );
    opacity: 0.3;
}

/* ========================================
   GLASS EFFECT (Glassmorphism)
   ======================================== */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--glow-cyan);
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-icon {
    font-size: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 6rem 0;
    position: relative;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   MODULES SECTION
   ======================================== */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.module-card {
    position: relative;
    overflow: hidden;
}

.module-number {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-cyan);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    right: 20px;
}

.module-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.module-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.module-circuit {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.module-card:hover .module-circuit {
    opacity: 1;
    animation: circuitFlow 2s infinite;
}

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

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-cyan);
    user-select: none;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   AUDIENCE SECTION
   ======================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    text-align: center;
}

.audience-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: avatarRotate 10s linear infinite;
}

@keyframes avatarRotate {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(360deg);
    }
}

.audience-card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.audience-card p {
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffd700;
    font-size: 1.5rem;
    animation: starTwinkle 2s infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.glitch-photo {
    position: relative;
    animation: photoGlitch 5s infinite;
}

@keyframes photoGlitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   WHY DIFFERENT SECTION
   ======================================== */
.differences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.difference-card {
    text-align: center;
}

.difference-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.difference-card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
}

.difference-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-main {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.ebook-package {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    box-shadow: var(--glow-cyan);
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.ebook-package h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.ebook-package p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.package-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.bonus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--neon-cyan);
    font-weight: 900;
}

.bonuses-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonuses-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.bonus-item {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.bonus-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.bonus-info h4 {
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.bonus-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-purple);
}

.offer-summary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--glow-cyan);
}

.total-value {
    margin-bottom: 1.5rem;
}

.value-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.discount-arrow {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin: 1rem 0;
}

.final-price {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
}

.currency {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.installments {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.savings {
    background: linear-gradient(135deg, #ff006e, #ff3d00);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    box-shadow: var(--glow-pink);
}

/* Countdown Timer */
.countdown-container {
    margin: 2rem 0;
}

.countdown-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    min-width: 80px;
}

.time-value {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
}

.time-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.time-separator {
    font-size: 2rem;
    color: var(--neon-cyan);
    align-self: center;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.trust-badge svg {
    stroke: var(--neon-cyan);
    stroke-width: 2;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.guarantee-shield {
    position: relative;
    flex-shrink: 0;
}

.shield-icon {
    font-size: 8rem;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.5));
    animation: shieldFloat 3s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3), transparent);
    animation: glowPulse 2s infinite;
    pointer-events: none;
}

.guarantee-text h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin-bottom: 1rem;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.guarantee-highlight {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: var(--glow-cyan);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(181, 55, 255, 0.1));
    padding: 6rem 0;
}

.final-cta-content {
    text-align: center;
}

.final-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.final-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff006e, #ff3d00);
    padding: 1.5rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: var(--glow-pink);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-text {
    font-size: 1.2rem;
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.final-benefit {
    font-size: 1.1rem;
    color: var(--neon-cyan);
}

.social-proof-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.counter-icon {
    font-size: 1.5rem;
}

#peopleOnline {
    font-weight: 700;
    color: var(--neon-cyan);
    font-size: 1.3rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-purple);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: var(--glow-cyan);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
}

.back-to-top svg {
    stroke: #fff;
    stroke-width: 3;
}

/* ========================================
   CHATBOT FLUTUANTE
   ======================================== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: chatbotShine 3s infinite;
}

@keyframes chatbotShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
}

.chat-icon,
.close-icon {
    stroke: #fff;
    stroke-width: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.close-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.chatbot-container.open .chat-icon {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.chatbot-container.open .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    max-height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5), var(--glow-cyan);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
}

.chatbot-container.open .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-avatar {
    font-size: 2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.chatbot-info h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 0.25rem;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 300px;
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    animation: messageSlideIn 0.4s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 80%;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
}

.chatbot-quick-replies {
    padding: 0 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-reply {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.chatbot-input {
    display: flex;
    gap: 10px;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#chatbotInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 15px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

#chatbotInput:focus {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.send-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-button:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-cyan);
}

.send-button svg {
    stroke: #fff;
    stroke-width: 2;
}

/* ========================================
   EXIT INTENT POPUP
   ======================================== */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--neon-cyan);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 0 60px rgba(0, 243, 255, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.popup-content {
    text-align: center;
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconShake 0.5s infinite;
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.popup-content h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.popup-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.popup-offer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-special {
    margin-bottom: 1.5rem;
}

.special-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff006e, #ff3d00);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: var(--glow-pink);
}

.popup-special h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--neon-purple);
    margin-bottom: 0.5rem;
}

.popup-special p {
    color: rgba(255, 255, 255, 0.8);
}

.popup-price {
    margin-bottom: 1.5rem;
}

.popup-old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.popup-new-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
}

.popup-new-price .currency {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.popup-new-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.popup-installments {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.popup-countdown {
    margin-bottom: 1.5rem;
}

.popup-countdown-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.popup-timer {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff006e;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.popup-cta {
    width: 100%;
    background: linear-gradient(135deg, #ff006e, #ff3d00);
    color: #fff;
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--glow-pink);
}

.popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.9);
}

.popup-guarantee {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .offer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bonus-divider {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .mini-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        left: 50%;
        transform: translateX(-50%) scale(0.8);
    }

    .chatbot-container.open .chatbot-window {
        transform: translateX(-50%) scale(1);
    }

    .exit-popup {
        width: 95%;
        padding: 2rem 1.5rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .sales-counter {
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .trust-badges-top {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .benefits-grid,
    .modules-grid,
    .audience-grid,
    .testimonials-grid,
    .differences-grid {
        grid-template-columns: 1fr;
    }

    .cta-button.mega {
        font-size: 1.1rem;
        padding: 18px 30px;
    }

    .amount {
        font-size: 3.5rem;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}