/* =========================================
   1. VARIÁVEIS E RESET GERAL
   ========================================= */
:root {
    --neon-green: #00ff9d;
    --neon-blue: #00f3ff;
    --alert-red: #ff2a2a;
    --bg-dark: #050505;
    --bg-panel: #0f0f13;
    --text-main: #e0e0e0;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 18px;
    overflow-x: hidden;
    line-height: 1.5;
}

/* =========================================
   2. LOADER
   ========================================= */
#loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-content { text-align: center; width: 300px; }
.loader-text { font-family: var(--font-head); color: var(--neon-green); letter-spacing: 2px; display: block; margin-bottom: 10px; font-size: 14px;}
.progress-bar { width: 100%; height: 4px; background: #222; border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.fill { width: 0%; height: 100%; background: var(--neon-green); animation: load 2s forwards ease-in-out; }
.loader-log { font-family: monospace; font-size: 12px; color: #666; }

/* =========================================
   3. NAVBAR & LOGO
   ========================================= */
.navbar { 
    background: rgba(5, 5, 5, 0.95); 
    border-bottom: 1px solid #222; 
    padding: 15px 0; 
    position: sticky; top: 0; z-index: 101; 
    backdrop-filter: blur(10px); 
}

.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.img-logo-small {
    height: 35px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: #fff; display: flex; align-items: center; gap: 10px; }
.highlight { color: var(--neon-green); }

/* --- BLOCO DIREITO (PADRÃO DESKTOP) --- */
.nav-info-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* No desktop, alinha à esquerda */
    gap: 5px; /* Espaço pequeno no desktop */
}

.nav-status { 
    font-size: 0.75rem; 
    color: #888; 
    display: flex; 
    align-items: center; 
    font-weight: 700;
    line-height: 1.2;
}

.status-dot { 
    width: 8px; 
    height: 8px; 
    background: var(--neon-green); 
    border-radius: 50%; 
    animation: blink 2s infinite; 
    margin-right: 10px;
    flex-shrink: 0;
}

.nav-members-link {
    color: #00ff9d; 
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-members-link i {
    font-size: 0.7rem;
    width: 8px;
    margin-right: 10px; 
    text-align: center;
    flex-shrink: 0;
}

.nav-members-link:hover {
    color: #fff;
    text-shadow: 0 0 8px #00ff9d;
}

/* =========================================
   4. URGENT TICKER (COM MARQUEE MOBILE)
   ========================================= */
.urgent-ticker { 
    background: var(--alert-red); color: #fff; padding: 10px 0; 
    font-weight: 700; font-size: 14px; text-transform: uppercase; 
    letter-spacing: 1px; position: relative; z-index: 90; 
    box-shadow: 0 5px 20px rgba(255, 42, 42, 0.3); 
    overflow: hidden; 
}

.ticker-content { 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    align-items: center; 
    white-space: nowrap; 
    animation: pulse-red 2s infinite; 
}

.sep { opacity: 0.5; }
#timer { font-family: monospace; font-size: 16px; background: rgba(0,0,0,0.3); padding: 2px 6px; border-radius: 4px; }

/* Animação para telas pequenas (Mobile) */
@media (max-width: 768px) {
    .ticker-content {
        justify-content: flex-start;
        padding-left: 100%;
        animation: ticker-move 15s linear infinite; 
    }
}

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-250%); } 
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero { 
    position: relative; padding: 80px 0; min-height: 90vh; 
    display: flex; align-items: center; overflow: hidden; 
    perspective: 1000px;
}
.grid-overlay {
    position: absolute; width: 200%; height: 200%; top: -50%; left: -50%;
    background-image: linear-gradient(rgba(0, 255, 157, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 157, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg);
    animation: grid-move 20s linear infinite;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.hero-flex { display: flex; align-items: center; justify-content: space-between; gap: 50px; }

.status-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 255, 157, 0.1); border: 1px solid var(--neon-green); color: var(--neon-green); padding: 5px 15px; border-radius: 20px; font-family: var(--font-head); font-size: 12px; margin-bottom: 20px; }
.dot { width: 8px; height: 8px; background: var(--neon-green); border-radius: 50%; box-shadow: 0 0 10px var(--neon-green); }

h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 20px; text-shadow: 0 0 20px rgba(0, 255, 157, 0.3); }
.glitch { position: relative; color: var(--neon-green); }

.sub-headline { color: #aaa; font-size: 1.2rem; margin-bottom: 40px; max-width: 500px; line-height: 1.6; }

.btn-nuclear {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #00b7ff 0%, #0051ff 100%);
    color: #fff; padding: 20px 40px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
    text-decoration: none; border-radius: 5px; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 81, 255, 0.4);
    transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.2);
}
.btn-nuclear:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0, 81, 255, 0.8); }
.security-text { display: block; margin-top: 15px; font-size: 0.9rem; color: #666; }

/* =========================================
   6. TERMINAL VISUAL
   ========================================= */
.hero-visual { flex: 1; perspective: 1000px; }
.terminal-window {
    background: rgba(10, 10, 12, 0.95); border: 1px solid #333; border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 20px rgba(0, 255, 157, 0.1);
    font-family: 'Consolas', monospace; overflow: hidden; transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s;
    backdrop-filter: blur(5px);
}
.terminal-window:hover { transform: rotateY(0) rotateX(0); }

.terminal-header { background: #1a1a1a; padding: 10px 15px; display: flex; align-items: center; border-bottom: 1px solid #333; }
.buttons span { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 6px; }
.close { background: #ff5f56; } .minimize { background: #ffbd2e; } .maximize { background: #27c93f; }
.title { flex: 1; text-align: center; color: #888; font-size: 12px; }

.terminal-body { padding: 20px; height: 250px; color: #ccc; font-size: 14px; overflow: hidden; position: relative; }
.log-line { margin-bottom: 5px; opacity: 0; animation: fadeIn 0.3s forwards; }
.green { color: var(--neon-green); font-weight: bold; }
.yellow { color: #ffbd2e; }
.neon-blue { color: var(--neon-blue); }

.terminal-footer { padding: 15px; border-top: 1px solid #333; display: flex; justify-content: space-between; background: rgba(0,255,157,0.05); }
.metric { display: flex; flex-direction: column; }
.metric span { font-size: 10px; color: #666; letter-spacing: 1px; }

/* =========================================
   7. FEATURES SECTION
   ========================================= */
.specs { padding: 100px 0; background: #08080a; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-head); font-size: 2.5rem; color: #fff; margin-bottom: 15px; }
.line { width: 80px; height: 3px; background: var(--neon-green); margin: 0 auto; box-shadow: 0 0 10px var(--neon-green); }

.grid-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.spec-card { background: var(--bg-panel); padding: 40px; border: 1px solid #222; border-radius: 10px; transition: 0.3s; position: relative; overflow: hidden; }
.spec-card:hover { border-color: var(--neon-green); transform: translateY(-5px); }
.spec-card i { font-size: 40px; color: var(--neon-green); margin-bottom: 20px; }
.spec-card h3 { font-family: var(--font-head); margin-bottom: 15px; font-size: 1.2rem; color: #fff; }
.spec-card p { color: #888; font-size: 1rem; }

/* =========================================
   8. LIVE ACTION VIDEO (SMART AUTOPLAY)
   ========================================= */
.live-action { padding: 80px 0; background: #020202; text-align: center; position: relative; border-bottom: 1px solid #111; }
.sub-header-text { color: var(--neon-blue); letter-spacing: 2px; font-size: 1rem; margin-top: -10px; margin-bottom: 30px; font-weight: bold; font-family: var(--font-head); text-shadow: 0 0 10px rgba(0, 243, 255, 0.3); }

.video-wrapper-neon {
    max-width: 900px; margin: 0 auto;
    border: 1px solid #333; border-radius: 10px;
    padding: 10px; background: #000;
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.1);
    position: relative;
    transition: transform 0.3s;
}
.video-wrapper-neon:hover { transform: scale(1.01); box-shadow: 0 0 60px rgba(0, 255, 157, 0.2); }

.video-container { 
    position: relative; padding-bottom: 56.25%; height: 0; 
    overflow: hidden; border-radius: 5px; background: #111;
}
.video-container iframe, .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

.rec-overlay { 
    position: absolute; top: 25px; left: 30px; z-index: 20; 
    display: flex; gap: 15px; pointer-events: none; 
    background: rgba(0,0,0,0.5); padding: 5px 10px; border-radius: 4px;
}
.rec-blink { color: #ff0000; font-weight: 900; font-family: monospace; animation: blink 1s infinite; text-shadow: 0 0 10px red; display: flex; align-items: center; gap: 5px; }
.rec-time { color: #fff; font-family: monospace; font-weight: bold; }

.video-cta p { margin-top: 25px; color: #fff; font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 10px; }
.video-cta span { color: var(--neon-green); font-weight: bold; }
.cta-arrow { 
    display: inline-block; 
    color: var(--neon-green); 
    animation: pulse-green 2s infinite; 
    font-size: 1.5rem;
    border-radius: 50%;
}

.unmute-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7); border: 2px solid var(--neon-green); color: #fff;
    padding: 15px 30px; border-radius: 50px; font-family: var(--font-head); font-weight: bold;
    cursor: pointer; z-index: 30; display: none; align-items: center; gap: 10px;
    backdrop-filter: blur(5px); transition: 0.3s; animation: pulse-green 2s infinite;
}
.unmute-btn:hover { background: var(--neon-green); color: #000; }

/* =========================================
   9. OFFER HEADER (O QUE VOCÊ LEVA)
   ========================================= */
.offer-stack-section {
    padding: 60px 0 0 0; 
    background: #08080a;
}
.highlight-pulse {
    color: var(--neon-green);
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
    animation: text-glow 1.5s ease-in-out infinite alternate;
}
@keyframes text-glow {
    from { text-shadow: 0 0 10px rgba(0, 255, 157, 0.4); transform: scale(1); }
    to { text-shadow: 0 0 30px rgba(0, 255, 157, 1); transform: scale(1.1); }
}

/* =========================================
   10. BONUS SECTION
   ========================================= */
.bonus-section { padding: 40px 0 80px 0; border-top: none; }
.bonus-box {
    background: linear-gradient(to right, #111, #0a0a0a);
    border: 1px solid #333; border-radius: 15px; padding: 40px; position: relative;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.05);
}
.tag-free {
    position: absolute; top: 0; right: 0; background: var(--neon-green); color: #000;
    padding: 10px 30px; font-weight: bold; font-family: var(--font-head);
    border-bottom-left-radius: 15px; border-top-right-radius: 15px; z-index: 10;
}
.bonus-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.bonus-text h2 { color: #666; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.bonus-text h3 { font-family: var(--font-head); font-size: 2.2rem; color: #fff; margin-bottom: 20px; line-height: 1.1; }
.bonus-list li { margin-bottom: 10px; color: #aaa; list-style: none; display: flex; align-items: center; gap: 10px; }
.bonus-list i { color: var(--neon-green); }
.price-lock { margin-top: 30px; }
.old { display: block; text-decoration: line-through; color: #555; font-size: 1.2rem; }
.new { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--neon-green); font-weight: 700; text-shadow: 0 0 20px rgba(0,255,157,0.3); }

/* Monitor */
.video-monitor {
    background: #000; border: 2px solid #333; border-radius: 5px;
    padding: 10px 10px 30px 10px; position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}
.rec-dot { position: absolute; top: 15px; right: 15px; width: 10px; height: 10px; background: red; border-radius: 50%; z-index: 20; animation: blink 1s infinite; }
.rec-text { position: absolute; top: 12px; left: 15px; color: red; font-family: monospace; font-size: 10px; font-weight: bold; letter-spacing: 1px; z-index: 20; }
.video-placeholder {
    width: 100%; height: 250px; background: #0d0d0d; border: 1px solid #222;
    display: flex; align-items: center; justify-content: center; position: relative;
    overflow: hidden;
}
.video-placeholder iframe, .video-placeholder video { width: 100%; height: 100%; object-fit: cover; }

.banner-img { margin-top: 20px; border-radius: 5px; overflow: hidden; border: 1px solid #333; }
.banner-img img { width: 100%; display: block; transition: 0.3s; }
.banner-img:hover img { transform: scale(1.02); }

/* =========================================
   11. BUNDLE (OFERTA EXCLUSIVA)
   ========================================= */
.bundle-section {
    padding: 60px 0 80px 0;
    background: #08080a;
}
.bundle-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.bundle-card {
    background: #0f0f13;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 45%;
    position: relative;
    transition: 0.3s;
}
.bundle-card:hover { transform: translateY(-5px); border-color: var(--neon-green); }

.main-product { box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.gift-product { border-color: var(--neon-green); box-shadow: 0 0 30px rgba(0, 255, 157, 0.1); }

.card-icon { font-size: 3rem; color: #fff; margin-bottom: 15px; }
.bundle-card h3 { color: #fff; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 5px; }
.license-type { color: #666; font-size: 0.8rem; letter-spacing: 2px; font-weight: bold; margin-bottom: 20px; }

.mini-list { text-align: left; margin-bottom: 10px; }
.mini-list li { list-style: none; font-size: 0.9rem; color: #aaa; margin-bottom: 8px; }
.mini-list i { color: var(--neon-green); margin-right: 8px; }

.gift-ribbon {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--neon-green); color: #000;
    padding: 5px 20px; font-weight: bold; font-family: var(--font-head);
    border-radius: 20px; box-shadow: 0 0 15px var(--neon-green);
}

.price-compare { margin-top: 20px; }
.crossed { text-decoration: line-through; color: #555; display: block; font-size: 0.9rem; }
.free { color: var(--neon-green); font-size: 1.5rem; font-weight: bold; font-family: var(--font-head); }

.bundle-plus { font-size: 2rem; color: #fff; font-weight: bold; }
.bundle-cta-text { text-align: center; color: #fff; font-family: var(--font-head); letter-spacing: 1px; }
.bundle-cta-text i { 
    display: inline-block; 
    margin-top: 15px; 
    color: var(--neon-green); 
    animation: pulse-green 2s infinite; 
    border-radius: 50%;
    font-size: 1.5rem;
    width: 40px; height: 40px; line-height: 40px;
}

/* =========================================
   12. PRICING & CHECKOUT (COM NOVO ALERTA)
   ========================================= */
.pricing-section { padding: 80px 0 120px 0; border-top: 1px solid #111; }
.pricing-card {
    max-width: 500px; margin: 0 auto; background: #0e0e0e; padding: 50px;
    border-radius: 20px; text-align: center; border: 1px solid #222; position: relative;
    box-shadow: 0 0 100px rgba(0,0,0,0.8); overflow: hidden;
}
.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,81,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite; z-index: 0;
}

.pricing-header, .price-display, .features-list, .btn-checkout, .scarcity-alert { position: relative; z-index: 1; }
.pricing-header h3 { font-family: var(--font-head); font-size: 2rem; color: #fff; }
.edition { color: var(--neon-blue); letter-spacing: 4px; font-size: 0.8rem; margin-top: 5px; font-weight: bold; }

.price-display { margin: 40px 0; }
.currency { vertical-align: top; font-size: 1.5rem; color: #888; }
.amount { font-family: var(--font-head); font-size: 5rem; font-weight: 700; color: #fff; line-height: 1; }
.cents { font-size: 1.5rem; color: #888; font-weight: 700; }
.installments { color: var(--neon-green); margin-top: 10px; font-weight: 500; }

/* --- NOVO ALERTA PULSANTE --- */
.scarcity-alert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 42, 42, 0.15); 
    color: var(--alert-red);
    border: 1px solid var(--alert-red);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem; 
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    cursor: default;
    animation: alert-pulse 1.2s infinite ease-in-out;
    box-shadow: 0 0 0 rgba(255, 42, 42, 0);
}

.scarcity-alert i {
    font-size: 1.2rem;
    animation: icon-flash 0.5s infinite alternate;
}

/* Animações Exclusivas do Alerta */
@keyframes alert-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 42, 0.4); border-color: rgba(255, 42, 42, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 5px rgba(255, 42, 42, 0.6); border-color: #ff0000; background: rgba(255, 42, 42, 0.25); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 42, 42, 0); border-color: rgba(255, 42, 42, 0.5); }
}

@keyframes icon-flash {
    from { opacity: 1; text-shadow: 0 0 10px red; }
    to { opacity: 0.5; text-shadow: none; }
}

.features-list { text-align: left; margin-bottom: 40px; margin-left: 10%; }
.features-list li { margin-bottom: 15px; color: #ccc; list-style: none; }
.features-list i { color: var(--neon-blue); margin-right: 10px; }

.btn-checkout {
    display: block; width: 100%; padding: 25px;
    background: var(--neon-green); color: #000;
    font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
    text-decoration: none; border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.4);
    animation: pulse-green 2s infinite;
}
.btn-checkout small { display: block; font-size: 0.8rem; font-weight: 500; margin-top: 5px; opacity: 0.8; font-family: var(--font-body); }
.guarantee { margin-top: 20px; font-size: 0.9rem; color: #666; position: relative; z-index: 1; display: flex; justify-content: center; gap: 8px; align-items: center;}

/* =========================================
   13. FAQ SECTION
   ========================================= */
.faq-section { padding: 80px 0; background: #050505; }
.faq-grid { max-width: 800px; margin: 0 auto; }
details.faq-item { background: #0f0f13; border: 1px solid #333; margin-bottom: 15px; border-radius: 5px; overflow: hidden; transition: 0.3s; }
details.faq-item[open] { border-color: var(--neon-green); box-shadow: 0 0 15px rgba(0, 255, 157, 0.1); }
summary { padding: 20px; cursor: pointer; font-family: var(--font-head); color: #fff; list-style: none; position: relative; }
summary::after { content: '+'; position: absolute; right: 20px; color: var(--neon-green); font-weight: bold; }
details[open] summary::after { content: '-'; color: var(--alert-red); }
.faq-content { padding: 0 20px 20px 20px; color: #aaa; font-size: 0.95rem; border-top: 1px dashed #333; margin-top: 5px; padding-top: 15px; }

/* =========================================
   14. FOOTER & NOTIFICATIONS
   ========================================= */
footer { border-top: 1px solid #111; padding: 40px 0; text-align: center; color: #444; font-size: 0.9rem; }

#live-notification {
    position: fixed; bottom: 20px; left: 20px;
    background: rgba(10, 10, 12, 0.95);
    border-left: 4px solid var(--neon-green);
    border-top: 1px solid #333; border-right: 1px solid #333; border-bottom: 1px solid #333;
    padding: 15px; border-radius: 5px;
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 999;
    transition: transform 0.5s ease, opacity 0.5s ease;
    width: 300px;
}
.notification-hide { transform: translateX(-150%); opacity: 0; }
.notification-show { transform: translateX(0); opacity: 1; }
.notif-icon i { font-size: 24px; color: var(--neon-green); }
.notif-title { font-size: 10px; color: #888; letter-spacing: 1px; display: block; margin-bottom: 2px; }
#notif-msg { font-size: 13px; color: #fff; line-height: 1.3; }
#live-notification small { font-size: 10px; color: #666; display: block; margin-top: 5px; }

/* Botão Mobile Fixo */
.mobile-sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%; padding: 15px;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); border-top: 1px solid var(--neon-green);
    z-index: 1000; text-align: center;
}
.mobile-btn {
    display: block; width: 100%; background: var(--neon-green); color: #000;
    padding: 15px; font-weight: 900; font-family: var(--font-head); text-decoration: none; border-radius: 5px; text-transform: uppercase; animation: pulse-green 2s infinite;
}

/* =========================================
   15. ANIMATIONS & RESPONSIVE
   ========================================= */
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }
@keyframes pulse-red { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(0, 255, 157, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes grid-move { 0% { transform: rotateX(60deg) translateY(0); } 100% { transform: rotateX(60deg) translateY(50px); } }
@keyframes load { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ------------------------------------------------------------------
   AQUI COMEÇAM OS AJUSTES PRINCIPAIS PARA MOBILE (RESPONSIVIDADE)
   ------------------------------------------------------------------ */
@media (max-width: 900px) {
    /* 1. Alinhamento Geral da Navbar */
    .nav-flex {
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px;
    }

    /* 2. Logo com Espaço Generoso */
    .logo {
        margin-bottom: 40px; /* <--- O espaço que você pediu */
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255,255,255,0.05); /* Linha sutil opcional */
        padding-bottom: 20px;
    }

    /* 3. Bloco 'Sistema Online' + 'Área de Membros' */
    .nav-info-block {
        display: flex;
        flex-direction: column; /* Coloca um embaixo do outro */
        gap: 25px; /* <--- Espaço entre os links */
        align-items: center;
        width: 100%;
    }

    /* 4. Texto 'Sistema Online' */
    .nav-status {
        justify-content: center;
        font-size: 16px; /* Levemente maior no mobile */
    }

    /* 5. Botão 'Área de Membros' */
    .nav-members-link {
        width: 80%; /* Botão mais largo para toque fácil */
        justify-content: center;
        padding: 15px 0;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        font-size: 15px;
    }

    /* Outros ajustes do mobile original */
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-visual { width: 100%; margin-top: 40px; }
    .bonus-grid-layout { grid-template-columns: 1fr; }
    .bonus-text { text-align: center; order: 2; }
    .bonus-visuals { order: 1; }
    h1 { font-size: 2.5rem; }
    .sub-headline { margin: 0 auto 30px auto; }
    .mobile-sticky-cta { display: block; }
    footer { padding-bottom: 80px; }
    #live-notification { bottom: 90px; left: 50%; transform: translateX(-50%) translateX(-150%); width: 90%; }
    .notification-show { transform: translateX(-50%) translateX(0) !important; }
    
    .bundle-container { flex-direction: column; gap: 30px; }
    .bundle-card { width: 100%; }
    .bundle-plus { transform: rotate(90deg); margin: 10px 0; }
    
    /* Correção extra para vídeo em mobile */
    .nav-right-container {
        align-items: flex-end; 
    }
}