/* ============================================
   YouTube Shorts depoimentos
   ============================================ */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 880px) { .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 540px) { .shorts-grid { grid-template-columns: 1fr 1fr; } }
.short-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.short-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 24px var(--accent-glow); }
.short-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
}
.short-frame iframe,
.short-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}
.short-frame .play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
  pointer-events: none;
}
.short-frame .play-btn svg { margin-left: 3px; }
.short-card { background: transparent; padding: 0; cursor: pointer; appearance: none; font: inherit; color: inherit; }
.short-card:hover .play-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 0 28px var(--accent-glow);
}

/* YouTube modal */
.yt-modal {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.yt-modal.open { display: flex; }
.yt-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.yt-modal-body {
  position: relative;
  width: min(420px, 100%);
  max-height: 90vh;
}
.yt-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 48px var(--accent-glow);
  border: 1px solid var(--accent);
}
.yt-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  z-index: 1;
}
.yt-fallback {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.yt-fallback:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.yt-modal-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.yt-modal-close:hover { background: var(--accent); color: #0a0a0a; transform: scale(1.05); }
@media (max-width: 540px) {
  .yt-modal { padding: 16px; }
  .yt-modal-close { top: -40px; }
}
  border: 0;
}

/* ============================================
   Exit-intent modal
   ============================================ */
.exit-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  flex-direction: row;
}
.exit-modal.is-open { display: flex; animation: exitFade .25s ease; }
.exit-modal-card { margin: auto; }
.exit-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 8, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.exit-modal-card {
  position: relative;
  width: 100%; max-width: 540px;
  background: linear-gradient(180deg, #1a1208, #110a05);
  border: 1px solid #d4a04a;
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(212, 160, 74, 0.25);
  text-align: center;
  animation: exitPop .35s cubic-bezier(.22,1.2,.36,1);
}
.exit-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text-dim);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.exit-modal-close:hover { background: rgba(255,255,255,.08); color: var(--text); }
.exit-modal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #e8b860;
  margin-bottom: 14px;
}
.exit-modal-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #e8b860;
  box-shadow: 0 0 12px rgba(232, 184, 96, 0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
.exit-modal-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}
.exit-modal-lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 24px;
}
.exit-modal-lead strong { color: #e8b860; font-weight: 600; }
.exit-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 12px;
  margin: 0 0 24px;
  background: rgba(232, 184, 96, 0.06);
  border: 1px solid rgba(232, 184, 96, 0.2);
  border-radius: 14px;
}
.exit-stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 22px);
  color: #e8b860;
  line-height: 1;
}
.btn-exit-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #25d366, #1eb558);
  color: #0a1408;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  line-height: 1.2;
}
.btn-exit-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }
.btn-exit-cta svg { flex-shrink: 0; }
.exit-stat .lbl {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.exit-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exit-modal-actions .btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 14px;
  padding: 10px 16px;
}
.exit-modal-actions .btn-ghost:hover { color: var(--text); border-color: var(--line-strong); }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes exitPop { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
@media (max-width: 540px) {
  .exit-modal-card { padding: 28px 20px 22px; }
  .exit-modal-stats { grid-template-columns: 1fr 1fr 1fr; padding: 12px 6px; }
  .exit-stat .num { font-size: 16px; }
  .exit-stat .lbl { font-size: 10px; }
}

/* ============================================
   IGEP 2026 — Tech Dark Theme
   ============================================ */

:root {
  --bg: #050a14;
  --bg-2: #0a1220;
  --surface: #0e1826;
  --surface-2: #111f31;
  --line: rgba(120, 165, 215, 0.12);
  --line-strong: rgba(120, 165, 215, 0.26);
  --text: #eef3fa;
  --text-dim: #a3b4ca;
  --text-muted: #647a96;
  --accent: #2E90E5;
  --accent-2: #1C6FC4;
  --accent-glow: rgba(46, 144, 229, 0.55);
  --warn: #ffb547;
  --danger: #ff5d5d;

  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --container: 1240px;

  --maxw: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; overflow-x: hidden; max-width: 100vw; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* Background grid + glow */
.bg-fx {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(circle 700px at 50% 200px, rgba(46,144,229,0.20), transparent 70%),
    radial-gradient(900px 500px at 90% 0%, rgba(28,111,196,0.10), transparent 60%);
}
.bg-fx::before { content: none; }

/* ============================================
   Layout
   ============================================ */
.container {
  width: var(--maxw);
  max-width: var(--container);
  margin: 0 auto;
}
section {
  position: relative;
  padding: 96px 0;
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
}

/* ============================================
   Type
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
}
h1, h2, h3, h4, h5 { font-weight: 700; }
h1 { font-size: clamp(40px, 6.2vw, 80px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: clamp(30px, 4.2vw, 54px); line-height: 1.08; letter-spacing: -0.025em; font-weight: 800; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.18; letter-spacing: -0.02em; }
h4 { font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -0.015em; }
p { margin: 0; color: var(--text-dim); }
.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 720px;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 1.3vw, 13px); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  padding: 9px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(46,144,229,0.08);
  white-space: nowrap;
  max-width: 100%;
}
.eyebrow::before { content: none; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  50% { opacity: 0.4; }
}

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px; letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

.grad-text {
  background: linear-gradient(180deg, #ffffff 0%, #c3d3e8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.accent-text { color: var(--accent); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn > * { position: relative; z-index: 2; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 1;
  transition: none;
}
.btn:hover::before {
  animation: btnShine .9s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes btnShine {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  100% { left: 130%; opacity: 0.4; }
}
/* Continuous gentle shine on primary CTAs */
.btn-primary::before,
.btn-arrow.btn-primary::before {
  animation: btnShineLoop 3.6s ease-in-out infinite;
}
.btn-primary:hover::before {
  animation: btnShine .8s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes btnShineLoop {
  0%, 60%, 100% { left: -60%; opacity: 0; }
  70%  { opacity: 0.7; }
  100% { left: 130%; opacity: 0; }
}
/* Ghost buttons get a tinted shine using accent color */
.btn-ghost::before {
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(46,144,229,0.0) 30%,
    rgba(46,144,229,0.35) 50%,
    rgba(46,144,229,0.0) 70%,
    transparent 100%);
}
/* WhatsApp button shine in WA green */
.btn-whatsapp::before {
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(37,211,102,0.0) 30%,
    rgba(37,211,102,0.45) 50%,
    rgba(37,211,102,0.0) 70%,
    transparent 100%);
}
.btn-whatsapp:hover::before {
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.0) 70%,
    transparent 100%);
}
@media (prefers-reduced-motion: reduce) {
  .btn::before { display: none !important; animation: none !important; }
}
.btn-primary {
  background: linear-gradient(180deg, #4AA6F0, var(--accent-2));
  color: #ffffff;
  box-shadow: 0 12px 40px -8px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); background: #4AA6F0; box-shadow: 0 18px 50px -10px var(--accent-glow); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); }

/* WhatsApp button */
.btn-whatsapp {
  background: rgba(37,211,102,0.10);
  color: #25D366;
  border-color: rgba(37,211,102,0.4);
  width: 100%;
  margin-top: 8px;
  gap: 10px;
}
.btn-whatsapp:hover {
  background: #25D366;
  color: #062416;
  border-color: #25D366;
  box-shadow: 0 14px 38px -10px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}
.btn-whatsapp svg { flex-shrink: 0; }

/* ============================================
   Lead capture modal
   ============================================ */
.lead-modal {
  position: fixed; inset: 0;
  display: none;
  align-items: flex-start; justify-content: center;
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.lead-modal-backdrop { position: fixed; }
.lead-modal.open { display: flex; animation: leadFadeIn .25s ease; }
@keyframes leadFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lead-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 8, 6, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lead-modal-card {
  position: relative;
  margin: auto;
  width: 100%; max-width: 480px;
  background: linear-gradient(180deg, #0f1612, #0a0f0c);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(46,144,229,0.08), 0 0 60px -20px var(--accent-glow);
  animation: leadSlideIn .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes leadSlideIn { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.lead-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .15s ease;
}
.lead-modal-close:hover { color: var(--text); border-color: var(--line-strong); background: rgba(255,255,255,0.08); }
.lead-modal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.lead-modal-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
.lead-modal-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.1;
}
.lead-modal-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.5;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field span {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.lead-field input, .lead-field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.lead-field textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.lead-field em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--text-muted); font-weight: 500; }
.lead-extra { display: flex; flex-direction: column; gap: 14px; }
.lead-extra[hidden] { display: none; }
.lead-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lead-chip { position: relative; }
.lead-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.lead-chip span {
  display: block; cursor: pointer;
  padding: 8px 13px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0; text-transform: none;
  color: var(--text-muted);
  transition: all .15s ease;
}
.lead-chip span:hover { border-color: rgba(46,144,229,0.5); color: var(--text); }
.lead-chip input:checked + span {
  background: rgba(46,144,229,0.16);
  border-color: var(--accent);
  color: #cfe9ff;
}
.lead-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(46,144,229,0.3); }
.lead-chips.invalid { outline: 1px solid rgba(255,90,90,0.6); outline-offset: 6px; border-radius: 12px; }
.lead-field input::placeholder, .lead-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.lead-field input:focus, .lead-field textarea:focus {
  border-color: var(--accent);
  background: rgba(46,144,229,0.04);
  box-shadow: 0 0 0 4px rgba(46,144,229,0.12);
}
.lead-submit { margin-top: 6px; justify-content: center; }
.lead-disclaimer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  text-align: center;
  margin: 8px 0 0 !important;
}
@media (max-width: 640px) {
  .lead-modal { padding: 0; align-items: stretch; }
  .lead-modal-card {
    padding: 26px 18px calc(20px + env(safe-area-inset-bottom));
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    margin: auto 0 0;
    min-height: min(92vh, 100%);
  }
  .lead-modal-card h3 { font-size: 25px; }
  .lead-modal-card p { font-size: 14px; }
  .lead-form { gap: 12px; }
  .lead-field span { font-size: 12px; }
  .lead-field input, .lead-field textarea { font-size: 16px; padding: 13px 14px; }
  .lead-field textarea { min-height: 76px; }
  .lead-chips { gap: 7px; }
  .lead-chip span { padding: 9px 12px; font-size: 12.5px; }
  .lead-modal-close { top: 12px; right: 12px; }
  .lead-submit { position: sticky; bottom: 0; margin-top: 10px; }
  .lead-disclaimer { margin-bottom: 0 !important; }
}
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 9, 10, 0.6);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(1.15) drop-shadow(0 0 14px rgba(46,144,229,0.18));
}
.footer .brand-logo { height: 24px; }

/* ============================================
   Sticky topbar (countdown + vagas)
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(14,10,7,0.82);
  border-bottom: 1px solid var(--line);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  padding: 10px 0 12px;
}
.topbar-left {
  display: flex; flex-direction: column; gap: 6px;
  min-width: 0;
  justify-self: start;
}
.topbar-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; color: var(--text);
  white-space: nowrap;
}
.topbar-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
.topbar-progress {
  width: 100%;
  max-width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.topbar-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 4px;
  box-shadow: 0 0 16px var(--accent-glow);
}
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  background:
    linear-gradient(180deg, rgba(8,28,20,0.92), rgba(10,22,16,0.92)),
    linear-gradient(90deg, rgba(46,144,229,0.06), rgba(46,144,229,0.0) 60%);
  border-bottom: 1px solid rgba(46,144,229,0.22);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.6), inset 0 -1px 0 rgba(46,144,229,0.06);
}
.topbar-message {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.08em;
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent-glow);
  padding: 12px 0;
}
.topbar-message .msg { white-space: nowrap; }
.topbar-message .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@media (max-width: 560px) {
  .topbar-message { font-size: 14px; gap: 10px; letter-spacing: 0.05em; padding: 10px 0; }
  .topbar-message .msg { white-space: normal; text-align: center; }
}
.topbar-countdown {
  display: none;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  justify-self: center;
  padding: 6px 10px;
  background: linear-gradient(180deg, rgba(46,144,229,0.10), rgba(46,144,229,0.02));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 0 24px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.04);
}
.tb-cell {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 0;
  color: var(--text);
  padding: 4px 12px;
  min-width: 64px;
}
.tb-cell .v {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 24px var(--accent-glow);
}
.tb-cell .l {
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.tb-sep {
  display: flex; align-items: center;
  color: var(--accent); font-size: 22px;
  opacity: .6; font-weight: 300;
  padding-bottom: 14px;
}
.topbar-row > .btn-primary { justify-self: end; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

@media (max-width: 880px) {
  .topbar-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "counter cta"
      "progress progress";
    gap: 8px 12px;
    padding: 10px 0 10px;
  }
  .topbar-countdown { grid-area: counter; justify-self: start; gap: 4px; padding: 5px 8px; }
  .topbar-row > .btn-primary { grid-area: cta; }
  .topbar-left { grid-area: progress; flex-direction: column; gap: 4px; align-items: stretch; width: 100%; }
  .topbar-progress { max-width: 100%; }
  .topbar-status { font-size: 12px; }
  .tb-cell { padding: 3px 8px; min-width: 56px; }
  .tb-cell .v { font-size: 22px; }
  .tb-cell .l { font-size: 9px; margin-top: 3px; }
  .tb-sep { font-size: 18px; padding-bottom: 12px; }
}

/* Push body content below sticky topbar */
main { padding-top: 0; }

/* Hero logo */
.hero-logo {
  width: clamp(340px, 44vw, 640px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(46,144,229,0.3));
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 44px;
}
.hero-logo-wrap .hero-horizon {
  position: relative;
  inset: auto;
  left: auto; right: auto; bottom: auto;
  width: min(560px, 82%);
  height: 1px;
  margin-top: 10px;
  filter: none;
  background: linear-gradient(90deg, transparent 0%, rgba(46,144,229,0.15) 12%, rgba(120,200,255,0.9) 50%, rgba(46,144,229,0.15) 88%, transparent 100%);
}
.hero-logo-wrap .hero-horizon::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 46%; height: 5px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: rgba(120,200,255,0.55);
  filter: blur(7px);
}
.hero-logo-wrap .hero-horizon .cosmic-glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: #cfe9ff;
  box-shadow: 0 0 14px 3px rgba(120,200,255,0.7);
  border-radius: 2px;
}
@media (max-width: 880px) {
  .hero { padding-top: 80px !important; }
  .hero-top { margin-bottom: 24px !important; }
  .hero-logo { width: clamp(240px, 76vw, 400px); }
  .hero-logo-wrap { margin-bottom: 30px; margin-top: 16px; }
  .hero-logo-wrap .hero-horizon { margin-top: 6px; width: 72%; }
}
.nav-links { display: flex; gap: 28px; align-items: center; font-size: 14px; color: var(--text-dim); }
.nav-links a:hover { color: var(--accent); }
@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero { padding: 112px 0 96px; position: relative; }

/* ============================================
   Cosmic parallax background (hero)
   ============================================ */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(46,144,229,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(46,144,229,0.08) 0%, transparent 60%);
}
body { position: relative; }
.hero, section, .marquee, footer { position: relative; z-index: 1; }
.hero > .container { position: relative; z-index: 2; }
.hero-horizon {
  position: absolute;
  left: -10%; right: -10%; bottom: -180px;
  height: 320px;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(46,144,229,0.45) 0%, rgba(46,144,229,0.14) 35%, transparent 65%);
  filter: blur(2px);
  z-index: 0;
}

.cosmic-stars {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 1px;
  background: transparent;
  border-radius: 50%;
  animation: cosmicStarRise 50s linear infinite;
}
.cosmic-stars::after {
  content: "";
  position: absolute;
  top: 2000px;
  width: inherit; height: inherit;
  background: inherit;
  border-radius: inherit;
  box-shadow: inherit;
}
.cosmic-stars--sm { width: 1px; height: 1px; animation-duration: 60s; opacity: 0.55; }
.cosmic-stars--md { width: 2px; height: 2px; animation-duration: 110s; opacity: 0.7; }
.cosmic-stars--lg { width: 3px; height: 3px; animation-duration: 170s; opacity: 0.85; }

@keyframes cosmicStarRise {
  from { transform: translateY(0); }
  to   { transform: translateY(-2000px); }
}

.cosmic-glow {
  position: absolute;
  left: 50%; bottom: 0;
  width: 70%; height: 6px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #2E90E5 50%, transparent);
  box-shadow: 0 0 80px 20px rgba(46,144,229,0.55);
  border-radius: 50%;
}
@media (prefers-reduced-motion: reduce) {
  .cosmic-stars { animation: none; }
}
.hero-top { margin-bottom: 56px; }
.hero-headline {
  margin-top: 22px;
  font-size: clamp(32px, 4.6vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.br-m { display: inline; }
.br-d { display: none; }
@media (min-width: 880px) {
  .br-m { display: none; }
  .br-d { display: inline; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  gap: 32px;
  align-items: start;
}
.hero-grid .lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero-grid .hero-meta,
.hero-grid .hero-ctas { justify-content: center; }
.hero-top { text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-top .hero-headline { text-align: center; }

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}
.hero h1 { font-weight: 800; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 28px; margin-bottom: 32px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
}
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.hero-video {
  width: 100%;
  max-width: 720px;
  margin: 4px auto 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #070d18;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(46,144,229,0.08);
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #8aa394);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-stat .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Countdown card */
.countdown-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20,30,25,0.75), rgba(10,15,12,0.75));
  border: 1px solid var(--line-strong);
  overflow: hidden;
  isolation: isolate;
}
.countdown-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 100% -10%, rgba(46,144,229,0.18), transparent 60%);
  z-index: -1;
}
.countdown-card::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,144,229,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,144,229,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -1;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
}
.countdown-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.countdown-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.countdown-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
.countdown-title {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
}
.countdown-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.countdown-cell {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}
.countdown-cell .v {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 24px rgba(46,144,229,0.25);
}
.countdown-cell .l {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.countdown-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.progress-track {
  height: 4px; flex: 1; margin: 0 16px;
  background: rgba(255,255,255,0.06); border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 4px;
  box-shadow: 0 0 14px var(--accent-glow);
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(46,144,229,0.04), transparent);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  color: var(--text);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track svg { color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   Sections / cards
   ============================================ */
.section-head { margin-bottom: 56px; max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 14px; font-size: clamp(28px, 4vw, 52px); }
.section-head p { margin-top: 18px; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.55; color: var(--text-dim); }

.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line-strong); }
.card .num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em;
  color: var(--text-muted);
}
.card h4 { margin-top: 14px; margin-bottom: 10px; }
.card p { font-size: 14px; }

/* Problems / wrong section */
.split-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 880px) {
  .split-2 { grid-template-columns: 1fr; gap: 32px; }
}
.split-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.split-head h2 { font-size: clamp(26px, 3.4vw, 44px); }
.problem-list {
  display: flex; flex-direction: column; gap: 14px; margin-top: 24px;
  padding: 0; list-style: none;
}
.problem-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(255,93,93,0.04);
  border: 1px solid rgba(255,93,93,0.18);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
}
.problem-list li svg {
  color: var(--danger);
  width: 18px; height: 18px; flex-shrink: 0;
}
.solution-list {
  display: flex; flex-direction: column; gap: 14px; margin-top: 24px;
  padding: 0; list-style: none;
}
.solution-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: rgba(46,144,229,0.05);
  border: 1px solid rgba(46,144,229,0.20);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
}
.solution-list li svg {
  color: var(--accent);
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ============================================
   Pillars (4 cards)
   ============================================ */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: linear-gradient(180deg, var(--surface), rgba(15,20,18,0.4));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: border-color .25s ease, transform .25s ease;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pillar .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(46,144,229,0.08);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.pillar .icon svg { width: 22px; height: 22px; }
.pillar h4 { font-size: 18px; margin-bottom: 10px; }
.pillar p { font-size: 14px; }

/* For-whom 4 cards numbered */
.audience {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .audience { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .audience { grid-template-columns: 1fr; } }
.audience-card {
  background: linear-gradient(180deg, var(--surface), rgba(15,20,18,0.6));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.audience-card .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(180deg, var(--accent), transparent 110%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.audience-card p { font-size: 15.5px; color: var(--text); font-weight: 500; }
.pillar h4 { font-size: 20px; margin-bottom: 10px; color: #fff; font-weight: 600; }
.section-cta { display: flex; justify-content: center; margin-top: 48px; }
@media (max-width: 720px) { .section-cta { margin-top: 36px; } .section-cta .btn { width: 100%; justify-content: center; } }

/* ============================================
   Schedule — 3 colunas (cronograma)
   ============================================ */
.schedule-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .schedule-cols { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
.schedule-col {
  background: linear-gradient(180deg, rgba(20,32,52,0.5), rgba(8,14,24,0.5));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.schedule-col-head {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #4AA6F0, var(--accent-2));
  border-radius: 12px;
  padding: 16px 12px;
  box-shadow: 0 10px 30px -12px var(--accent-glow);
}

.sch-item {
  background: linear-gradient(180deg, rgba(12,22,38,0.9), rgba(8,14,24,0.9));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.sch-item[open] { border-color: var(--accent); }
.sch-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "tag plus" "title plus";
  align-items: center;
  gap: 6px 12px;
}
.sch-item summary::-webkit-details-marker { display: none; }
.sch-item .tag {
  grid-area: tag;
  justify-self: start;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #4AA6F0, var(--accent-2));
  border-radius: 7px;
  padding: 4px 10px;
}
.sch-title {
  grid-area: title;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}
.sch-plus {
  grid-area: plus;
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  align-self: center;
}
.sch-plus::before, .sch-plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.sch-plus::before { top: 50%; left: 2px; right: 2px; height: 2px; transform: translateY(-50%); }
.sch-plus::after { left: 50%; top: 2px; bottom: 2px; width: 2px; transform: translateX(-50%); }
.sch-item[open] .sch-plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.sch-item p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ============================================
   Mentors
   ============================================ */
.mentors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) { .mentors { grid-template-columns: 1fr; } }
.mentor {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.mentor-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #13243a, #0a1220);
  position: relative;
  overflow: hidden;
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .6s ease;
}
.mentor:hover .mentor-photo img { transform: scale(1.03); }
.mentor-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8,5,3,0.85) 100%);
  pointer-events: none;
}
.mentor-body { padding: 32px; }
.mentor-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.mentor-body h3 { font-size: 28px; margin-bottom: 10px; }
.mentor-role {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.mentor-bio { font-size: 14px; line-height: 1.65; }
.mentor-bio p + p { margin-top: 14px; }
.mentor-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mentor-stats .num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.mentor-stats .lab {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   Tickets
   ============================================ */
.tickets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px) { .tickets { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* Differentiated ticket tones */
.ticket-tone-1 {
  background: linear-gradient(180deg, #0b1320, #06090f) !important;
}
.ticket-tone-2 {
  background: linear-gradient(180deg, #112236, #0a1420) !important;
}
.ticket-tone-3 {
  background: linear-gradient(180deg, #18304d, #0f1d30) !important;
}

/* Trust badges row */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px 56px;
  margin-top: 56px;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(46,144,229,0.04), rgba(46,144,229,0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.trust-badge svg {
  width: 36px; height: 36px;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.trust-badge div { display: flex; flex-direction: column; line-height: 1.15; }
.trust-badge strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.trust-badge span {
  font-size: 14px;
  color: var(--text-dim);
}
@media (max-width: 720px) {
  .trust-badges { gap: 20px; padding: 22px 18px; flex-direction: column; align-items: flex-start; margin-top: 40px; }
  .trust-badge { width: 100%; }
}

.ticket {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.ticket.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 30px 80px -30px var(--accent-glow);
}
.ticket.featured::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 220px at 50% -20%, rgba(46,144,229,0.18), transparent 70%);
  pointer-events: none;
}
.ticket-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}
.tickets-header {
  display: flex; justify-content: center; margin-bottom: 32px;
}
.tickets-banner {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 26px;
  background:
    radial-gradient(circle at 0% 50%, rgba(46,144,229,0.20), transparent 70%),
    linear-gradient(180deg, rgba(20,30,25,0.85), rgba(8,14,11,0.85));
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  box-shadow: 0 0 40px -10px var(--accent-glow);
}
.tickets-banner .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent-glow);
  animation: pulse 1.4s ease-in-out infinite;
}
.ticket-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: #fff;
}
.ticket-batch {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ef4444, #c81e1e);
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 24px -8px rgba(239,68,68,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  margin-bottom: 28px;
}
.ticket-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.ticket-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-dim);
  line-height: 1.5;
}
.ticket-features li svg {
  color: var(--accent);
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ticket-price-block {
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  margin-bottom: 22px;
}
.ticket-installments {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.ticket-installments small {
  font-size: 14px; color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}
.ticket-cash {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.ticket-cash strong { color: var(--accent); font-weight: 600; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  list-style: none;
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px; color: var(--accent);
  transition: transform .2s ease;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  position: relative;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20,30,25,0.9), rgba(8,14,11,0.9));
  border: 1px solid var(--line-strong);
  padding: 64px 56px;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(46,144,229,0.18), transparent 60%),
    radial-gradient(800px 400px at 50% 100%, rgba(46,144,229,0.10), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner p { position: relative; margin: 18px auto 32px; max-width: 600px; }
.cta-banner .btn { position: relative; }

/* ============================================
   Location
   ============================================ */
.location {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 32px; align-items: stretch;
}
@media (max-width: 880px) { .location { grid-template-columns: 1fr; } }
.location-map {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  background: #070d18;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: invert(0.9) hue-rotate(160deg) saturate(0.7) brightness(0.95);
  position: absolute; inset: 0;
}
.location-map::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,15,12,0.5) 100%);
  pointer-events: none;
}
.location-map .map-pin-overlay {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  display: grid; place-items: center;
}
.location-map .map-pin-overlay .ring {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(46,144,229,0.45);
  position: absolute;
  animation: ring-pulse 3s ease-out infinite;
}
.location-map .map-pin-overlay .ring:nth-child(2) { animation-delay: 1s; width: 130px; height: 130px; }
.location-map .map-pin-overlay .ring:nth-child(3) { animation-delay: 2s; width: 170px; height: 170px; }
.location-map .map-pin-overlay .core {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #ffffff;
  box-shadow: 0 0 40px var(--accent-glow);
  position: relative;
  z-index: 1;
}
.location-map .map-pin-overlay .core svg { width: 22px; height: 22px; }
.location-art {
  background: linear-gradient(135deg, #0c1626, #070d18);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.location-art::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,144,229,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,144,229,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 80%);
}
.location-pin {
  position: relative;
  display: grid; place-items: center;
  text-align: center;
}
.location-pin .ring {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: absolute;
  animation: ring-pulse 3s ease-out infinite;
}
.location-pin .ring:nth-child(2) { animation-delay: 1s; width: 240px; height: 240px; }
.location-pin .ring:nth-child(3) { animation-delay: 2s; width: 300px; height: 300px; }
@keyframes ring-pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.location-pin .core {
  position: relative;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #ffffff;
  box-shadow: 0 0 60px var(--accent-glow);
}
.location-pin .core svg { width: 28px; height: 28px; }
.location-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.location-info .kicker { margin-bottom: 16px; }
.location-info h3 { font-size: 32px; margin-bottom: 10px; }
.location-info .addr {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.location-info .schedule {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.location-info .schedule-head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(46,144,229,0.07);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.location-info .schedule-head svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.location-info .schedule-days {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.location-info .schedule-days .sday {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 8px;
  gap: 4px;
}
.location-info .schedule-days .sday + .sday {
  border-left: 1px solid var(--line);
}
.location-info .schedule-days .sday .sday-num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.location-info .schedule-days .sday .sday-lab {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 48px;
}
.footer .row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.footer p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================
   Variant: light density
   ============================================ */
body.compact section { padding: 64px 0; }
body.compact .hero { padding: 36px 0 64px; }

/* ============================================
   Mobile fixes
   ============================================ */
@media (max-width: 720px) {
  :root { --maxw: min(1240px, calc(100vw - 32px)); }
  section { padding: 56px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-top { margin-bottom: 36px; }
  .hero-grid { gap: 36px; }

  h1 { font-size: clamp(36px, 9vw, 56px); }
  h2 { font-size: clamp(28px, 7.5vw, 42px); }
  h3 { font-size: clamp(20px, 5vw, 26px); }

  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 24px; margin-top: 36px; }
  .hero-stats .hero-stat:last-child { grid-column: 1 / -1; }
  .hero-meta { gap: 8px; }
  .chip { padding: 8px 12px; font-size: 11px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .countdown-card { padding: 22px; }
  .countdown-grid { gap: 6px; }
  .countdown-cell { padding: 14px 6px; }
  .countdown-cell .v { font-size: clamp(24px, 7vw, 34px); }
  .countdown-cell .l { font-size: 9px; letter-spacing: 0.1em; }

  .nav-row { padding: 12px 0; }
  .brand-logo { height: 24px; }

  .ticket { padding: 24px; }
  .mentor-body { padding: 24px; }
  .schedule-item { padding: 22px; }
  .pillar { padding: 22px; }
  .audience-card { padding: 26px 20px; }

  .schedule-tabs { width: 100%; }
  .schedule-tab { flex: 1; text-align: center; padding: 10px 12px; font-size: 11px; }
}

@media (max-width: 420px) {
  .countdown-grid { grid-template-columns: repeat(4, 1fr); }
  .countdown-cell { padding: 12px 4px; }
}

/* ============================================
   Mobile polish (sales page)
   ============================================ */
@media (max-width: 600px) {
  section { padding: 48px 0; }
  .hero { padding: 64px 0 44px !important; }
  h1 { font-size: clamp(28px, 8.4vw, 40px) !important; line-height: 1.12 !important; }
  .hero-headline { font-size: clamp(23px, 6.6vw, 32px) !important; line-height: 1.18 !important; }
  h2 { font-size: clamp(24px, 7vw, 34px) !important; line-height: 1.15 !important; }
  .lead { font-size: 16px !important; line-height: 1.55; }
  .eyebrow { font-size: 10px; padding: 8px 14px; letter-spacing: 0.08em; }
  .section-head { margin-bottom: 32px; }

  /* full-width CTAs everywhere */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 16px 22px; font-size: 15px; }

  /* tickets buttons full width + spacing */
  .ticket { padding: 22px; }
  .ticket .btn { width: 100%; justify-content: center; }
  .tickets-banner { font-size: 11px; letter-spacing: 0.12em; padding: 12px 18px; text-align: center; }

  /* schedule columns */
  .schedule-col { padding: 14px; }
  .schedule-col-head { font-size: 13px; padding: 13px 10px; }
  .sch-title { font-size: 16px; }
  .sch-item summary { padding: 15px; }

  /* mentors */
  .mentor-photo { aspect-ratio: 3/4; }
  .mentor-body { padding: 22px; }
  .mentor-body h3 { font-size: 24px; }
  .mentor-stats { gap: 8px; }
  .mentor-stats .num { font-size: 18px; }

  /* proof gallery */
  .proof { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* shorts */
  .shorts-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* problem/solution lists */
  .problem-list li, .solution-list li { padding: 14px 16px; font-size: 14px; }

  /* faq */
  .faq-item summary { padding: 18px 18px; font-size: 15px; }

  /* location info */
  .location-info { padding: 26px 20px; }
  .location-map { min-height: 280px; }

  /* trust badges */
  .trust-badges { margin-top: 32px; }

  /* cta banner */
  .cta-banner { padding: 40px 22px; }
}

@media (max-width: 380px) {
  h1 { font-size: 26px !important; }
  .hero-headline { font-size: 21px !important; }
  .hero-logo { width: 78vw; }
}

/* ============================================
   Galleries / proof
   ============================================ */
.proof {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}
@media (max-width: 880px) { .proof { grid-template-columns: repeat(3, 1fr); } }
.proof .ph {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0c1626, #070d18);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.proof .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.proof .ph:hover img { transform: scale(1.05); }
  position: relative;
  overflow: hidden;
}
.proof .ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,144,229,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,144,229,0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 90%);
}
.proof .ph::before {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
}

.lead-field .req{color:#ff7a7a;font-style:normal;font-weight:800;margin-left:1px}
.lead-field input.invalid,.lead-field textarea.invalid{border-color:rgba(255,90,90,0.75);box-shadow:0 0 0 3px rgba(255,90,90,0.14)}

.lead-field span.lead-error,.lead-field .lead-error{display:block;margin-top:6px;font-size:12.5px;font-weight:600;color:#ff8a8a;letter-spacing:0;text-transform:none}

.location-info .schedule + .schedule{margin-top:14px}
.sch-vagas{font-style:normal;font-family:var(--font-body);font-weight:700;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);background:rgba(46,144,229,.12);border:1px solid rgba(46,144,229,.35);border-radius:999px;padding:3px 9px;margin-left:8px}
.location-info .schedule-head span{display:flex;align-items:center;flex-wrap:wrap;gap:2px}

.chip-turma{padding:8px 14px 8px 8px;gap:10px;border-color:rgba(46,144,229,.4);background:linear-gradient(180deg,rgba(46,144,229,.1),rgba(46,144,229,.04))}
.chip-turma b{font-family:var(--font-display);font-weight:700;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:#0a1626;background:linear-gradient(180deg,#7CC5F7,#2E90E5);border-radius:8px;padding:6px 10px;line-height:1}
.chip-turma i{font-style:normal;font-weight:700;font-size:10.5px;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);border:1px solid rgba(46,144,229,.4);border-radius:999px;padding:4px 9px;line-height:1}
@media(max-width:880px){.chip-turma{width:100%;justify-content:flex-start}.chip-turma i{margin-left:auto}}

.top-alert{position:fixed;top:0;left:0;right:0;z-index:300;background:linear-gradient(180deg,#D93A3A,#B32424);color:#fff;font-family:var(--font-display);font-weight:700;font-size:13px;letter-spacing:.08em;text-transform:uppercase;text-align:center;padding:10px 16px;box-shadow:0 6px 22px -8px rgba(217,58,58,.6)}
body{padding-top:41px}
@media(max-width:640px){.top-alert{font-size:11px;padding:9px 12px}body{padding-top:35px}}

.chip-local{border-color:rgba(180,140,60,.45);background:linear-gradient(180deg,rgba(212,164,76,.12),rgba(212,164,76,.04))}
.chip-local b{background:linear-gradient(180deg,#EFC97A,#D4A44C);color:#241703}
.chip-local svg{color:#E7BC64}
.chip-local i{color:#E7BC64;border-color:rgba(212,164,76,.5)}
