/* ═══════════════════════════════════════════════════════════
   IA MASTER PRO — CSS Completo (Consolidado + Responsivo)
   Dark Mode | Neon Glow | Glassmorphism | Bento Grids
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg: #0B132B;
    --bg-surface: #0F172A;
    --bg-card: rgba(15, 23, 42, 0.55);
    --text: #F8FAFC;
    --text-2: #E2E8F0;
    --text-3: #94A3B8;
    --accent: #00E5FF;
    --accent-2: #3B82F6;
    --accent-dim: rgba(0, 229, 255, 0.12);
    --accent-glow: rgba(0, 229, 255, 0.2);
    --neon-border: rgba(0, 229, 255, 0.1);
    --neon-border-hover: rgba(0, 229, 255, 0.3);
    --glass: rgba(15, 23, 42, 0.5);
    --glass-border: rgba(255, 255, 255, 0.06);
    --grad: linear-gradient(135deg, #00E5FF, #3B82F6);
    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Inter', sans-serif;
    --r: 16px;
    --r-sm: 10px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-b);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.loading {
    overflow: hidden;
}

img, video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
strong { font-weight: 700; }
em { font-style: italic; color: var(--text-3); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

.accent { color: var(--accent) !important; }

/* ──── UTILS ──── */
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mt-4 { margin-top: 32px; }

/* ──── BG TEXTURES ──── */
.dot-matrix {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
}

.circuit-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ──── PRELOADER ──── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity .6s, visibility .6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; width: 300px; }

.preloader-logo {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 28px;
    color: var(--text);
}

.preloader-logo span {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--accent);
    margin-top: 4px;
}

.preloader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--grad);
    border-radius: 4px;
    transition: width .1s;
}

.preloader-text { font-size: .75rem; color: var(--text-3); letter-spacing: 1px; }

/* ══════════════════════════════════════
   HERO — SPLIT LAYOUT
   ══════════════════════════════════════ */
.hero-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px 60px 48px;
    position: relative;
    z-index: 2;
}

.hero-left-inner { max-width: 520px; }

.hero-top-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: fadeInDown .8s var(--ease) .2s both;
}

.brand-ia {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-experience {
    font-family: var(--font-h);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--text-2);
}

.brand-divider { width: 1px; height: 20px; background: rgba(255, 255, 255, .15); }

.brand-tag {
    font-family: var(--font-h);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent);
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid var(--neon-border);
    border-radius: 50px;
    background: var(--accent-dim);
}

.hero-headline {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    animation: fadeInUp 1s var(--ease) .4s both;
}

.hero-headline-mobile { display: none; }
.h-line { display: block; color: var(--text); }
.h-accent { display: block; color: var(--accent); text-shadow: 0 0 40px rgba(0, 229, 255, .2); }
.h-glow {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, .3));
}

.hero-chips {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease) .6s both;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-2);
    padding: 10px 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(12px);
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse 2s infinite;
}

.chip-dot.fire { background: #FF6B35; box-shadow: 0 0 8px rgba(255, 107, 53, .3); }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1) }
    50% { opacity: .5; transform: scale(.8) }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--bg);
    background: var(--grad);
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 229, 255, .15), 0 4px 20px rgba(0, 0, 0, .3);
    animation: fadeInUp 1s var(--ease) .8s both;
}

.btn-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    transition: left .5s;
}

.btn-primary:hover .btn-shine { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 229, 255, .3), 0 8px 30px rgba(0, 0, 0, .4);
}
.btn-full { width: 100%; justify-content: center; }
.btn-cta-final { font-size: 1rem; padding: 20px 44px; animation: none; }

.hero-right { position: relative; overflow: hidden; }
.hero-img-container { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

.hero-gradient-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(11, 19, 43, 0.7) 20%, transparent 50%);
}

.hero-gradient-bottom {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none;
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════ */
.section { position: relative; padding: clamp(40px, 6vw, 72px) 0; z-index: 1; }
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }
.section-glow {
    position: absolute; width: 400px; height: 400px; border-radius: 50%;
    filter: blur(120px); pointer-events: none; opacity: 0.6;
}
.glow-left { background: rgba(0, 229, 255, .05); top: 0; left: -200px; }

.tag-line { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.tag-line-left { justify-content: flex-start; }
.tag-line-bar { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.section-tag { font-family: var(--font-h); font-size: .65rem; font-weight: 700; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; }

.section-title {
    font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    line-height: 1.2; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-desc { font-size: 1.15rem; color: var(--text-3); max-width: 640px; margin-inline: auto; }

/* ──── NEON CARD ──── */
.neon-card {
    background: var(--glass);
    border: 1px solid var(--neon-border);
    border-radius: var(--r);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transition: all .35s var(--ease); position: relative; overflow: hidden;
}

.neon-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: var(--r); padding: 1px;
    background: linear-gradient(135deg, rgba(0, 229, 255, .08), transparent 40%, transparent 60%, rgba(59, 130, 246, .08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none; opacity: 0; transition: opacity .35s;
}

.neon-card:hover { border-color: var(--neon-border-hover); transform: translateY(-4px); }
.neon-card:hover::before { opacity: 1; }

/* ══════════════════════════════════════
   VÍDEO DESTAQUE
   ══════════════════════════════════════ */
.video-section { padding-top: 20px; }
.video-container {
    position: relative; max-width: 900px; margin: 0 auto;
    border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); background: #000;
}
#mainVideo { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   PROMESSA — LAYOUT (Cards + Vídeos Verticais)
   ══════════════════════════════════════ */
.promessa-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: center; margin-bottom: 48px;
}
.promessa-cards { display: flex; flex-direction: column; gap: 24px; }
.promessa-card { padding: 32px; display: flex; flex-direction: column; justify-content: center; }

.pc-number { font-family: var(--font-h); font-size: 2.4rem; font-weight: 900; color: rgba(0, 229, 255, .12); line-height: 1; margin-bottom: 12px; }
.promessa-card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.promessa-card p { font-size: .9rem; color: var(--text-2); line-height: 1.7; }

.promessa-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promessa-video-wrapper { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 9/16; background: #000; }
.promessa-video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }

.promessa-highlight {
    padding: 36px 40px; display: flex; align-items: center; gap: 24px;
    background: linear-gradient(135deg, rgba(0, 229, 255, .06), rgba(59, 130, 246, .04)); border-color: rgba(0, 229, 255, .15);
}
.ph-icon { font-size: 2.8rem; flex-shrink: 0; }
.ph-content h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.5; }
.ph-content p { font-size: .9rem; color: var(--text-2); }

/* ══════════════════════════════════════
   GALERIA — GRID (Vídeos Horizontais)
   ══════════════════════════════════════ */
.galeria-section { position: relative; overflow: hidden; }
.galeria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.galeria-item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 9; background: #000; }
.galeria-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ══════════════════════════════════════
   EVENTO — TIMELINE
   ══════════════════════════════════════ */
.evento-section { overflow: hidden; }
.evento-timeline { position: relative; max-width: 600px; margin: 0 auto; padding-left: 48px; }
.timeline-line { position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent), var(--accent-2), transparent); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: -40px; top: 24px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--accent); background: var(--bg); display: flex; align-items: center; justify-content: center; }
.timeline-dot-inner { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.timeline-card { padding: 28px 32px; }
.timeline-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.tc-day { font-family: var(--font-h); font-size: .65rem; font-weight: 800; letter-spacing: 3px; color: var(--accent); padding: 4px 14px; border: 1px solid var(--accent-dim); border-radius: 50px; background: var(--accent-dim); }
.tc-date { font-family: var(--font-h); font-size: .8rem; font-weight: 600; color: var(--text-2); letter-spacing: 1px; }
.tc-time { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.tc-time svg { color: var(--accent); }
.timeline-card-body p { font-size: .9rem; color: var(--text-3); line-height: 1.6; }
.card-highlight { border-color: var(--neon-border-hover); }
.card-highlight .tc-day { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.tc-badge { display: inline-block; font-family: var(--font-h); font-size: .55rem; font-weight: 800; letter-spacing: 2px; color: var(--bg); padding: 4px 12px; background: var(--accent); border-radius: 50px; margin-top: 12px; }
.tc-glow { position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(0, 229, 255, .04); filter: blur(40px); pointer-events: none; }

/* ══════════════════════════════════════
   FORMAÇÃO — BENTO GRID
   ══════════════════════════════════════ */
.formacao-bento { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    grid-auto-rows: minmax(160px, auto); 
    gap: 20px; 
}
.formacao-item { 
    padding: 32px 28px; 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    text-align: left; 
}
.bento-large { 
    grid-column: span 2; 
    flex-direction: row; 
    align-items: center; 
    gap: 24px; 
}

/* ──> CLASSE CORRIGIDA PARA OCUPAR TUDO <── */
.bento-full { 
    grid-column: 1 / -1 !important; 
    flex-direction: row; 
    align-items: center; 
    gap: 24px; 
}

.fi-icon-wrap { 
    width: 60px; 
    height: 60px; 
    border-radius: 16px; 
    display: flex; 
    flex-shrink: 0; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(135deg, var(--accent-dim), transparent); 
    border: 1px solid var(--neon-border); 
    margin-bottom: 20px; 
}
.bento-large .fi-icon-wrap,
.bento-full .fi-icon-wrap { 
    margin-bottom: 0; 
    width: 72px; 
    height: 72px; 
    flex-shrink: 0;
}
.fi-icon-wrap span { font-size: 1.8rem; }
.fi-content h4 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.fi-content p { font-size: .85rem; color: var(--text-3); line-height: 1.5; }

/* ══════════════════════════════════════
   KIT INCLUSO — BENTO STYLE
   ══════════════════════════════════════ */
.incluso-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.incluso-item { padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.highlight-box { background: linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(0, 229, 255, 0.05)); border-top: 2px solid var(--accent); }
.incluso-icon { font-size: 2.4rem; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3)); }
.incluso-item h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.incluso-item p { font-size: .82rem; color: var(--text-3); }

/* ══════════════════════════════════════
   DIFERENCIAL — FOCUS EFFECT
   ══════════════════════════════════════ */
.diferencial-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 48px; }
.focus-list:hover .dif-item { opacity: 0.4; transform: scale(0.98); }
.focus-list .dif-item { transition: all 0.4s var(--ease); }
.focus-list .dif-item:hover { opacity: 1; transform: scale(1.02) translateX(10px); border-color: var(--accent); background: linear-gradient(90deg, var(--accent-dim), transparent); }
.dif-item { display: flex; align-items: center; gap: 16px; padding: 20px 28px; margin-bottom: 12px; }
.dif-check { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--accent-dim); border: 1px solid var(--neon-border); color: var(--accent); }
.dif-item span:last-child { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--text); }
.diferencial-footer { text-align: center; padding: 40px; background: linear-gradient(135deg, rgba(0, 229, 255, .05), rgba(59, 130, 246, .03)); border-color: rgba(0, 229, 255, .1); }
.accent-big { font-size: 1.5rem; margin-top: 8px; }
.accent-big strong { color: var(--accent); }

/* ══════════════════════════════════════
   PROFESSORES — VIP CARD
   ══════════════════════════════════════ */
.professor-card { display: flex; align-items: center; max-width: 850px; margin: 0 auto; padding: 0; overflow: hidden; background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)); }
.premium-badge::before { background: linear-gradient(135deg, var(--accent), transparent 60%); opacity: 0.3; }
.prof-img-wrap { position: relative; flex-shrink: 0; width: 280px; height: 360px; }
.prof-img { width: 100%; height: 100%; object-fit: cover; }
.prof-img-glow { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(15, 23, 42, 1) 100%); }
.prof-info { padding: 40px 48px 40px 20px; }
.prof-info h3 { font-family: var(--font-h); font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.prof-role { font-family: var(--font-h); font-size: .75rem; font-weight: 700; letter-spacing: 3px; color: var(--accent); text-transform: uppercase; margin-bottom: 20px; }
.prof-bio-divider { width: 50px; height: 3px; background: var(--grad); border-radius: 3px; margin-bottom: 20px; }
.prof-bio { font-size: .9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }

/* ══════════════════════════════════════
   PRECIFICAÇÃO — PREMIUM CARD
   ══════════════════════════════════════ */
.preco-section { overflow: hidden; }
.preco-glow-1 { position: absolute; width: 400px; height: 400px; top: -100px; left: 50%; transform: translateX(-50%); border-radius: 50%; filter: blur(120px); background: rgba(0, 229, 255, .05); pointer-events: none; opacity: 0.6; }
.preco-glow-2 { position: absolute; width: 300px; height: 300px; bottom: -50px; right: -50px; border-radius: 50%; filter: blur(100px); background: rgba(59, 130, 246, .04); pointer-events: none; opacity: 0.6; }
.preco-wrapper { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; max-width: 900px; margin: 0 auto; }
.preco-card { position: relative; border-radius: 20px; padding: 2px; background: linear-gradient(135deg, rgba(0, 229, 255, .3), rgba(59, 130, 246, .15), rgba(0, 229, 255, .05)); }
.preco-card-inner { background: var(--bg-surface); border-radius: 18px; padding: 48px 40px; text-align: center; }
.preco-header { margin-bottom: 32px; }
.preco-label { font-family: var(--font-h); font-size: .65rem; font-weight: 700; letter-spacing: 5px; color: var(--accent); display: block; margin-bottom: 16px; }
.preco-amount { display: flex; align-items: flex-start; justify-content: center; gap: 4px; }
.preco-currency { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text-3); margin-top: 12px; }
.preco-value { font-family: var(--font-h); font-size: 4rem; font-weight: 900; color: var(--accent); line-height: 1; text-shadow: 0 0 50px rgba(0, 229, 255, .25); }
.preco-cents { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--text-3); margin-top: 10px; }
.preco-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.preco-divider-line { flex: 1; height: 1px; background: rgba(255, 255, 255, .06); }
.preco-divider-text { font-family: var(--font-h); font-size: .6rem; font-weight: 700; letter-spacing: 3px; color: var(--text-3); }
.preco-options { margin-bottom: 28px; }
.preco-option { display: flex; align-items: center; gap: 16px; padding: 14px 20px; margin-bottom: 8px; background: rgba(255, 255, 255, .02); border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, .04); }
.po-icon { font-size: 1.4rem; }
.po-content { text-align: left; }
.po-content strong { font-size: .9rem; color: var(--text); display: block; }
.po-content span { font-size: .78rem; color: var(--text-3); }
.preco-special { padding: 20px; margin-bottom: 28px; background: var(--accent-dim); border-radius: var(--r-sm); border: 1px solid var(--neon-border); }
.ps-badge { font-family: var(--font-h); font-size: .6rem; font-weight: 800; letter-spacing: 3px; color: var(--accent); margin-bottom: 8px; }
.preco-special p { font-size: .85rem; color: var(--text-2); }
.preco-card-inner .btn-primary { animation: none; margin-bottom: 16px; }
.preco-garantia { font-size: .78rem; color: var(--text-3); }
.preco-side-info { display: flex; flex-direction: column; gap: 20px; }
.psi-item { text-align: center; padding: 24px 28px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--r-sm); backdrop-filter: blur(8px); }
.psi-number { font-family: var(--font-h); font-size: 2.2rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); line-height: 1; margin-bottom: 4px; }
.psi-item p { font-size: .78rem; color: var(--text-3); }

/* ══════════════════════════════════════
   PARA QUEM É — PILLS FLEXBOX
   ══════════════════════════════════════ */
.pq-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 48px; max-width: 900px; margin-inline: auto; }
.pq-pill { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; font-family: var(--font-h); font-size: .95rem; font-weight: 600; color: var(--text); transition: all 0.3s var(--ease); backdrop-filter: blur(8px); }
.pq-pill:hover { border-color: var(--accent); background: var(--accent-dim); transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1); }
.pq-emoji { font-size: 1.4rem; }
.pq-cta-text { text-align: center; }
.pq-cta-text p { font-size: 1.1rem; color: var(--text-3); margin-bottom: 6px; }
.pq-cta-text strong { color: var(--accent); }

/* ══════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════ */
.cta-section { padding: clamp(48px, 7vw, 80px) 0; text-align: center; }
.cta-bg-glow { position: absolute; width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; filter: blur(150px); background: radial-gradient(circle, rgba(0, 229, 255, .06) 0%, transparent 70%); pointer-events: none; opacity: 0.6; }
.cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-content .tag-line { margin-bottom: 40px; }
.cta-manifesto p { font-size: 1.1rem; color: var(--text-3); margin-bottom: 6px; }
.cta-power { padding: 32px; margin: 36px 0; background: linear-gradient(135deg, rgba(0, 229, 255, .06), rgba(59, 130, 246, .03)); }
.cta-power p { font-size: 1.05rem; color: var(--text-2); margin-bottom: 8px; }
.cta-power p:last-child { margin-bottom: 0; }
.cta-question { font-family: var(--font-h); font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 600; color: var(--text-2); margin-bottom: 16px; line-height: 1.5; }
.cta-big { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 48px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-big em { -webkit-text-fill-color: var(--text-3); }
.cta-vagas-wrap { margin-bottom: 24px; display: inline-block; }
.cta-vagas { display: inline-flex; align-items: center; gap: 16px; padding: 24px 40px; border-color: rgba(0, 229, 255, .2); background: linear-gradient(135deg, rgba(0, 229, 255, .08), rgba(59, 130, 246, .05)); }
.vagas-n { font-family: var(--font-h); font-size: 2.8rem; font-weight: 900; color: var(--accent); text-shadow: 0 0 30px var(--accent-glow); line-height: 1; }
.vagas-txt { font-size: .9rem; font-weight: 600; color: var(--text-2); text-align: left; line-height: 1.3; }
.cta-urgency { font-size: .95rem; color: var(--text-3); margin-bottom: 36px; }
.cta-section .btn-primary { animation: none; }

/* ══════════════════════════════════════
   FOOTER & WHATSAPP
   ══════════════════════════════════════ */
.footer { position: relative; z-index: 1; text-align: center; padding: 28px; border-top: 1px solid rgba(255, 255, 255, .04); }
.footer p { font-size: .75rem; color: var(--text-3); }

.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 9999; box-shadow: 0 4px 20px rgba(37, 211, 102, .4); transition: all .3s var(--ease); color: #fff; opacity: 0; transform: scale(.8); pointer-events: none; }
.whatsapp-float.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, .6); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
[data-anim] { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-anim].in { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px) } to { opacity: 1; transform: translateY(0) } }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width:1024px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-right { height: auto; order: -1; overflow: visible; }
    .hero-img-container { position: relative; }
    .hero-img { height: auto; object-fit: contain; object-position: center top; }
    .hero-gradient-overlay { display: none; }
    .hero-gradient-bottom { display: block; }
    .hero-left { padding: 0 28px 40px; }
    .hero-left-inner { max-width: 100%; text-align: center; }
    .hero-top-brand { justify-content: center; margin-bottom: 16px; }
    .hero-headline-desktop { display: none !important; }
    .hero-headline-mobile { display: block !important; text-align: center; font-size: 1.6rem; margin-bottom: 16px; line-height: 1.35; }
    .hero-headline-mobile .h-line { display: block; }
    .hero-headline-mobile .h-accent, .hero-headline-mobile .h-glow { display: inline; }
    .hero-headline-mobile .h-accent { color: var(--accent); }
    .hero-headline-mobile .h-glow { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-chips { justify-content: center; margin-bottom: 20px; }
    .hero-left .btn-primary { width: 100%; justify-content: center; }

    .promessa-layout { grid-template-columns: 1fr; }
    .promessa-videos { grid-template-columns: 1fr 1fr; max-width: 500px; margin: 0 auto; }
    
    .formacao-bento, .incluso-bento { grid-template-columns: 1fr 1fr; }
    .bento-large, .bento-full { grid-column: span 2; }
    
    .diferencial-layout { grid-template-columns: 1fr; gap: 40px; }
    .diferencial-left .section-title { text-align: center; }
    .tag-line-left { justify-content: center; }

    .professor-card { flex-direction: column; }
    .prof-img-wrap { width: 100%; height: 360px; border-radius: var(--r) var(--r) 0 0; }
    .prof-img-glow { background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 1) 100%); }
    .prof-info { padding: 28px; text-align: center; }
    .prof-bio-divider { margin: 0 auto 16px; }

    .preco-wrapper { grid-template-columns: 1fr; }
    .preco-side-info { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .psi-item { flex: 1; min-width: 120px; }
}

@media (max-width:640px) {
    .section { padding: clamp(32px, 5vw, 56px) 0; }
    .container { padding: 0 20px; }

    .hero-left { padding: 0 20px 28px; margin-top: -90px; position: relative; z-index: 3; }
    .hero-img { object-position: center top; }
    .hero-headline-mobile { font-size: 1.3rem; margin-bottom: 14px; }
    .hero-top-brand { margin-bottom: 12px; }
    .hero-chips { flex-direction: row; flex-wrap: wrap; justify-content: center; margin-bottom: 16px; gap: 8px; }
    .hero-chip { font-size: .75rem; padding: 8px 14px; }
    .brand-divider, .brand-tag { display: none; }

    .promessa-videos { gap: 12px; max-width: 100%; }
    .galeria-grid { grid-template-columns: 1fr; gap: 16px; }

    .formacao-bento, .incluso-bento { grid-template-columns: 1fr; }
    .bento-large, .bento-full { grid-column: span 1; flex-direction: column; text-align: center; align-items: center; }
    .bento-large .fi-icon-wrap, .bento-full .fi-icon-wrap { margin-bottom: 16px; }
    .formacao-item { text-align: center; align-items: center; }
    
    .preco-card-inner { padding: 36px 24px; }
    .preco-value { font-size: 3rem; }
    .preco-side-info { gap: 12px; }
    .psi-item { min-width: 100px; padding: 16px; }
    .psi-number { font-size: 1.6rem; }

    .promessa-highlight { flex-direction: column; text-align: center; padding: 28px; }
    .cta-vagas { flex-direction: column; gap: 8px; }
    .vagas-txt { text-align: center; }
    .btn-cta-final { width: 100%; justify-content: center; font-size: .88rem; padding: 18px 28px; }

    .timeline-card { padding: 16px 20px; }
    .evento-timeline { padding-left: 38px; }
    .timeline-dot { left: -34px; width: 14px; height: 14px; }
    .timeline-dot-inner { width: 5px; height: 5px; }
    .tc-badge { font-size: .5rem; padding: 3px 10px; margin-top: 8px; }
    
    .pq-pill { width: 100%; justify-content: center; }
}