/* --- 1. CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    --fundo-preto: #0A0A0A;
    --fundo-secundario: #111111;
    --fundo-card: #1A1A1A;
    --ouro: #F2C84B;
    --ouro-brilho: #ffeebb;
    --branco: #FFFFFF;
    --cinza-claro: #D9D9D9;
    --cinza-escuro: #333333;
    --vermelho-alerta: #ff4757;
    --whatsapp: #25D366;
    --sombra-dourada: rgba(242, 200, 75, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--fundo-preto);
    color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 50px; /* Espaço para barra fixa */
}

/* Tipografia */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
.text-ouro { color: var(--ouro); }
.text-bold { font-weight: 700; }

/* Efeito Texto Dourado Brilhante */
.gradient-text {
    background: linear-gradient(90deg, #c49618, #F2C84B, #FFF5C3, #c49618);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

/* --- 2. COMPONENTES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; position: relative; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Botão CTA Principal */
.cta-container { text-align: center; margin-top: 40px; }
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    padding: 22px 30px;
    background: var(--ouro);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 25px var(--sombra-dourada);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}
.cta-button:hover {
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 0 40px var(--sombra-dourada);
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(242, 200, 75, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(242, 200, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 200, 75, 0); }
}

/* --- 3. SEÇÕES ESPECÍFICAS --- */

/* Barra Fixa */
.sticky-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: linear-gradient(90deg, #b8860b, #F2C84B, #b8860b);
    color: #000; z-index: 9999; padding: 10px 0;
    text-align: center; font-weight: 800; font-size: 0.9rem;
    display: flex; justify-content: center; align-items: center; gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.timer-box { background: #000; color: var(--ouro); padding: 2px 6px; border-radius: 4px; font-family: monospace; font-size: 1rem; }

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    padding: 60px 20px;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.7); }
.hero p { font-size: clamp(1rem, 2vw, 1.3rem); color: var(--cinza-claro); max-width: 800px; margin: 0 auto 30px auto; }

/* VSL (Video) */
.video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; background: #000;
    border-radius: 15px; overflow: hidden; border: 2px solid #333;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    max-width: 900px; margin: 0 auto;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Seção Contexto (Virada de Ano) */
.context-box { text-align: center; max-width: 800px; margin: 0 auto; }
.highlight-box { border: 1px solid var(--ouro); padding: 20px; border-radius: 10px; margin-top: 30px; background: rgba(242, 200, 75, 0.05); }

/* Seção PROMESSA (Timeline) */
.promise-section { background-color: var(--fundo-secundario); }
.timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin: 50px 0; }
.timeline-item { 
    background: var(--fundo-card); padding: 25px; border-radius: 12px; border: 1px solid #333; 
    transition: 0.3s; position: relative; 
}
.timeline-item:hover { transform: translateY(-10px); border-color: var(--ouro); }
.timeline-item.active-week { border: 2px solid var(--ouro); background: linear-gradient(145deg, #222, #000); }
.badge-week { background: var(--ouro); color: #000; padding: 4px 12px; border-radius: 20px; font-weight: 800; font-size: 0.8rem; margin-bottom: 15px; display: inline-block; }
.math-logic { background: #151515; padding: 20px; border-left: 5px solid var(--ouro); margin: 30px auto; max-width: 800px; text-align: left; }

/* Seção Módulos */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.module-card { background: var(--fundo-card); padding: 30px; border-radius: 15px; border: 1px solid #333; transition: 0.3s; }
.module-card:hover { border-color: var(--ouro); transform: scale(1.02); }
.module-card h3 { color: var(--ouro); margin-bottom: 10px; font-size: 1.3rem; }
.module-card p { color: #bbb; font-size: 0.95rem; }

/* Seção Bio (Ueliton) */
.bio-wrapper { display: flex; align-items: center; gap: 50px; }
.bio-img { 
    flex: 1; min-height: 450px; background-color: #222; border-radius: 20px; 
    border: 2px solid var(--ouro); box-shadow: 20px 20px 0 rgba(242, 200, 75, 0.1);
    background-image: url('ueliton.JPG'); /* PLACEHOLDER */
    background-size: cover; background-position: cover;
}
.bio-text { flex: 1.5; text-align: left; }
.authority-list { margin-top: 20px; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 10px; border-left: 3px solid var(--ouro); }

/* Seção Prova Social */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.testi-card { background: #111; padding: 30px; border-radius: 15px; border: 1px solid #222; position: relative; }
.testi-card::before { content: '“'; font-size: 4rem; color: var(--ouro); position: absolute; top: -10px; left: 20px; opacity: 0.3; font-family: serif; }
.user-info { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.user-avatar { width: 50px; height: 50px; background: #333; border-radius: 50%; }

/* Seção Oferta */
.offer-box {
    background: linear-gradient(180deg, #1A1A1A 0%, #000 100%);
    border: 2px solid var(--ouro); border-radius: 20px; padding: 50px 20px;
    max-width: 700px; margin: 0 auto; text-align: center;
    box-shadow: 0 0 60px rgba(242, 200, 75, 0.1); position: relative; overflow: hidden;
}
.discount-badge { position: absolute; top: 30px; right: -40px; background: var(--vermelho-alerta); color: white; padding: 5px 50px; transform: rotate(45deg); font-weight: bold; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.price-old { text-decoration: line-through; color: #666; font-size: 1.2rem; }
.price-new { font-size: 4rem; color: var(--ouro); font-weight: 800; line-height: 1; margin: 15px 0; }
.price-installments { color: #fff; font-size: 1.2rem; }
.pizza-hook { background: #111; border: 1px dashed #444; padding: 15px; border-radius: 10px; margin-top: 25px; display: inline-block; }

/* FAQ (Acordeão) */
.faq-item { border-bottom: 1px solid #222; margin-bottom: 10px; }
.faq-btn { width: 100%; text-align: left; padding: 20px; background: none; border: none; color: #fff; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; }
.faq-btn:hover { color: var(--ouro); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; color: #ccc; background: #0f0f0f; }
.faq-item.active .faq-content { padding-bottom: 20px; }
.arrow { transition: 0.3s; }
.faq-item.active .arrow { transform: rotate(180deg); color: var(--ouro); }

/* Footer & Floats */
footer { background: #050505; padding: 50px 0 20px 0; text-align: center; border-top: 1px solid #222; }
.social-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.social-icons a svg { width: 30px; height: 30px; fill: #fff; transition: 0.3s; }
.social-icons a:hover svg { fill: var(--ouro); transform: translateY(-5px); }

.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; width: 60px; height: 60px;
    background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4); z-index: 9990; border: 2px solid #fff;
    animation: pulse-green 2s infinite;
}
.whatsapp-float svg { width: 35px; height: 35px; fill: white; }
@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Animação Scroll Reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsividade */
@media (max-width: 900px) {
    .bio-wrapper { flex-direction: column-reverse; }
    .bio-img { width: 100%; min-height: 350px; }
    .bio-text { text-align: center; }
    .price-new { font-size: 3rem; }
    .sticky-bar { font-size: 0.8rem; }
}