/* ── Hero com Estrutura 2 Colunas ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 64px 80px; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

.hero-container { position: relative; z-index: 1; width: 100%; max-width: 1200px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.hero-content { max-width: 680px; }

.hero-label { font-size: 11px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--orange); }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(36px, 4.5vw, 64px); text-transform: uppercase; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-title span { color: var(--orange); }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.6; margin-bottom: 36px; text-wrap: pretty; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
.hero-perks { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-perks span { display: inline-flex; align-items: center; gap: 6px; }
.hero-perks span::before { content: '✓'; color: var(--orange); font-weight: 700; }

/* ── Efeito Mascote Flutuando ── */
.hero-image-wrapper { display: flex; justify-content: center; position: relative; }
.hero-mascot { 
    width: 100%; 
    max-width: 450px; 
    animation: floatMascot 6s ease-in-out infinite; 
    filter: drop-shadow(0 20px 30px rgba(255,92,0,0.15)); 
}

@keyframes floatMascot {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ── Stats (Cards Interativos) ── */
.stats { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 64px; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }

.stat-card { background: var(--gray); border: 1px solid var(--border); border-radius: 12px; padding: 32px 20px; text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--orange); opacity: 0; transition: 0.3s; }

.stat-card:hover { transform: translateY(-8px); border-color: rgba(255,92,0,0.3); box-shadow: 0 15px 35px rgba(0,0,0,0.4); background: linear-gradient(180deg, var(--gray) 0%, #110804 100%); }
.stat-card:hover::before { opacity: 1; }
.stat-card:hover .stat-num { text-shadow: 0 0 24px rgba(255,92,0,0.5); transform: scale(1.05); }
.stat-card:hover .stat-icon { opacity: 1; transform: translateY(-3px); }

.stat-icon { font-size: 24px; margin-bottom: 14px; opacity: 0.5; transition: 0.3s; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(32px, 4vw, 44px); color: var(--orange); line-height: 1; margin-bottom: 8px; transition: 0.3s; display: inline-block; }
.stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ── Seções globais ── */
section { padding: 96px 64px; position: relative; z-index: 1; }

.section-header { max-width: 1200px; margin: 0 auto; padding-bottom: 10px; }

.section-label { font-size: 10px; color: var(--muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.section-label::before { content: ''; display: block; width: 20px; height: 1px; background: var(--orange); }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-title span { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 620px; margin-bottom: 56px; }

/* ── Personas (Cards Premium) ── */
.personas { background: var(--bg); border-top: 1px solid var(--border); }
.personas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }

.persona-card { background: var(--gray); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.persona-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--orange), transparent); opacity: 0; transition: 0.4s ease; }
.persona-card:hover { border-color: rgba(255,92,0,0.35); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); background: linear-gradient(180deg, var(--gray) 0%, #120a07 100%); }
.persona-card:hover::before { opacity: 1; }

.persona-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; background: rgba(255, 92, 0, 0.05); border: 1px solid rgba(255, 92, 0, 0.15); border-radius: 16px; font-size: 28px; margin-bottom: 24px; transition: 0.4s ease; }
.persona-card:hover .persona-icon { background: rgba(255, 92, 0, 0.1); border-color: var(--orange); box-shadow: 0 0 25px rgba(255, 92, 0, 0.2); transform: scale(1.05) rotate(-5deg); }
.persona-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 14px; color: var(--text); transition: 0.3s; }
.persona-card:hover .persona-title { color: var(--orange); }
.persona-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Serviços (Com Imagens 16:9) ── */
.services { background: var(--bg); border-top: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }

.service-card { background: var(--gray); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: 0.4s ease; display: block; text-decoration: none; color: inherit; }
.service-card:hover { border-color: rgba(255,92,0,0.35); box-shadow: 0 15px 35px rgba(0,0,0,0.3); transform: translateY(-6px); background: linear-gradient(180deg, var(--gray) 0%, #120a07 100%); }

.service-image-wrapper { width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin-bottom: 24px; background: var(--gray-2); border: 1px solid rgba(255,255,255,0.02); }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img { transform: scale(1.05); }

.service-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 12px; color: var(--text); transition: color 0.3s; }
.service-card:hover .service-name { color: var(--orange); }
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Trilhas (Dois Caminhos) ── */
.tracks { background: linear-gradient(180deg, var(--bg) 0%, #0a0608 100%); border-top: 1px solid var(--border); }
.tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; max-width: 1000px; margin: 0 auto; }

.track-card { 
    background: radial-gradient(circle at top right, rgba(255,92,0,0.03) 0%, var(--gray) 100%); 
    border: 1px solid var(--border); 
    border-radius: 16px; 
    padding: 48px 40px; 
    transition: all 0.4s ease; 
    position: relative; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.track-card::before { 
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; 
    background: linear-gradient(90deg, transparent, var(--orange), transparent); 
    opacity: 0.3; transition: 0.4s ease; 
}

.track-card:hover { 
    border-color: rgba(255,92,0,0.45); 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,92,0,0.1);
}

.track-card:hover::before { opacity: 1; }

.track-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.track-icon { font-size: 32px; background: rgba(255,92,0,0.1); padding: 12px; border-radius: 12px; border: 1px solid rgba(255,92,0,0.2); }

.track-tag { display: inline-block; font-size: 11px; color: var(--orange); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border: 1px solid rgba(255,92,0,0.3); border-radius: 6px; background: rgba(255,92,0,0.05); }

.track-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; margin-bottom: 16px; color: var(--text); }
.track-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; flex-grow: 1; }

.track-for { font-size: 14px; color: var(--muted); padding: 20px; background: rgba(0,0,0,0.2); border-radius: 8px; border: 1px dashed var(--border); margin-bottom: 32px; }
.track-for strong { color: var(--orange); }

.track-cta { width: 100%; margin-top: auto; }

/* ── Como Funciona (A Rota) - ATUALIZADO ── */
.how { 
    padding: 100px 20px; 
    background: var(--bg); 
    position: relative; 
    border-top: 1px solid var(--border);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Linha conectora de fundo da jornada */
.how-grid::before {
    content: '';
    position: absolute;
    top: 60px; /* Alinhado com os números */
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,92,0,0.3), transparent);
    z-index: -1;
}

.step {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Bolinha indicadora no topo de cada card */
.step::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    transition: 0.4s ease;
    z-index: 2;
}

.step:hover {
    border-color: rgba(255,92,0,0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    background: linear-gradient(180deg, var(--gray) 0%, #0e0705 100%);
}

/* A bolinha acende no hover */
.step:hover::before {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: 0 0 15px var(--orange);
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: rgba(255,92,0,0.05); /* Número bem suave inicialmente */
    line-height: 1;
    margin-bottom: 24px;
    transition: 0.4s ease;
}

/* O número ganha vida no hover */
.step:hover .step-num {
    color: rgba(255,92,0,0.15);
    transform: scale(1.05) translateX(8px);
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.step-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Pacotes ── */
.pricing { background: var(--bg); border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; }
.price-card { background: var(--gray); border: 1px solid var(--border); border-radius: 10px; padding: 36px 28px; transition: 0.3s; display: flex; flex-direction: column; }
.price-card:hover { border-color: rgba(255,92,0,0.35); transform: translateY(-5px); }
.price-card.featured { border-color: rgba(255,92,0,0.4); background: linear-gradient(180deg, var(--gray) 0%, #100a07 100%); }
.price-icon { font-size: 28px; margin-bottom: 14px; }
.price-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.02em; }
.price-tag { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--orange); margin-bottom: 6px; line-height: 1; }
.price-period { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.price-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; flex-grow: 1; }
.price-cta { font-size: 13px; color: var(--orange); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.price-cta:hover { gap: 12px; }

/* ── Prova social ── */
.proof { background: var(--bg); border-top: 1px solid var(--border); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.proof-card { background: var(--gray); border: 1px solid var(--border); border-radius: 8px; padding: 28px; transition: 0.3s; }
.proof-card:hover { border-color: rgba(255,92,0,0.35); transform: translateY(-5px); }
.proof-img-placeholder { width: 100%; height: 200px; background: var(--gray-2); border-radius: 6px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; border: 1px dashed var(--border); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; text-align: center; padding: 16px; }
.proof-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 6px; }
.proof-meta { font-size: 12px; color: var(--orange); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.proof-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-style: italic; }

/* ── FAQ ── */
.faq { background: var(--bg); border-top: 1px solid var(--border); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--gray); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: 0.3s; }
.faq-item[open] { border-color: rgba(255,92,0,0.35); }
.faq-item summary { padding: 22px 26px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--text); list-style: none; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--orange); font-size: 26px; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 26px 24px; color: var(--muted); line-height: 1.7; font-size: 15px; }
.faq-item a { color: var(--orange); text-decoration: underline; }

/* ── Sobre ── */
.about { background: var(--gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-content { max-width: 820px; margin: 0 auto; text-align: center; }
.about-text { font-size: 17px; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.about-text:last-of-type { color: var(--muted); font-size: 15px; }
.about-text strong { color: var(--orange); font-weight: 600; }

/* ── Lead magnet ── */
.lead-magnet { background: linear-gradient(135deg, var(--gray) 0%, #110804 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: 100px 64px; }
.lead-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 16px; line-height: 1.15; }
.lead-title span { color: var(--orange); }
.lead-sub { font-size: 16px; color: var(--muted); max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }

@media (prefers-reduced-motion: reduce) {
    #hero-canvas { display: none; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .hero-mascot { animation: none !important; }
}

@media (max-width: 1024px) { 
    .how-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } 
    .how-grid::before { display: none; } 
}

@media (max-width: 768px) {
    .hero { padding: 110px 20px 60px; text-align: center; }
    .hero-container { grid-template-columns: 1fr; gap: 30px; }
    .hero-content { margin: 0 auto; }
    .hero-label { justify-content: center; }
    .hero-label::before { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-perks { justify-content: center; }
    .hero-mascot { max-width: 280px; }
    
    section, .lead-magnet, .stats { padding: 60px 20px; }
    .section-label { justify-content: center; }
    .section-label::before { display: none; }
    .section-title, .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
    .how-grid, .proof-grid, .personas-grid, .tracks-grid, .pricing-grid { grid-template-columns: 1fr; }
}