/* ===== Padrão Titã (CSS) - v2.0 (Com Logo no Hero) ===== */

/* --- 1. Variáveis Globais (A Paleta Titã) --- */
:root {
    --color-bg-dark: #050310;
    --color-bg-medium: #0d0f1a;
    --color-text-primary: #e0e0e0;
    --color-text-secondary: #a0a0b0;
    --color-text-headings: #ffffff;
    --color-neon-cyan: #00e5ff;
    --color-neon-purple: #c000ff;
    --color-neon-gold: #FFD700; /* Dourado/Amarelo */
    --color-neon-green: #00ff88; /* Verde Positivo */
    --color-neon-red: #ff4444;   /* Vermelho Negativo */
    --color-glass-bg: rgba(10, 10, 30, 0.4);
    --color-glass-border: rgba(0, 229, 255, 0.2);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;
    --header-height: 70px;
}

/* --- 2. Reset e Configuração Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 3. Scrollbar (Estilo Lendário) --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb { background: var(--color-neon-cyan); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00aacc; }

/* --- 4. Classes Utilitárias (Tipografia Neon) --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-neon-cyan { color: var(--color-neon-cyan); text-shadow: 0 0 4px rgba(0, 229, 255, 0.5), 0 0 8px rgba(0, 229, 255, 0.3); }
.text-neon-purple { color: var(--color-neon-purple); text-shadow: 0 0 4px rgba(192, 0, 255, 0.5), 0 0 8px rgba(192, 0, 255, 0.3); }
.text-positive { color: var(--color-neon-green); }
.text-negative { color: var(--color-neon-red); }
.text-neutral { color: #f0f0f0; }

/* --- 5. Componentes Globais (Botões e Cards) --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--color-neon-cyan);
    color: var(--color-bg-dark);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
    background-color: #fff;
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-neon-cyan);
    border-color: var(--color-neon-cyan);
}
.btn-secondary:hover {
    background-color: var(--color-neon-cyan);
    color: var(--color-bg-dark);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
.btn-large { font-size: 1.1rem; padding: 16px 36px; }
.btn-block { display: block; width: 100%; text-align: center; }

.card-glass {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.card-glass:hover {
    transform: translateY(-10px); /* Mais "elevação" (lift) */
    border-color: var(--color-neon-cyan);
    /* Brilho neon mais intenso, como no monitor */
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* --- 6. Estrutura Principal (Header e Footer) --- */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(13, 15, 26, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-glass-border);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

/* Placeholder para centralizar os links */
.logo-placeholder {
    
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 10px 18px;
    border-radius: 50px;

    /* --- INÍCIO DO AJUSTE "VIDRO LENDÁRIO" --- */
    background: var(--color-glass-bg); /* O fundo de vidro */
    border: 1px solid var(--color-glass-border); /* A borda de vidro fina */
    backdrop-filter: blur(10px); /* O efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Para Safari */
    /* --- FIM DO AJUSTE --- */
}
.nav-links a:hover,
.nav-links a.active {
    background-color: var(--color-neon-cyan);
    color: var(--color-bg-dark);
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transform: scale(1.05);
}
.nav-cta {
    
    text-align: right;
}

main { margin-top: var(--header-height); }
.main-footer { padding: 3rem 0; text-align: center; background: var(--color-bg-dark); border-top: 1px solid var(--color-glass-border); }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.footer-legal { font-size: 0.8rem; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto 1rem auto; }
.footer-links a { font-size: 0.8rem; color: var(--color-text-secondary); margin: 0 0.5rem; text-decoration: none; }
.footer-links a:hover { color: var(--color-neon-cyan); }

/* --- 7. Estilos das Seções --- */
section { padding: 6rem 0; overflow: hidden; }
.section-dark { background-color: var(--color-bg-dark); }
.section-light { background-color: var(--color-bg-medium); }
.section-title { font-family: var(--font-display); font-size: 2.8rem; color: var(--color-text-headings); text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-secondary); text-align: center; max-width: 600px; margin: 0 auto 3rem auto; }

/* Seção 1: Hero (Oráculo) */
.section-hero { min-height: calc(100vh - var(--header-height)); display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 4rem; padding-bottom: 4rem; background: linear-gradient(180deg, var(--color-bg-medium) 0%, var(--color-bg-dark) 100%); position: relative; }
.hero-title { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; color: var(--color-text-secondary); margin-bottom: 3rem; }
.btn-hero-cta { font-size: 1.1rem; padding: 16px 36px; }

/* NOVA LOGO NO HERO (Sua Ideia) */
.hero-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px; 
    margin-bottom: 2rem; 
    
    /* --- INÍCIO DO AJUSTE "LENDÁRIO" (v3.1) --- */
    /* Aplica o mesmo 3D e transição do monitor */
    perspective: 1000px;
    transition: transform 0.5s ease;
    transform: rotateY(-15deg) rotateX(5deg); /* Posição 3D inicial */
}

.hero-logo-wrapper:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02); /* Posição 2D no hover */
}
.hero-logo-img {
    height: 120px; /* Tamanho dobrado */
    width: auto;
    /* A "borda neon" igual à do monitor */
    border: 2px solid var(--color-neon-cyan);
    border-radius: 8px; /* O raio da "tela" */
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); /* O "brilho" */
    transition: none;
}
.hero-logo-text {
    font-family: var(--font-display);
    font-size: 4rem; /* Tamanho proporcionalmente maior */
    font-weight: 700;
    color: var(--color-text-headings);
}

/* Seção 3: Relatórios de Missão */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.mission-report { font-size: 1.05rem; font-style: italic; color: var(--color-text-primary); margin-bottom: 1.5rem; position: relative; padding-left: 1.5rem; }
.mission-report::before { content: '“'; position: absolute; left: 0; top: -0.5rem; font-size: 3rem; color: var(--color-neon-purple); opacity: 0.5; }
.mission-author { text-align: right; }
.author-name { display: block; font-weight: 700; color: var(--color-neon-cyan); }
.mission-title { display: block; font-size: 0.8rem; color: var(--color-text-secondary); font-style: italic; }

/* Seção 4: Planos de Voo */
.pricing-grid-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; justify-content: center; max-width: 1000px; margin: 0 auto; }
.pricing-card { display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; }
.pricing-card .feature-list { flex-grow: 1; }
.pricing-plan-name { font-family: var(--font-display); font-size: 1.8rem; text-align: center; margin-bottom: 1rem; }
.pricing-price { font-size: 3.5rem; font-weight: 900; color: var(--color-text-headings); text-align: center; margin-bottom: 0.5rem; }
.price-suffix { font-size: 1rem; font-weight: 400; color: var(--color-text-secondary); }
.pricing-description { text-align: center; color: var(--color-text-secondary); margin-bottom: 2rem; min-height: 60px; }
.feature-list { list-style: none; margin-bottom: 2.5rem; }
.feature-list li { margin-bottom: 0.75rem; color: var(--color-text-primary); display: flex; align-items: center; }
.check-icon { color: var(--color-neon-cyan); font-weight: bold; margin-right: 0.75rem; font-size: 1.2rem; }
.security-seals { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; font-size: 0.8rem; color: var(--color-text-secondary); }
.payment-methods { text-align: center; margin-top: 1rem; font-size: 0.8rem; color: var(--color-text-secondary); }
.security-seals .seal { display: flex; align-items: center; gap: 8px; }
.security-seals .seal svg { stroke: var(--color-text-secondary); }

/* Seção 5: CTA Final */
.section-cta { background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%); padding: 8rem 0; }
.text-center { text-align: center; }
.cta-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.3; margin-bottom: 1.5rem; }
.cta-subtitle { font-size: 1.2rem; color: var(--color-text-secondary); max-width: 600px; margin: 0 auto 2.5rem auto; }

/* --- 8. Responsividade --- */
@media (max-width: 992px) {
    .section-title { font-size: 2.4rem; }
    .hero-title { font-size: 3rem; }
    .cta-title { font-size: 2.5rem; }
    .nav-links { display: none; }
    .logo-placeholder { display: none; } /* Oculta o placeholder no mobile */
    .main-header .container { justify-content: flex-end; /* Alinha o Login à direita */ }
    .hero-logo-text { font-size: 2rem; } /* Diminui a logo no hero */
    .hero-logo-img { height: 50px; }
}
@media (max-width: 768px) {
    html { font-size: 15px; }
    .container { padding: 0 1rem; }
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .cta-title { font-size: 2.2rem; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .main-header .container { justify-content: flex-end; }
    .nav-cta { position: relative; right: 0; }
}

/* --- 9. Estilos Dinâmicos (Loader) --- */
.loader-container { text-align: center; padding: 2rem 0; color: var(--color-text-secondary); }
.loader {
    border: 4px solid var(--color-glass-border);
    border-top: 4px solid var(--color-neon-cyan);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Seção 1: Veredito Único (Oráculo) */
.verdict-module-wrapper { max-width: 600px; margin: 0 auto 3rem auto; }
.verdict-content { text-align: center; }
.verdict-asset-title { font-size: 0.9rem; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 1px; }
.verdict-asset { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-text-headings); margin-bottom: 1.5rem; }
.verdict-display { font-family: var(--font-display); font-size: 2rem; font-weight: 700; padding: 0.75rem 1.5rem; border-radius: 8px; display: inline-block; margin-bottom: 1.5rem; border: 2px solid; }
.verdict-details { font-size: 1rem; color: var(--color-text-primary); }
.verdict-positive { color: var(--color-neon-green); border-color: var(--color-neon-green); background: rgba(0, 255, 136, 0.1); text-shadow: 0 0 8px rgba(0, 255, 136, 0.5); }
.verdict-negative { color: var(--color-neon-red); border-color: var(--color-neon-red); background: rgba(255, 68, 68, 0.1); text-shadow: 0 0 8px rgba(255, 68, 68, 0.5); }
.verdict-neutral { color: #e0e0e0; border-color: #e0e0e0; background: rgba(224, 224, 224, 0.1); }

/* --- 10. Estilos de Planos (Regra de Negócio) --- */
/* Destaque para o plano principal (Pacote Completo) */
.pricing-card-highlighted { border: 2px solid var(--color-neon-cyan); box-shadow: 0 0 30px rgba(0, 229, 255, 0.2); }
.pricing-card-graduate { border-color: var(--color-glass-border); opacity: 0.75; }
.pricing-card-graduate:hover { opacity: 1; }
.graduate-banner {
    background: var(--color-neon-gold);
    color: var(--color-bg-dark); 
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    padding: 8px 10px;
    margin: -32px -32px 20px -32px; 
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2); 
}
.btn-disabled { background: #555; border-color: #555; color: #999; cursor: not-allowed; }
.btn-disabled:hover { transform: none; box-shadow: none; background: #555; color: #999; }
.graduate-info-header {
    grid-column: 1 / -1; 
    text-align: center;
    padding: 2rem;
    background: var(--color-glass-bg);
    border: 1px solid var(--color-neon-purple);
    border-radius: 12px;
    margin-top: 2rem;
}
.graduate-info-header h3 { font-family: var(--font-display); color: var(--color-neon-purple); font-size: 1.5rem; margin-bottom: 0.5rem; }
.graduate-info-header p { color: var(--color-text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* --- 11. FASE 5: Feature Explorer (Arsenal v4.0) --- */
/* CORREÇÃO DO DISCLAIMER (Cor Dourada) */
.disclaimer-text {
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    color: var(--color-neon-gold); /* DOURADO/AMARELO */
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3); /* Glow sutil */
    max-width: 800px;
    margin: -1rem auto 3rem auto;
    padding: 1rem;
    border: 1px dashed rgba(255, 215, 0, 0.3); /* Borda dourada */
    border-radius: 8px;
}
#arsenal {
    position: relative;
    background-color: var(--color-bg-dark); 
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px; 
    background-position: center center;
}
#arsenal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, rgba(5, 3, 16, 0.9) 50%, var(--color-bg-dark) 100%);
    z-index: 1;
}
#arsenal .container { position: relative; z-index: 2; }
.feature-explorer { display: flex; flex-direction: row; min-height: 500px; padding: 0; }
.explorer-nav { flex-basis: 280px; flex-shrink: 0; border-right: 1px solid var(--color-glass-border); padding: 1rem 0; }
.explorer-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-left: 3px solid transparent; 
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.explorer-tab-btn svg { width: 20px; height: 20px; stroke: var(--color-text-secondary); flex-shrink: 0; transition: all 0.2s ease-in-out; }
.explorer-tab-btn:hover { background: var(--color-glass-bg); color: var(--color-text-primary); }
.explorer-tab-btn.active { color: var(--color-neon-cyan); background: rgba(0, 229, 255, 0.05); border-left-color: var(--color-neon-cyan); }
.explorer-tab-btn.active svg { stroke: var(--color-neon-cyan); }
.explorer-content-wrapper { flex-grow: 1; padding: 1.5rem 2rem; overflow: hidden; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.explorer-content, .nested-tab-content { display: none; animation: fadeIn 0.4s ease; }
.explorer-content.active, .nested-tab-content.active { display: block; }
.explorer-content-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-text-headings); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--color-glass-border); }
.nested-tab-nav { display: flex; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid var(--color-glass-border); margin-bottom: 1.5rem; }
.nested-tab-btn {
    padding: 0.5rem 0.25rem;
    margin-bottom: -1px; 
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}
.nested-tab-btn:hover { color: var(--color-text-primary); }
.nested-tab-btn.active { color: var(--color-neon-cyan); border-bottom-color: var(--color-neon-cyan); }
.nested-tab-content-wrapper { padding-top: 1rem; }
.nested-tab-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-text-primary); margin-bottom: 1.5rem; }
.arsenal-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.arsenal-card {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--color-glass-border);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.arsenal-card:hover { transform: translateY(-3px); border-color: var(--color-neon-purple); background: var(--color-glass-bg); }
.arsenal-card h4 { font-family: var(--font-primary); font-size: 1.1rem; font-weight: 700; color: var(--color-text-headings); margin-bottom: 0.5rem; }
.arsenal-card p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.5; }

/* --- 12. Animação de Scroll --- */
.section-to-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section-to-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.card-icon {
    height: 50px; 
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-neon-cyan); 
    opacity: 0.8;
}

/* --- Ajustes de Responsividade --- */
@media (max-width: 992px) {
    .explorer-nav { flex-basis: 220px; }
    .explorer-tab-btn { font-size: 0.85rem; gap: 8px; padding: 0.75rem 1rem; }
}
@media (max-width: 768px) {
    .feature-explorer { flex-direction: column; }
    .explorer-nav {
        display: flex;
        flex-direction: row; 
        flex-basis: auto;
        width: 100%;
        overflow-x: auto; 
        border-right: none;
        border-bottom: 1px solid var(--color-glass-border);
    }
    .explorer-tab-btn {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex-shrink: 0; 
    }
    .explorer-tab-btn.active { border-left: none; border-bottom-color: var(--color-neon-cyan); }
    .explorer-tab-btn svg { display: none; }
    .explorer-content-wrapper { padding: 1rem; }
}

/* --- 13. Estilo do Modal (SweetAlert Titan) --- */
.swal-titan-style.swal2-popup {
    background: var(--color-bg-medium);
    border: 1px solid var(--color-neon-purple);
    color: var(--color-text-primary);
    border-radius: 12px;
}
.swal-titan-style .swal2-title {
    color: var(--color-text-headings);
    font-family: var(--font-display);
}
.swal-titan-style .swal2-html-container {
    color: var(--color-text-secondary);
}
.swal-titan-style .swal2-confirm {
    background-color: var(--color-neon-cyan);
    color: var(--color-bg-dark);
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 28px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.swal-titan-style .swal2-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
.swal-titan-style .swal2-icon.swal2-warning .swal2-icon-content {
    color: var(--color-neon-gold); 
}

/* --- 15. Estilo Seção Missão & Visão ("Local de Honra") --- */
.creed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.creed-card {
    padding: 2.5rem; /* Mais espaçamento interno */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.creed-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--color-neon-cyan);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}
.creed-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-neon-cyan);
}

.creed-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text-headings);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.creed-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsividade para a seção Missão/Visão */
@media (max-width: 768px) {
    .creed-grid {
        grid-template-columns: 1fr; /* Coloca os cards um sobre o outro */
    }
    .creed-title {
        font-size: 1.8rem;
    }
}

/* --- 16. Estilo Plano de Fundo Vivo (Canvas Hero) --- */
#hero-animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Camada 1 (O fundo) */
    opacity: 0.7; /* Sutil, para não atrapalhar a leitura */
}

/* Garante que o conteúdo do Hero fique na frente do canvas */
.hero-content {
    position: relative;
    z-index: 2; /* Camada 2 (O conteúdo) */
}

/* --- 17. Estilo Hero (Layout "Lendário" v3.0 - Transparência e Neon) --- */

/* 1. O Grid Superior (Sua ideia) */
.hero-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem; 
}

/* 2. Coluna de Texto (Inalterada) */
.hero-text-column {
    text-align: left;
}
.hero-text-column .hero-logo-wrapper {
    justify-content: flex-start; 
}
.hero-text-column .hero-title {
    text-align: left;
    font-size: 3.2rem;
    margin-bottom: 0; 
}

/* 3. Conteúdo Centralizado (Inalterado) */
.hero-content .hero-subtitle {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.hero-content .verdict-module-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    margin-bottom: 3rem;
}
.hero-content .btn-hero-cta {
    display: inline-block;
}

/* 4. Coluna Visual (O Mockup 3D) - CORRIGIDO */
.hero-visual-column {
    perspective: 1000px; 
    padding-top: 2rem;
}
.monitor-mockup-modern {
    position: relative;
    
    /* 1. O container principal mantém a transparência */
    background: rgba(10, 10, 30, 0.0);
    
    /* 2. REMOVIDA a borda e o brilho daqui */
    border: none;
    border-radius: 12px;
    
    /* 3. Mantém APENAS a sombra 3D para profundidade */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.monitor-mockup-modern:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.monitor-screen {
    background: transparent; /* Permite ver o gráfico atrás */
    overflow: hidden;
    
    /* 4. A BORDA NEON VEM PARA A TELA (Sua ideia) */
    border: 2px solid var(--color-neon-cyan);
    border-radius: 8px; /* O raio da "tela" */
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4); /* O "brilho" */
}
.monitor-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Arredonda a imagem interna */
}


/* Base e Suporte (O 3D v3.1 - Visual "Lendário") */
.monitor-stand {
    width: 40px;
    height: 60px;
    /* Gradiente "metálico" 3D mais forte */
    background: linear-gradient(90deg, #3a3a3a 0%, #555555 50%, #3a3a3a 100%);
    margin: 0 auto;
    transform: translateY(-5px); /* Puxa para baixo da tela */
    z-index: -1;
    /* Sombra sutil para destacar da tela */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #666; /* Linha de luz na base */
}
.monitor-base {
    width: 160px; /* Um pouco mais largo */
    height: 12px; /* Um pouco mais alto */
    /* Gradiente 3D para o "pezinho" */
    background: linear-gradient(180deg, #444 0%, #2a2a2a 100%);
    margin: 0 auto;
    border-radius: 4px 4px 6px 6px; /* Borda 3D */
    transform: translateY(-10px); /* Puxa para baixo do suporte */
    z-index: -2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    /* Borda superior para simular reflexo */
    border-top: 1px solid #777;
}

/* 5. Responsividade (Inalterada) */
@media (max-width: 992px) {
    .hero-top-grid {
        grid-template-columns: 1fr; 
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-text-column {
        text-align: center;
    }
    .hero-text-column .hero-logo-wrapper {
        justify-content: center;
    }
    .hero-text-column .hero-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-visual-column {
        display: none; 
    }
}

/* --- 18. Estilo Slideshow "Vivo" do Monitor --- */
.monitor-slideshow {
    position: relative;
    width: 100%;
    /* Mantém a proporção da imagem (aprox 16:9) */
    padding-top: 56.25%; 
    /* CORREÇÃO: Força o slideshow a respeitar a borda neon */
    overflow: hidden;
}

.monitor-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra a tela */
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Transição suave de fade */
    border-radius: 6px;
}

.monitor-slide.active {
    /* CORREÇÃO 1: Permite ver o gráfico atrás ("muito bacana") */
    opacity: 0.7; /* Você pode ajustar de 0.6 a 0.8 */
}

/* --- 19. Estilo Seção Filosofia ("A Alma") --- */
.philosophy-container {
    max-width: 900px; /* Mais focado para leitura */
    margin: 0 auto;
}

.philosophy-block {
    margin-bottom: 3rem;
}

/* O "local de honra" para o seu texto principal */
#alma-coracao-block h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-text-headings);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
#alma-coracao-block p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}
#alma-coracao-block p strong {
    color: var(--color-neon-cyan);
    font-weight: 700;
}

/* O grid 2x2 para os 4 tópicos */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.philosophy-card {
    padding: 2rem;
}
.philosophy-card h2 { /* Títulos dos cards (ex: O Arsenal) */
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-neon-cyan);
    margin-bottom: 1rem;
}
.philosophy-card p,
.philosophy-card ul {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}
.philosophy-card ul {
    list-style: none;
    padding-left: 0;
}
.philosophy-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}
.philosophy-card li::before {
    content: '✓'; /* Ícone de check */
    color: var(--color-neon-green);
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

/* O bloco da Frase Final */
#alma-frase-block {
    border-top: 1px solid var(--color-glass-border);
    padding-top: 3rem;
}

/* Responsividade para a seção Alma */
@media (max-width: 768px) {
    #alma-coracao-block h2 {
        font-size: 2.2rem;
    }
    .philosophy-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
}

/* --- 20. Estilo Seção App Mobile (Fase 10 "Vibrante") --- */

.mobile-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0; /* Adiciona um respiro na seção */
}

/* Coluna 1: O Celular (Lado Esquerdo) */
.mobile-visual-column {
    perspective: 1200px; /* Ativa o 3D */
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-mockup-modern {
    position: relative;
    width: 280px; /* Largura de um celular moderno */
    height: 560px; /* Proporção 2:1 (vertical) */
    
    /* O "Aspecto de Vidro Transparente" */
    background: var(--color-glass-bg);
    
    /* Borda Neon Roxa */
    border: 2px solid var(--color-neon-purple);
    border-radius: 40px; /* Arredondamento elegante */
    
    /* Brilho Roxo */
    box-shadow: 0 0 30px rgba(192, 0, 255, 0.4), 0 20px 40px rgba(0, 0, 0, 0.5);

    /* O Efeito 3D "que se move" (Invertido do Monitor) */
    transform: rotateY(15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.mobile-mockup-modern:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* A "Tela" interna onde o QR Code fica */
.mobile-screen {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: transparent; /* Permite ver o gráfico de fundo */
    border-radius: 30px; /* Raio interno */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

/* O CSS que faltava para a imagem */
.qr-code-image {
    width: 100%;
    height: 100%; /* Força a imagem a preencher a tela */
    object-fit: cover; /* Cobre a tela sem distorcer (melhor que 'contain') */
    border-radius: 20px; /* Arredonda o QR code para caber na tela */
}

/* Detalhes 3D (Notch e Botões) */
.mobile-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #0d0f1a; /* Fundo do celular */
    border-radius: 0 0 10px 10px;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
}
.mobile-side-button {
    position: absolute;
    top: 100px;
    right: -3px; 
    width: 4px;
    height: 40px;
    background: #444; /* Cor metálica */
    border-radius: 0 4px 4px 0;
}

/* Coluna 2: O Texto (Lado Direito) */
.mobile-text-column {
    /* O HTML já cuida do alinhamento */
}

/* Responsividade */
@media (max-width: 992px) {
    .mobile-app-grid {
        grid-template-columns: 1fr; /* Coluna única */
    }
    .mobile-visual-column {
        order: 1;
        padding-bottom: 3rem;
        margin-top: 2rem;
    }
    .mobile-text-column {
        order: 2;
        text-align: center; /* Centraliza no mobile */
    }
    .mobile-text-column .section-title,
    .mobile-text-column .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- 21. Share Node (Botão Flutuante - Canto Inferior Direito) --- */
.share-node-container {
    position: fixed;
    bottom: 30px;
    right: 30px; /* MUDANÇA: Fixado na Direita */
    left: auto;  /* Anula qualquer regra de esquerda */
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

/* Estilo do Botão Principal */
.main-share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-medium);
    border: 2px solid var(--color-neon-cyan);
    color: var(--color-neon-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-share-btn:hover {
    background: var(--color-neon-cyan);
    color: var(--color-bg-dark);
    transform: rotate(90deg);
}

/* Container das Opções */
.share-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.share-node-container:hover .share-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Botões Individuais */
.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-medium);
    border: 1px solid var(--color-glass-border);
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    position: relative;
}

.share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; box-shadow: 0 0 15px #25d36680; }
.share-btn.telegram:hover { background: #0088cc; border-color: #0088cc; box-shadow: 0 0 15px #0088cc80; }
.share-btn.facebook:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 0 15px #1877F280; }
.share-btn.linkedin:hover { background: #0077b5; border-color: #0077b5; box-shadow: 0 0 15px #0077b580; }
.share-btn.copy:hover { background: #f6c23e; border-color: #f6c23e; color: #000; box-shadow: 0 0 15px #f6c23e80; }

/* --- TOOLTIPS (Aparecem à ESQUERDA agora) --- */
.share-btn::after,
.main-share-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 120%; /* MUDANÇA: Aparece à esquerda do botão */
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg-medium);
    border: 1px solid var(--color-neon-cyan);
    color: var(--color-neon-cyan);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    font-family: var(--font-primary);
}

.share-btn:hover::after,
.main-share-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* --- 22. Banner de Cookies (LGPD Lendário - Correção de Posição) --- */
.cookie-banner-glass {
    position: fixed !important; /* Garante que flutue */
    bottom: 20px !important;    /* Garante que fique embaixo */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90%;
    max-width: 800px;
    
    /* Visual de Vidro */
    background: rgba(13, 15, 26, 0.95);
    border: 1px solid var(--color-glass-border);
    border-top: 2px solid var(--color-neon-gold); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    padding: 1.5rem;
    border-radius: 12px;
    z-index: 10000; /* Garante que fique acima de tudo */
    
    display: none; /* Começa invisível, o JS que mostra */
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

/* Animação de entrada */
.cookie-banner-glass.show {
    display: flex !important;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp { 
    from { transform: translate(-50%, 100%); opacity: 0; } 
    to { transform: translate(-50%, 0); opacity: 1; } 
}

.cookie-content { display: flex; align-items: center; gap: 1.5rem; }
.cookie-icon { font-size: 2rem; }
.cookie-text h4 { font-family: var(--font-display); color: #fff; margin-bottom: 0.2rem; font-size: 1.1rem; text-align: left; }
.cookie-text p { font-size: 0.9rem; color: var(--color-text-secondary); margin: 0; text-align: left; }
.cookie-text a { color: var(--color-neon-cyan); text-decoration: none; border-bottom: 1px dashed var(--color-neon-cyan); }

.cookie-actions { flex-shrink: 0; }

@media (max-width: 768px) {
    .cookie-banner-glass { flex-direction: column; text-align: center; bottom: 0 !important; width: 100%; border-radius: 12px 12px 0 0; }
    .cookie-content { flex-direction: column; gap: 1rem; }
    .cookie-text h4, .cookie-text p { text-align: center; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { width: 100%; }
}
/* --- 23. Correção de Camadas (Z-Index Fix) --- */
/* Garante que o Modal (Política/Termos) fique ACIMA do Banner de Cookies */
div.swal2-container {
    z-index: 20000 !important; /* Banner é 10000, Header é 1000 */
}

/* Garante a rolagem dentro do modal caso o texto seja longo */
div.swal2-popup {
    max-height: 90vh;
    overflow-y: auto;
}

/* --- SEÇÃO RADAR DE OPORTUNIDADES (CARDS VIVOS) --- */
#opportunities-radar {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: radial-gradient(circle at 50% 10%, rgba(0, 229, 255, 0.05), transparent 70%);
}

.radar-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Badge de Data (A Transparência que você pediu) */
.radar-date-badge {
    display: inline-block;
    background: rgba(13, 15, 26, 0.8);
    border: 1px solid var(--color-text-secondary);
    color: var(--color-text-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
    font-family: var(--font-display);
    letter-spacing: 1px;
}
.radar-date-badge i { margin-right: 8px; color: var(--color-neon-gold); }

/* Grid de Cards */
.cards-perspective-container {
    perspective: 1000px; /* Ativa o 3D */
}

.opportunity-card {
    position: relative;
    background: rgba(20, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.1s ease, box-shadow 0.3s ease; /* Transição rápida para o Tilt */
    backdrop-filter: blur(12px);
    overflow: hidden;
    cursor: pointer;
}

/* Variação: TOUROS (Alta) */
.card-bull {
    border-top: 3px solid var(--color-neon-green);
}
.card-bull:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15), 0 0 0 1px var(--color-neon-green);
}

/* Variação: URSOS (Baixa) */
.card-bear {
    border-top: 3px solid var(--color-neon-red);
}
.card-bear:hover {
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.15), 0 0 0 1px var(--color-neon-red);
}

/* Conteúdo do Card */
.opp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.opp-symbol {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.opp-change {
    font-weight: 700;
    font-size: 1rem;
    padding: 4px 8px;
    border-radius: 6px;
}
.change-up { background: rgba(0, 255, 136, 0.15); color: var(--color-neon-green); }
.change-down { background: rgba(255, 68, 68, 0.15); color: var(--color-neon-red); }

.opp-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
}
.tag-gold { background: linear-gradient(90deg, #FFD700, #FFA500); color: #000; box-shadow: 0 0 10px rgba(255, 215, 0, 0.4); }
.tag-silver { background: linear-gradient(90deg, #E0E0E0, #B0B0B0); color: #000; }
.tag-bronze { background: linear-gradient(90deg, #CD7F32, #A0522D); color: #fff; }

/* O Efeito Blur (O Segredo) */
.opp-blur-section {
    position: relative;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.blur-content {
    filter: blur(5px);
    opacity: 0.5;
    user-select: none;
}
.unlock-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 8px 16px;
    z-index: 2;
}

/* Rodapé Técnico */
.opp-metrics {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}
.metric-score strong { color: var(--color-neon-cyan); }

/* Responsividade */
@media (max-width: 768px) {
    .radar-title { font-size: 2rem; }
}

/* Grid Forçado para Desktop (3 Colunas) */
/* --- CORREÇÃO DE GRID E ALINHAMENTO (v2.1) --- */

/* 1. Centralização do Botão Hero */
.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

/* 2. Grid do Radar (Substitui o sistema de row/col do Bootstrap) */
#radar-bulls-container,
#radar-bears-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Mobile: 1 coluna */
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    #radar-bulls-container,
    #radar-bears-container {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 colunas */
    }
}

@media (min-width: 1200px) {
    #radar-bulls-container,
    #radar-bears-container {
        grid-template-columns: repeat(3, 1fr); /* Desktop: 3 colunas PERFEITAS */
    }
}

/* Ajuste fino para os Cards não esticarem demais */
.opportunity-card {
    height: 100%; /* Garante altura igual */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Correção de Alinhamento do Botão Hero */
.hero-cta-wrapper {
    display: flex;
    justify-content: center; /* Centraliza Horizontalmente */
    align-items: center;
    width: 100%;
    margin-top: 3rem;
    position: relative;
    z-index: 5;
}

.radar-footer-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Refinamento da Caixa de Informações */
.radar-footer-info {
    max-width: 850px;
    margin: 0 auto; /* Centraliza o bloco todo */
}

.info-box {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-left: 4px solid var(--color-neon-cyan); /* Borda lateral grossa */
    border-top: 1px solid rgba(255,255,255,0.05);  /* Borda fina sutil em cima/baixo/direita */
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 1.5rem;
}

.info-box h6 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fff;
}