/* =========================================================================
   BOOTCAMP EXECUTIVO DE FUNDING IMOBILIÁRIO · TURMA 3
   Terracotta — dark editorial · v3
   ========================================================================= */

/* ── Design tokens ─────────────────────────────────────────────────────── */
:root {
  /* brand */
  --accent: #C8522A;
  --accent-hover: #e96a40;
  --accent-soft: rgba(200, 82, 42, 0.10);
  --accent-outline: rgba(200, 82, 42, 0.32);

  /* dark surface */
  --bg: #050506;
  --bg-alt: #0d0d10;
  --bg-card: #121215;

  /* text */
  --text: #f3f0eb;
  --text-2: rgba(243, 240, 235, 0.84);
  --text-3: rgba(243, 240, 235, 0.62);
  --text-4: rgba(243, 240, 235, 0.42);

  /* light surface (para sections invertidas) */
  --light-bg: #f6f3ee;
  --light-text: #1a1814;
  --light-text-2: #4a4540;
  --light-text-3: #8a847d;
  --light-border: #e3ddd5;

  /* lines */
  --line-1: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.22);

  /* radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* shadows */
  --shadow-card: 0 18px 40px -16px rgba(0, 0, 0, 0.55);

  /* type */
  --font-display: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* containers */
  --max-w: 1240px;
  --max-w-narrow: 880px;
  --pad: 24px;
}

/* ── Reset + base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── Containers & typography utilities ────────────────────────────────── */
.section {
  position: relative;
  padding: 96px 0;
  background: var(--bg);
  color: var(--text);
}
.section.light {
  background: var(--light-bg);
  color: var(--light-text);
}
.section.alt { background: var(--bg-alt); }

.sectionInner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.sectionInner.narrow { max-width: var(--max-w-narrow); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section.light .eyebrow { color: var(--accent); }

.h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: inherit;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: inherit;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 400;
}
.section.light .lead { color: var(--light-text-2); }
.muted { color: var(--text-3); }
.section.light .muted { color: var(--light-text-3); }
.accent { color: var(--accent); }

@media (min-width: 768px) {
  .section { padding: 104px 0; }
  .h2 { font-size: 52px; }
  .h3 { font-size: 26px; }
}
@media (min-width: 1024px) {
  .section { padding: 112px 0; }
  .h2 { font-size: 62px; letter-spacing: -0.03em; }
}

/* ── Grain overlay ─────────────────────────────────────────────────────── */
.grainOverlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Navbar sticky ─────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  width: 100%;
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-1);
}
.navInner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navLogo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.navLogo img { height: 22px; width: auto; }
.navLogoBootcamp img {
  height: 36px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .navLogoBootcamp img { height: 30px; }
}
.navLogo span small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 2px;
}
.navLinks {
  display: none;
  gap: 28px;
  font-size: 14px;
  color: var(--text-2);
}
.navLinks a { transition: color 160ms; }
.navLinks a:hover { color: var(--accent); }
.navCta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  transition: background 160ms, transform 160ms;
}
.navCta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.navCta svg { width: 14px; height: 14px; }
@media (min-width: 880px) {
  .navLinks { display: flex; }
}

/* =========================================================================
   §1 HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.heroBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(200, 82, 42, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(59, 95, 173, 0.10) 0%, transparent 50%),
    linear-gradient(to bottom, #0a0a0c 0%, var(--bg) 100%);
}
.heroBgGrid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 60%, transparent 90%);
  mask-image: radial-gradient(ellipse at 70% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 60%, transparent 90%);
}
.heroInner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.heroContent { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
.heroHeadline {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
  max-width: 16ch;
}
.heroHeadline em { font-style: normal; color: var(--accent); }
.heroSub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
}
.heroCta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 160ms, transform 160ms;
  box-shadow: 0 12px 32px -8px rgba(200, 82, 42, 0.4);
}
.heroCta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.heroCta svg { width: 16px; height: 16px; }

.heroCredentials {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: flex-start;
  padding-top: 28px;
  border-top: 1px solid var(--line-1);
}
.heroCredentialGroup {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.heroCredLabel {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}
.heroCredLogo {
  display: block;
}
.heroCredLogoTerracotta {
  height: 22px;
  width: auto;
}
.heroCredCub {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.heroCredCubText {
  display: inline-block;
  font-family: 'Archivo Black', 'Inter Tight', system-ui, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
  text-transform: none;
}

.heroRight { display: none; position: relative; min-height: 480px; align-self: stretch; }

@media (min-width: 768px) {
  .heroHeadline { font-size: 60px; }
  .heroSub { font-size: 19px; max-width: 60ch; }
}
@media (min-width: 1024px) {
  .hero { padding: 72px 0 96px; }
  .heroInner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 56px; align-items: center; }
  .heroHeadline { font-size: 60px; }
  .heroRight { display: block; align-self: center; }
}
@media (min-width: 1280px) {
  .heroHeadline { font-size: 68px; }
}

/* ── Hero mentor variants ──────────────────────────────────────────────── */
.mVariant { display: none; width: 100%; }
.root[data-hero="cardgrid"]      .mVariant.mCardGrid     { display: grid; }
.root[data-hero="row"]           .mVariant.mRow          { display: flex; }
.root[data-hero="constellation"] .mVariant.mConstellation { display: block; }
.root[data-hero="magazine"]       .mVariant.mMagazine     { display: grid; }
.root[data-hero="filmstrip"]      .mVariant.mFilmstrip    { display: flex; }
.root[data-hero="list"]           .mVariant.mList         { display: flex; }
.root[data-hero="orbit"]          .mVariant.mOrbit        { display: block; }
.root[data-hero="hex"]            .mVariant.mHex          { display: block; }
.root[data-hero="mosaic"]         .mVariant.mMosaic       { display: grid; }
.root[data-hero="team"]           .mVariant.mTeam         { display: flex; }

/* ════ J · Card Grid – 3×2 aulaCard grid ════════════════════════════════ */
.mCardGrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  align-items: start;
}
.mCardGrid .aulaCard {
  height: 280px;
  cursor: default;
}
.mCardGrid .aulaCard:hover {
  transform: none;
  border-color: var(--line-1);
  box-shadow: none;
}

/* ════ I · Row – horizontal mentor strip ════════════════════════════════ */
.mRow {
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
.mrCard {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.mrPhoto {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-card);
  flex-shrink: 0;
}
.mrPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.mrCard[data-host="true"] .mrPhoto {
  box-shadow: 0 0 0 1.5px var(--accent), 0 10px 20px -4px rgba(200,82,42,0.28);
}
.mrName {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mrRole {
  font-size: 9px;
  color: rgba(255,255,255,0.48);
  font-weight: 400;
  line-height: 1.3;
  margin-top: -2px;
}

/* ════ H · Team group photo ═════════════════════════════════════════════ */
.mTeam {
  flex-direction: column;
  width: 100%;
  position: relative;
}

/* frame · grounds the cutouts em vez de "voarem" no fundo */
.mtFrame {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 75% 80% at 50% 70%, rgba(200, 82, 42, 0.14) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  padding: 28px 14px 0;
}
@media (min-width: 1024px) {
  .mtFrame { padding: 36px 18px 0; }
}
.mtFrame::before { display: none; }
.mtPhoto {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  z-index: 2;
  display: block;
}
.mtPhoto img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.55));
}
.mtCaption {
  position: relative;
  z-index: 1;
  padding: 56px 24px 20px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--line-1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}
.mtKicker {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
}
.mtTitle {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.1; color: var(--text);
}
.mtRoster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-top: 4px;
  text-align: left;
}
.mtRoster span {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 500;
  color: var(--text-2); letter-spacing: -0.005em;
}
.mtRoster i {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: block; font-style: normal;
}
.mtRoster em {
  font-style: normal; color: var(--text-3); font-weight: 400; font-size: 11px;
}

/* ════ E · Orbit ════════════════════════════════════════════════════════ */
.mOrbit {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.moRings { position: absolute; inset: 0; width: 100%; height: 100%; animation: moSpin 60s linear infinite; pointer-events: none; }
@keyframes moSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .moRings { animation: none; } }

.moHost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
}
.moHostPh {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(200,82,42,0.18), 0 18px 48px -8px rgba(0,0,0,0.78);
}
.moHostPh img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.moHostTag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); padding: 4px 10px; border: 1px solid var(--accent-outline);
  border-radius: 100px; background: rgba(200,82,42,0.12);
}
.moHostName {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--text); letter-spacing: -0.005em;
}
.moNode {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 3;
  transition: transform 240ms;
}
.moNode:hover { transform: translate(-50%, -50%) scale(1.06); z-index: 5; }
.moPh {
  width: 72px; height: 72px; border-radius: 50%;
  overflow: hidden; background: var(--bg-card);
  border: 1.5px solid var(--line-2);
  box-shadow: 0 10px 26px -6px rgba(0,0,0,0.6);
  transition: border-color 240ms;
}
.moPh img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.moNode:hover .moPh { border-color: var(--accent); }
.moName {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  color: var(--text); text-align: center; line-height: 1.2; letter-spacing: -0.005em;
  max-width: 90px;
}
.moName small {
  display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-3); font-weight: 600; margin-top: 2px;
}
.moNode[data-pos="1"] { top: 14%; left: 50%; }
.moNode[data-pos="2"] { top: 34%; left: 88%; }
.moNode[data-pos="3"] { top: 78%; left: 80%; }
.moNode[data-pos="4"] { top: 88%; left: 32%; }
.moNode[data-pos="5"] { top: 46%; left: 10%; }

/* ════ F · Honeycomb ══════════════════════════════════════════════════════ */
.mHex {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.mhGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 0;
}
.mhCell {
  position: relative;
  aspect-ratio: 1 / 1.155;
  margin: 0 -2px;
  transition: transform 280ms;
}
.mhCell:nth-child(odd):not(.mhHost) { margin-top: 44px; }
.mhCell:nth-child(even):not(.mhHost) { margin-top: 0; }
.mhHost { grid-column: 2; grid-row: 1; margin-top: 0 !important; transform: scale(1.06); }
.mhCell:nth-child(2) { grid-column: 1; grid-row: 1; }
.mhCell:nth-child(3) { grid-column: 3; grid-row: 1; }
.mhCell:nth-child(4) { grid-column: 1; grid-row: 2; margin-top: -50px; }
.mhCell:nth-child(5) { grid-column: 2; grid-row: 2; margin-top: -50px; }
.mhCell:nth-child(6) { grid-column: 3; grid-row: 2; margin-top: -50px; }
.mhCell:hover { z-index: 5; transform: scale(1.05); }
.mhHost:hover { transform: scale(1.1); }
.mhCellInner {
  position: absolute; inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  background: var(--bg-card);
}
.mhCell.mhHost .mhCellInner {
  background: linear-gradient(135deg, #1a0d08, #0c0809);
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.mhCellInner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: brightness(0.96);
}
.mhLabel {
  position: absolute; left: 0; right: 0; bottom: 14%;
  text-align: center; padding: 0 12%;
  pointer-events: none;
}
.mhLabel strong {
  display: block;
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  color: #fff; letter-spacing: -0.005em; line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.mhLabel span {
  display: block;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 700; margin-top: 2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}
.mhHost .mhLabel strong { font-size: 13px; }
.mhHost .mhLabel span { color: var(--accent); }

/* ════ G · Mosaic ═══════════════════════════════════════════════════════ */
.mMosaic {
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1.1;
  margin: 0 auto;
}
.mxHost {
  grid-column: 1 / span 4;
  grid-row: 1 / span 4;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
}
.mxHost img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.mxHost::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,6,0.95) 0%, rgba(5,5,6,0.4) 45%, transparent 70%);
}
.mxHostOverlay {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.mxHostKicker {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.mxHostName {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.mxHostRole { font-size: 11px; color: var(--text-2); }

.mxTile {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  transition: transform 240ms, border-color 240ms;
}
.mxTile:hover { transform: translateY(-2px); border-color: var(--accent); }
.mxTile img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.mxTile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent 55%);
}
.mxLabel {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  z-index: 2;
  display: flex; flex-direction: column;
}
.mxLabel strong {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  color: #fff; line-height: 1.1; letter-spacing: -0.005em;
}
.mxLabel em {
  font-style: normal;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 700; margin-top: 2px;
}
.mxTile[data-tile="1"] { grid-column: 5 / span 2; grid-row: 1 / span 2; }
.mxTile[data-tile="2"] { grid-column: 5 / span 2; grid-row: 3 / span 2; }
.mxTile[data-tile="3"] { grid-column: 1 / span 2; grid-row: 5 / span 2; }
.mxTile[data-tile="4"] { grid-column: 3 / span 2; grid-row: 5 / span 2; }
.mxTile[data-tile="5"] { grid-column: 5 / span 2; grid-row: 5 / span 2; }

/* — Constellation (default) — */
.mConstellation {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.mcSvg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.mcSvg line { stroke: rgba(200, 82, 42, 0.32); stroke-width: 1; stroke-dasharray: 3 5; }
.mcNode {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.mcAvatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  border: 1.5px solid var(--line-2);
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.6);
  transition: transform 240ms, border-color 240ms;
}
.mcAvatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.mcNode:hover .mcAvatar { transform: scale(1.08); border-color: var(--accent); }
.mcName {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  max-width: 110px;
  letter-spacing: -0.005em;
}
.mcRole {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  max-width: 120px;
  text-align: center;
  line-height: 1.3;
  margin-top: -4px;
}
.mcNode[data-host="true"] .mcAvatar {
  width: 134px;
  height: 134px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(200, 82, 42, 0.16), 0 16px 40px -8px rgba(0, 0, 0, 0.75);
}
.mcNode[data-host="true"] .mcName { font-size: 14px; font-weight: 600; }
.mcNode[data-host="true"] .mcRole { color: var(--accent); }
.mcNode[data-pos="host"]   { top: 50%; left: 50%; }
.mcNode[data-pos="o1"]     { top: 12%; left: 50%; }
.mcNode[data-pos="o2"]     { top: 30%; left: 90%; }
.mcNode[data-pos="o3"]     { top: 78%; left: 86%; }
.mcNode[data-pos="o4"]     { top: 92%; left: 30%; }
.mcNode[data-pos="o5"]     { top: 50%; left: 8%; }

/* — Magazine — */
.mMagazine {
  grid-template-rows: 1fr auto;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  overflow: hidden;
}
.mmHero { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.mmHero img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.mmHero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,6,0.4) 0%, transparent 30%, transparent 55%, rgba(5,5,6,0.92) 100%);
}
.mmMast {
  position: absolute; top: 18px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: flex-start; z-index: 2;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.mmMast small { display: block; color: var(--accent); font-size: 9px; letter-spacing: 0.2em; margin-top: 2px; font-weight: 700; }
.mmMast .r { color: rgba(255,255,255,0.55); text-align: right; }
.mmName { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; }
.mmName .l { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.mmName h3 { font-family: var(--font-display); font-size: 38px; font-weight: 600; line-height: 0.95; letter-spacing: -0.025em; margin-bottom: 6px; color: #fff; }
.mmName p { font-size: 12px; color: var(--text-2); }
.mmStrip { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-1); }
.mmItem { padding: 12px 8px 10px; border-right: 1px solid var(--line-1); text-align: center; background: rgba(0,0,0,0.2); transition: background 220ms; }
.mmItem:last-child { border-right: 0; }
.mmItem:hover { background: var(--accent-soft); }
.mmItem .ph { width: 38px; height: 38px; border-radius: 50%; margin: 0 auto 8px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--line-2); }
.mmItem .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.mmItem strong { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 500; color: var(--text); line-height: 1.15; letter-spacing: -0.005em; }
.mmItem span { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-top: 2px; font-weight: 500; }

/* — Filmstrip — */
.mFilmstrip { flex-direction: column; gap: 0; width: 100%; max-width: 420px; margin: 0 auto; }
.mfsLabel {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-3); padding-bottom: 10px;
}
.mfsLabel strong { color: var(--accent); font-weight: 700; }
.mfsRoll {
  position: relative;
  background: var(--bg-card);
  border-radius: 4px;
  padding: 18px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.mfsRoll::before, .mfsRoll::after {
  content: ""; position: absolute; top: 8px; bottom: 8px; width: 12px;
  background-image: radial-gradient(circle at center, var(--bg) 4px, transparent 5px);
  background-size: 12px 22px; background-repeat: repeat-y;
}
.mfsRoll::before { left: 6px; }
.mfsRoll::after { right: 6px; }
.mfsFrame {
  display: grid; grid-template-columns: 28px 80px 1fr; gap: 14px; align-items: center;
  padding: 6px 4px; border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.mfsFrame:last-child { border-bottom: 0; }
.mfsNo { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--text-3); font-variant-numeric: tabular-nums; }
.mfsPh { width: 80px; height: 60px; background: var(--bg-alt); overflow: hidden; }
.mfsPh img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: contrast(1.05) brightness(0.95); }
.mfsFrame[data-host="true"] .mfsPh { outline: 2px solid var(--accent); outline-offset: 1px; }
.mfsInfo strong { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.2; letter-spacing: -0.005em; }
.mfsInfo span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 500; }
.mfsFrame[data-host="true"] .mfsInfo strong { color: var(--accent); }

/* — List — */
.mList {
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0) 100%);
  overflow: hidden;
}
.mListHead {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 22px 14px; border-bottom: 1px solid var(--line-1);
}
.mListHead span { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-3); }
.mListHead .badge { color: var(--accent); font-weight: 700; letter-spacing: 0.14em; }
.mListRow {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  padding: 12px 22px; border-bottom: 1px solid var(--line-1); transition: background 200ms;
}
.mListRow:last-child { border-bottom: 0; }
.mListRow:hover { background: var(--accent-soft); }
.mListRow[data-host="true"] { background: linear-gradient(90deg, var(--accent-soft) 0%, transparent 80%); }
.mListPh { width: 56px; height: 70px; border-radius: var(--r-sm); overflow: hidden; background: var(--bg-card); }
.mListPh img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.mListInfo strong { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.2; letter-spacing: -0.01em; }
.mListInfo span { font-size: 11.5px; color: var(--text-3); font-weight: 500; }
.mListTag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding: 4px 8px; border: 1px solid var(--accent-outline); border-radius: 4px;
}

@media (max-width: 1023px) { .heroRight { display: none; } }

/* =========================================================================
   §2 BARRA DE LOGÍSTICA
   ========================================================================= */
.logistics {
  background: var(--bg-alt);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 28px 0;
}
.logisticsRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.logisticsItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
  position: relative;
}
.logisticsItem .label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3);
}
.logisticsIc {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.logisticsItem .value {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500; color: var(--text);
  letter-spacing: -0.01em; line-height: 1.25;
}
.logisticsItem .value small {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0;
  color: var(--text-3); text-transform: none;
  margin-left: 6px;
}
@media (min-width: 768px) {
  .logisticsRow {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .logisticsItem { padding: 0 22px; }
  .logisticsItem + .logisticsItem { border-left: 1px solid var(--line-1); }
}

/* =========================================================================
   §3 CARDS — O PROGRAMA + BENEFÍCIOS · LIGHT SECTION
   inverte a paleta pra ritmo dark → light → dark entre seções
   ========================================================================= */
.programCards {
  background: var(--light-bg);
  color: var(--light-text);
  --bg: var(--light-bg);
  --bg-alt: #ede9e0;
  --bg-card: #ffffff;
  --text: var(--light-text);
  --text-2: var(--light-text-2);
  --text-3: var(--light-text-3);
  --text-4: rgba(26, 24, 20, 0.42);
  --line-1: rgba(26, 24, 20, 0.10);
  --line-2: rgba(26, 24, 20, 0.18);
  --line-3: rgba(26, 24, 20, 0.28);
  --accent-soft: rgba(200, 82, 42, 0.08);
  --accent-outline: rgba(200, 82, 42, 0.28);
}
.programCards .h2 { color: var(--light-text); }
.programCards .eyebrow { color: var(--accent); }
.programCards .pcCard { box-shadow: 0 1px 0 rgba(26, 24, 20, 0.04), 0 8px 24px rgba(26, 24, 20, 0.04); }
.programCards .pcCard h3 { color: var(--light-text); }
.programCards .pcItem strong { color: var(--light-text); }
.programCards .pcItem p { color: var(--light-text-2); }

.programCards .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .programCards .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.pcCard {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 220ms, transform 220ms;
}
.pcCard:hover { border-color: var(--accent-outline); transform: translateY(-2px); }
.pcCard h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.pcCard h3::before {
  content: attr(data-tag);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-outline);
  border-radius: 4px;
  padding: 3px 8px;
  position: relative;
  top: -2px;
}
.pcList { display: flex; flex-direction: column; gap: 18px; }
.pcItem { display: grid; grid-template-columns: 28px 1fr; gap: 14px; }
.pcItem .ic {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.pcItem .ic svg { width: 14px; height: 14px; }
.pcItem strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.pcItem p { font-size: 14px; line-height: 1.55; color: var(--text-3); }

/* =========================================================================
   §4 AGITAÇÃO DA DOR
   ========================================================================= */
.agitation {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.agitationBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}
.agitationBg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.agitationBg .agitDraw {
  fill: none;
  stroke: url(#agitGrad);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: agitDraw 14s ease-out infinite;
}
.agitationBg .agitBuild  { stroke-width: 0.6; animation-delay: 0s; }
.agitationBg .agitAccent { stroke-width: 0.5; animation-delay: 1.8s; }
.agitationBg .agitWindows {
  stroke-width: 0.35;
  stroke-linecap: butt;
  animation-delay: 2.6s;
}
@keyframes agitDraw {
  0%   { stroke-dashoffset: 1; opacity: 0; }
  6%   { opacity: 1; }
  55%  { stroke-dashoffset: 0; opacity: 1; }
  85%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.agitation .sectionInner { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .agitationBg .agitDraw { animation: none; stroke-dashoffset: 0; opacity: 0.6; }
}
.agitation .sectionInner { max-width: 760px; }
.agitation .sectionInner.agitationLayout {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}
@media (min-width: 1024px) {
  .agitation .sectionInner.agitationLayout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 64px;
  }
}
.agitationCopy { display: flex; flex-direction: column; }
.agitationCopy .eyebrow {
  text-align: left;
  margin: 0 0 18px;
  align-self: flex-start;
}
.agitationMedia {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-1);
  background: var(--bg-card);
  isolation: isolate;
}
.agitationMedia img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.5) contrast(1.05) brightness(0.7);
  transition: transform 600ms ease;
}
.agitationMedia::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(200, 82, 42, 0.20) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.10) 0%, rgba(5, 5, 6, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.agitationMediaCaption {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 5, 6, 0.72);
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
@media (max-width: 768px) {
  .agitation .sectionInner.agitationLayout { gap: 24px; }
  .agitationMedia { aspect-ratio: 3 / 2; }
}
.agitation .hook {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
  margin-bottom: 36px;
  color: var(--text);
}
.agitation .hook em {
  font-style: normal;
  color: var(--accent);
}
.agitation p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.agitation p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .agitation .hook { font-size: 42px; }
  .agitation p { font-size: 19px; }
}

/* =========================================================================
   §5 VIRADA + DADOS DE MERCADO · LIGHT SECTION
   inverte a paleta dark → light, mesmo padrão de §3
   ========================================================================= */
.marketData {
  text-align: center;
  background: var(--light-bg);
  color: var(--light-text);
  --bg: var(--light-bg);
  --bg-alt: #ede9e0;
  --bg-card: #ffffff;
  --text: var(--light-text);
  --text-2: var(--light-text-2);
  --text-3: var(--light-text-3);
  --text-4: rgba(26, 24, 20, 0.42);
  --line-1: rgba(26, 24, 20, 0.10);
  --line-2: rgba(26, 24, 20, 0.18);
  --line-3: rgba(26, 24, 20, 0.28);
  --accent-soft: rgba(200, 82, 42, 0.08);
  --accent-outline: rgba(200, 82, 42, 0.28);
}
.marketData .h2 { color: var(--light-text); }
.marketData .eyebrow { color: var(--accent); }
.marketData .stat { box-shadow: 0 1px 0 rgba(26, 24, 20, 0.04), 0 8px 24px rgba(26, 24, 20, 0.04); }
.marketData .stat .lbl { color: var(--light-text-3); }
.marketData .closer .pull { color: var(--light-text); }
.marketData .head { max-width: 760px; margin: 0 auto 56px; }
.marketData .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 auto 56px;
  max-width: var(--max-w-narrow);
  align-items: stretch;
}
.marketData .stat {
  text-align: center;
  padding: 24px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  /* reveal-from-side state */
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 600ms cubic-bezier(0.22, 0.68, 0.2, 1),
    transform 600ms cubic-bezier(0.22, 0.68, 0.2, 1),
    border-color 220ms;
}
.marketData .stats.is-visible .stat {
  opacity: 1;
  transform: translateX(0);
}
.marketData .stats.is-visible .stat:nth-child(1) { transition-delay: 0ms,   0ms,   0ms; }
.marketData .stats.is-visible .stat:nth-child(2) { transition-delay: 220ms, 220ms, 0ms; }
.marketData .stats.is-visible .stat:nth-child(3) { transition-delay: 440ms, 440ms, 0ms; }
.marketData .stats.is-visible .stat:nth-child(4) { transition-delay: 660ms, 660ms, 0ms; }
.marketData .stat:hover {
  border-color: var(--accent-outline);
}
@media (prefers-reduced-motion: reduce) {
  .marketData .stat { opacity: 1; transform: none; transition: none; }
}
.statIc {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 4px;
}
.statIc svg { width: 18px; height: 18px; }
.marketData .stat .n {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.marketData .stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.3;
}
.marketData .closer {
  max-width: 760px;
  margin: 0 auto;
}
.marketData .closer .pull {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
  margin-top: 36px;
}
.marketData .closer .pull em { font-style: normal; color: var(--accent); }
.closerCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 160ms, transform 160ms, box-shadow 160ms;
  box-shadow: 0 10px 28px rgba(200, 82, 42, 0.22);
}
.closerCta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(200, 82, 42, 0.28);
}
.closerCta svg { width: 16px; height: 16px; }
.authCtaWrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.authBrunoCta {
  align-self: flex-start;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .marketData .stats { grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .marketData .stat { padding: 32px 22px; }
  .marketData .stat .n { font-size: 46px; }
  .marketData .closer .pull { font-size: 30px; }
  .closerCta { font-size: 16px; padding: 18px 32px; }
}

/* =========================================================================
   §6 AUTORIDADE — TERRACOTTA + BRUNO
   ========================================================================= */
/* ── §6a TURMA · colagem de fotos · LIGHT SECTION ────────────────────── */
.turmaCollage {
  background: var(--light-bg);
  color: var(--light-text);
  --bg: var(--light-bg);
  --bg-alt: #ede9e0;
  --bg-card: #ffffff;
  --text: var(--light-text);
  --text-2: var(--light-text-2);
  --text-3: var(--light-text-3);
  --text-4: rgba(26, 24, 20, 0.42);
  --line-1: rgba(26, 24, 20, 0.10);
  --line-2: rgba(26, 24, 20, 0.18);
  --line-3: rgba(26, 24, 20, 0.28);
  --accent-soft: rgba(200, 82, 42, 0.08);
  --accent-outline: rgba(200, 82, 42, 0.28);
}
.turmaCollage .h2 { color: var(--light-text); }
.turmaCollage .eyebrow { color: var(--accent); }
.turmaCollage .head { max-width: 760px; margin-bottom: 40px; }

/* Bento grid · aspect-ratio das fotos guia o layout
   turma-1 landscape (col span 2, row short)
   turma-2 portrait (col 3, span 2 rows tall)
   turma-3 portrait (col 1, row 2)
   turma-4 portrait (col 2, row 2) */
.turmaGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 480px;
  gap: 14px;
}
@media (max-width: 768px) {
  .turmaGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 280px 280px;
    gap: 10px;
  }
}
.turmaCell {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  position: relative;
  isolation: isolate;
}
.turmaCell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 600ms cubic-bezier(0.22, 0.68, 0.2, 1);
}
.turmaCell:hover img { transform: scale(1.04); }

@media (min-width: 769px) {
  /* turma-1 landscape · top-left wide */
  .turmaCell:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  /* turma-2 bruno portrait · right column full height */
  .turmaCell:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 3; }
  /* turma-3 portrait · bottom-left */
  .turmaCell:nth-child(3) { grid-column: 1 / 2; grid-row: 2; }
  /* turma-4 portrait · bottom-middle */
  .turmaCell:nth-child(4) { grid-column: 2 / 3; grid-row: 2; }
}
@media (max-width: 768px) {
  /* mobile: turma-1 wide on top, then 3 cells below in 2 rows */
  .turmaCell:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .turmaCell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .turmaCell:nth-child(3) { grid-column: 2; grid-row: 2; }
  .turmaCell:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
}

.authority {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.authority .sectionInner { position: relative; z-index: 2; }
.authorityBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.authorityBg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.6) brightness(0.55) contrast(1.05);
  opacity: 0.32;
  -webkit-mask-image: radial-gradient(ellipse 65% 80% at 70% 40%, #000 0%, rgba(0,0,0,0.55) 35%, transparent 80%);
          mask-image: radial-gradient(ellipse 65% 80% at 70% 40%, #000 0%, rgba(0,0,0,0.55) 35%, transparent 80%);
}
.authorityBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,6,0.85) 0%, rgba(5,5,6,0.55) 40%, rgba(5,5,6,0.55) 60%, rgba(5,5,6,0.92) 100%),
    linear-gradient(90deg, rgba(5,5,6,0.95) 0%, rgba(5,5,6,0.55) 35%, rgba(5,5,6,0.20) 70%, rgba(5,5,6,0.65) 100%);
}
.authorityBgTag {
  position: absolute;
  z-index: 1;
  bottom: 14px;
  right: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(5, 5, 6, 0.7);
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.authority .quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
  margin-bottom: 24px;
  max-width: 28ch;
}
.authority .quote em { font-style: normal; color: var(--accent); font-weight: 600; }
.authority .copy {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  display: flex; flex-direction: column; gap: 16px;
}

/* mobile-only bullets pra primeiro paragrafo · evita wall of text */
.authority .copy .onlyMobile { display: none; }
.authority .copy .hideMobile { display: block; }
@media (max-width: 768px) {
  .authority .copy .hideMobile { display: none; }
  .authority .copy .onlyMobile { display: block; }
  .authority .copy .authBullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .authority .copy .authBullets li {
    position: relative;
    padding-left: 20px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--text-2);
  }
  .authority .copy .authBullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 1px;
    background: var(--accent);
  }
}
.authHead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.authHeadCopy { display: flex; flex-direction: column; gap: 0; }
@media (min-width: 1024px) {
  .authHead {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: end;
  }
}

/* Media highlight card */
.authMedia {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.authMediaCard {
  position: relative;
  padding: 24px 26px 18px;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}
.authMediaSlider {
  position: relative;
  min-height: 168px;
}
.authMediaSlide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.4, 0, 0.2, 1), transform 520ms cubic-bezier(0.4, 0, 0.2, 1);
}
.authMediaSlide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.authMediaBrand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-1);
}
.authMediaLogo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.authMediaLogo em {
  font-style: normal;
  font-weight: 800;
  color: var(--accent);
}
.authMediaKicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.authMediaHeadline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--text);
  text-wrap: balance;
}
.authMediaHeadline em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.authMediaDots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-1);
}
.authMediaDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--text-4);
  cursor: pointer;
  transition: background 220ms, transform 220ms, width 320ms;
}
.authMediaDot.is-active {
  background: var(--accent);
  width: 18px;
  border-radius: 100px;
}
.authMediaDot:hover { background: var(--text-2); }
.authMediaDot.is-active:hover { background: var(--accent); }
.authNums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 48px;
}
.authNum {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  transition: border-color 220ms, transform 220ms;
}
.authNum:hover {
  border-color: var(--accent-outline);
  transform: translateY(-2px);
}
.authNumIc {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 8px;
  color: var(--accent);
}
.authNumIc svg { width: 18px; height: 18px; }
.authNum .n {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--accent);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.authNum .lbl {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.4;
}
.authLogos {
  display: none; /* legacy, replaced by .ecoLogos */
}

/* ── Authority testimonials · 3 cards abaixo dos numeros ───────────────── */
.authTestimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 8px 0 40px;
}
@media (min-width: 768px) {
  .authTestimonials { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.authTestimonials .tCard {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.authTestimonials .qmark {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  font-weight: 700;
}
.authTestimonials blockquote {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  flex: 1;
}
.authTestimonials .tMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-1);
  padding-top: 14px;
  font-size: 13px;
}
.authTestimonials .tAvatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 36px;
  background: var(--bg-alt);
}
.authTestimonials .tAvatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.authTestimonials .tName {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 13.5px;
}
.authTestimonials .tRole {
  display: block;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0.01em;
}

/* ── Ecosystem logos marquee ───────────────────────────────────────────── */
.ecoLogos {
  margin-top: 24px;
  margin-bottom: 56px;
  padding: 32px 0;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.ecoLabel {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-4);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
.ecoMarquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* contain visually with edge fades */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ecoTrack {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: ecoScroll 36s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.ecoMarquee:hover .ecoTrack { animation-play-state: paused; }
.ecoLogo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 130px;
  opacity: 0.92;
  transition: opacity 200ms;
}
.ecoLogo:hover { opacity: 1; }
.ecoLogo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ecoLogo[data-size="sm"] img { max-height: 78%; max-width: 78%; }

@keyframes ecoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* mantemos o marquee rodando mesmo com reduced-motion · movimento lento+linear, não vestibular */
@media (min-width: 768px) {
  .ecoLogo { height: 40px; width: 144px; }
  .ecoTrack { gap: 68px; }
}
@media (max-width: 768px) {
  .ecoTrack {
    animation: ecoScroll 26s linear infinite !important;
    gap: 48px;
  }
  .ecoMarquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

/* §6d · Bruno · light section · standalone */
.brunoSection {
  background: var(--light-bg);
  color: var(--light-text);
  --bg: var(--light-bg);
  --bg-alt: #ede9e0;
  --bg-card: #ffffff;
  --text: var(--light-text);
  --text-2: var(--light-text-2);
  --text-3: var(--light-text-3);
  --line-1: rgba(26, 24, 20, 0.10);
  --line-2: rgba(26, 24, 20, 0.18);
  --line-3: rgba(26, 24, 20, 0.28);
  --accent-soft: rgba(200, 82, 42, 0.08);
  --accent-outline: rgba(200, 82, 42, 0.28);
}
.brunoSection .brunoSplit {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  align-items: end;
}
.brunoSection .brunoName { color: var(--light-text); }
.brunoSection .brunoBio { color: var(--light-text-2); }
.brunoSection .brunoPhotoCutout {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  max-width: 420px;
  margin-inline: auto;
}
.brunoSection .brunoPhotoCutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(26, 24, 20, 0.18));
}

.brunoSplit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 16px;
  padding-top: 56px;
  border-top: 1px solid var(--line-1);
}
.brunoPhoto {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 380px;
}
.brunoPhoto img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.brunoContent { display: flex; flex-direction: column; gap: 18px; max-width: 60ch; }
.brunoName {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.brunoRole {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.brunoBio { font-size: 15px; line-height: 1.65; color: var(--text-2); }

@media (min-width: 768px) {
  .authority .quote { font-size: 34px; }
  .authNums { grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0; }
  .authNum { padding: 28px 24px; gap: 16px; }
  .authNum .n { font-size: 44px; }
}
@media (min-width: 1024px) {
  .brunoSplit { grid-template-columns: 0.7fr 1fr; gap: 48px; align-items: start; }
  .authority .quote { font-size: 42px; }
}

/* =========================================================================
   §7 PROFESSORES CONVIDADOS
   ========================================================================= */
.teachers { background: var(--bg-alt); }
.teachers .head { max-width: 720px; margin-bottom: 56px; }

/* ── Teachers continuous marquee · 10 mentores em loop infinito ────────── */
.teachersMarquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-inline: calc(var(--pad) * -1);
  padding-block: 4px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.teachersTrack {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  padding: 4px var(--pad);
  animation: teachersScroll 80s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}
.teachersMarquee:hover .teachersTrack { animation-play-state: paused; }
.teachersTrack .teacherCard {
  flex: 0 0 240px;
  width: 240px;
}
@keyframes teachersScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 768px) {
  .teachersTrack {
    animation-duration: 60s;
    gap: 12px;
  }
  .teachersTrack .teacherCard { flex: 0 0 200px; width: 200px; }
}
.teachersGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .teachersGrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .teachersGrid { grid-template-columns: repeat(5, 1fr); gap: 14px; } }
.teacherCard {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms, transform 240ms;
}
.teacherCard:hover { border-color: var(--accent-outline); transform: translateY(-2px); }
.teacherPhoto {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
}
.teacherPhoto img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  filter: contrast(1.02);
}
.teacherInfo {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line-1);
}
.teacherName {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}
.teacherName .first {
  color: var(--text);
  font-size: 22px;
}
.teacherName .last {
  color: var(--accent);
  font-size: 22px;
}
.teacherRole {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin: 2px 0 6px;
  font-style: normal;
}
.teacherRole strong {
  color: var(--text-2);
  font-weight: 600;
}
.teacherBio {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-3);
  font-weight: 400;
}
@media (min-width: 1024px) {
  .teacherName .first, .teacherName .last { font-size: 21px; }
  .teacherInfo { padding: 16px 16px 20px; }
  .teacherBio { font-size: 12.5px; }
}

/* =========================================================================
   §8 DEPOIMENTOS
   ========================================================================= */
.testimonialsSec .eyebrow { color: var(--accent); }
.testimonialsSec .head { max-width: 640px; margin-bottom: 56px; }
.testimonialsGrid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonialsGrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonialsGrid { grid-template-columns: 1fr 1fr 1fr; } }
.tCard {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 220ms, transform 220ms;
}
.tCard:hover { border-color: var(--accent-outline); transform: translateY(-2px); }
.tCard .qmark {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: -8px;
}
.tCard blockquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  flex: 1;
}
.tMeta { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line-1); }
.tAvatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.tAvatar img { width: 100%; height: 100%; object-fit: cover; }
.tName { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text); display: block; line-height: 1.2; }
.tRole { font-size: 11px; color: var(--text-3); }

/* =========================================================================
   §9 ENTREGÁVEIS
   ========================================================================= */
.deliverables { background: var(--bg-alt); }
.deliverables .head { max-width: 680px; margin-bottom: 56px; }
.delMain { display: flex; flex-direction: column; gap: 28px; }
.delCard {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: border-color 220ms, transform 220ms;
}
.delCard:not(.delImersao):hover { border-color: var(--accent-outline); transform: translateY(-2px); }

/* split layout · imagem + copy lado-a-lado, alternando direção */
.delCardSplit {
  padding: 24px;
  grid-template-columns: 1fr;
  gap: 20px;
  overflow: hidden;
  align-items: center;
}
@media (min-width: 768px) {
  .delCardSplit { grid-template-columns: minmax(0, 220px) 1fr; gap: 32px; padding: 28px; }
  .delCardSplit--reverse { grid-template-columns: 1fr minmax(0, 220px); }
  .delCardSplit--reverse .delCardMedia { order: 2; }
}
@media (min-width: 1024px) {
  .delCardSplit { grid-template-columns: minmax(0, 260px) 1fr; gap: 40px; padding: 32px; }
  .delCardSplit--reverse { grid-template-columns: 1fr minmax(0, 260px); }
}
.delCardMedia {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--line-1);
}
@media (min-width: 768px) {
  .delCardMedia { aspect-ratio: 4 / 5; }
}
.delCardMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.delCardCopy {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .delCardCopy { justify-content: center; }
}
.delCardCopy .delHead { margin-bottom: 2px; }
.delCardCopy .delBody { margin: 0; }

.delCardSubCta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--accent-outline);
  border-radius: 999px;
  background: rgba(200, 82, 42, 0.06);
  transition: background 180ms ease, border-color 180ms ease, gap 200ms ease, color 180ms ease;
  margin-top: -2px;
  margin-bottom: 6px;
}
.delCardSubCta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  gap: 11px;
}
.delCardSubCta svg { width: 11px; height: 11px; }

/* Mapa do Funding · grid de logos reais + overlay 170+ */
.delCardMediaGraphic {
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 82, 42, 0.12) 0%, transparent 70%), #0d0d10;
  isolation: isolate;
  overflow: hidden;
}
.mapaLayout {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  gap: 10px;
  padding: 12px;
  z-index: 0;
}
.mapaBand {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-items: stretch;
}
.mapaLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
}
.mapaLogo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.mapaCenter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 8px 0;
  pointer-events: none;
}
.mapaBig {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 36px rgba(200, 82, 42, 0.55);
}
.mapaLabel {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
  max-width: 14ch;
  margin-top: 2px;
}
/* legacy compat — old grid class kept just in case */
.mapaLogosGrid { display: none; }
.mapaOverlay { display: none; }

.delHead { display: flex; gap: 14px; align-items: center; }
.delIc {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.delIc svg { width: 20px; height: 20px; }
.delMeta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.delMeta .title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--text);
}
.delMeta .sub {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.delBody { font-size: 15px; line-height: 1.6; color: var(--text-2); }

/* ── deliverable 1: 5 aulas · grid de cards estilo serie LP ──────────── */
.aulasGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 20px -8px 0;
}
@media (max-width: 1024px) {
  .aulasGrid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .aulasGrid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 14px;
    padding: 4px 0 16px;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    scroll-padding-inline: var(--pad);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .aulasGrid::-webkit-scrollbar { display: none; }
}
.aulaCard {
  position: relative;
  aspect-ratio: 5 / 8;
  width: 100%;
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 0;
  isolation: isolate;
  transition: transform 280ms cubic-bezier(0.22, 0.68, 0.2, 1),
              border-color 240ms ease,
              box-shadow 240ms ease;
}
.aulaCard:hover {
  transform: translateY(-3px);
  border-color: var(--accent-outline);
  box-shadow: 0 18px 44px rgba(200, 82, 42, 0.18);
}
.aulaCard:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .aulaCard {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: start;
  }
}
.aulaCardImg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.02);
  z-index: 0;
}
.aulaCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 6, 0.45) 0%,
    rgba(5, 5, 6, 0) 18%,
    rgba(5, 5, 6, 0) 50%,
    rgba(5, 5, 6, 0.45) 75%,
    rgba(5, 5, 6, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.aulaCardBadge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.aulaCardBadge .num { font-weight: 700; color: var(--accent); }
.aulaCardBadge .date { color: rgba(255, 255, 255, 0.75); font-weight: 500; font-variant-numeric: tabular-nums; }
.aulaCardOverlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aulaCardName {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.aulaCardRole {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.005em;
  line-height: 1.4;
  margin-top: 2px;
}
.aulaCardRole strong { color: #fff; font-weight: 600; }

/* legacy compat */
.aulaCardTitle {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.aulaCardGuest {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.aulaCardGuest strong { color: #fff; font-weight: 600; }
.aulaCardCue {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  transition: gap 200ms ease;
}
.aulaCardCue svg { width: 12px; height: 12px; }
.aulaCard:hover .aulaCardCue { gap: 12px; }

/* ── deliverable 1: legacy accordion styles (mantém compat, dormente) ──── */
.delAulasTable {
  margin-top: 12px;
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.012);
}
.delAulaItem {
  border-bottom: 1px solid var(--line-1);
  transition: background 240ms ease;
  position: relative;
}
.delAulaItem:last-child { border-bottom: 0; }
.delAulaItem::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}
.delAulaItem.is-open::before { opacity: 1; }
.delAulaItem.is-open { background: rgba(200, 82, 42, 0.045); }

.delAulaToggle {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 78px 1fr 28px;
  gap: 18px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  align-items: center;
  transition: background 200ms ease;
}
.delAulaToggle:hover { background: rgba(255, 255, 255, 0.025); }
.delAulaToggle:focus-visible {
  outline: 2px solid var(--accent-outline);
  outline-offset: -2px;
}
.delAulaItem.is-open .delAulaToggle:hover { background: transparent; }

.delAulaRow { /* legacy fallback se aparecer */
  display: grid;
  grid-template-columns: 40px 78px 1fr;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-1);
  align-items: center;
}
.delAulaRow:last-child { border-bottom: 0; }

.delAulaNo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: color 200ms;
}
.delAulaDate {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}
.delAulaBody { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.delAulaBody .topic {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
}
.delAulaBody .guest {
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}

.delAulaCaret {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  border: 1px solid var(--line-1);
  border-radius: 50%;
  transition: transform 320ms cubic-bezier(0.22, 0.68, 0.2, 1),
              color 240ms,
              border-color 240ms,
              background 240ms;
  flex: 0 0 auto;
}
.delAulaCaret svg { width: 12px; height: 12px; display: block; }
.delAulaToggle:hover .delAulaCaret {
  border-color: var(--line-2);
  color: var(--text-2);
}
.delAulaItem.is-open .delAulaCaret {
  transform: rotate(180deg);
  color: var(--accent);
  border-color: var(--accent-outline);
  background: rgba(200, 82, 42, 0.10);
}

/* expansion · max-height + opacity · pattern bulletproof */
.delAulaDetail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height 420ms cubic-bezier(0.22, 0.68, 0.2, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 0.68, 0.2, 1);
}
.delAulaItem.is-open .delAulaDetail {
  max-height: 1600px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 640ms cubic-bezier(0.22, 0.68, 0.2, 1),
    opacity 360ms ease 80ms,
    transform 420ms cubic-bezier(0.22, 0.68, 0.2, 1) 60ms;
}

.delAulaDetailInner {
  padding: 22px 20px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  border-top: 1px dashed var(--line-1);
  margin-top: 2px;
  align-items: start;
}
@media (min-width: 768px) {
  .delAulaDetailInner {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    padding: 26px 28px 32px 136px; /* alinha com a coluna do topic do toggle */
  }
}
@media (min-width: 1100px) {
  .delAulaDetailInner {
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }
}

/* mentor card · tall portrait com overlay, estilo cards de episódio */
.delAulaMentorCard {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 240px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .delAulaMentorCard { max-width: none; margin-inline: 0; }
}
.delAulaMentorCard img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: contrast(1.02);
}
.delAulaMentorCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 6, 0) 38%,
    rgba(5, 5, 6, 0.55) 70%,
    rgba(5, 5, 6, 0.92) 100%
  );
  pointer-events: none;
}
.delAulaMentorOverlay {
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.delAulaMentorName {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.018em;
  line-height: 1.05;
  color: #fff;
}
.delAulaMentorRole {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.delAulaMentorRole strong {
  color: #fff;
  font-weight: 600;
}

.delAulaContent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.delAulaContentLabel {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.delAulaContent ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.delAulaContent li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.delAulaContent li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.delAulasCtaWrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* deliverable 2: imersão — special treatment full-bleed */
.delImersao {
  position: relative;
  background: linear-gradient(135deg, #1a0d08 0%, #0c0809 100%);
  border-color: var(--accent-outline);
  overflow: hidden;
  padding: 0;
}
.delImersao::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(200, 82, 42, 0.18) 0%, transparent 60%),
    url("photos/imersao/imersao-03.jpg") center / cover no-repeat;
  opacity: 0.18;
}
.delImersao::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5,5,6,0.96) 0%, rgba(5,5,6,0.85) 40%, rgba(5,5,6,0.6) 100%);
}
.delImersao .inner {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.delImersaoGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.delImersaoCopy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 580px;
}
.delImersao .delIc { background: var(--accent); color: #fff; border-color: var(--accent); }

.delImersaoMedia {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.delImersaoHero {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  padding: 0;
  cursor: pointer;
  transition: border-color 220ms, transform 220ms;
}
.delImersaoHero:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.delImersaoHero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}
.delImersaoHero:hover img { transform: scale(1.04); }
.delImersaoHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.delImersaoPlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(200, 82, 42, 0.24), 0 14px 36px -8px rgba(0,0,0,0.6);
  z-index: 3;
  transition: transform 220ms, box-shadow 220ms;
}
.delImersaoHero:hover .delImersaoPlay {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(200, 82, 42, 0.18), 0 16px 40px -8px rgba(0,0,0,0.7);
}
.delImersaoPlay svg { width: 24px; height: 24px; margin-left: 3px; }
.delImersaoOverlay {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.delImersaoKicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.delImersaoTitle {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
}
.delImersaoThumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.delImersaoThumb {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-card);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: border-color 220ms, transform 220ms;
}
.delImersaoThumb:hover { border-color: var(--accent); transform: translateY(-1px); }
.delImersaoThumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms; }
.delImersaoThumb:hover img { transform: scale(1.06); }
.delImersaoThumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,5,6,0.0);
  transition: background 220ms;
}
.delImersaoThumb:hover::after { background: rgba(200, 82, 42, 0.18); }

@media (min-width: 960px) {
  .delImersaoGrid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 44px;
  }
  .delImersao .inner { padding: 48px; }
}

/* ── Video Modal ──────────────────────────────────────────────────────── */
.videoModal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  isolation: isolate;
}
.videoModal[data-open="true"] { display: flex; }
.videoModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}
.videoModalInner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 960px;
}
.videoModalClose {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.videoModalClose:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.videoModalClose svg { width: 16px; height: 16px; }
.videoModalAspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0c;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.videoModalIframe {
  width: 100%;
  height: 100%;
  display: block;
}
.videoModalIframe[hidden] { display: none; }
.videoModalPlaceholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #1a0d08 0%, #0c0809 100%);
}
.videoModalPlaceholderIc {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.videoModalPlaceholderIc svg { width: 26px; height: 26px; margin-left: 3px; }
.videoModalPlaceholder strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.videoModalPlaceholder span {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────────────
   MODAL · DETALHES DA AULA · estilo serie LP
   ────────────────────────────────────────────────────────────────────── */
.aulaModal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.aulaModal[hidden] { display: none; }
.aulaModal.is-open { opacity: 1; }
.aulaModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.78);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.aulaModalDialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 48px);
  background: #111;
  border: 1px solid var(--line-1);
  border-radius: var(--r-lg);
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: transform 320ms cubic-bezier(0.22, 0.68, 0.2, 1), opacity 280ms ease;
  scrollbar-width: thin;
}
.aulaModal.is-open .aulaModalDialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.aulaModalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 6, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 180ms ease;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.aulaModalClose:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(90deg);
}
.aulaModalClose svg { width: 16px; height: 16px; }

.aulaModalHero {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--bg-card);
}
.aulaModalHeroImg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.aulaModalHeroFade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 60%, rgba(17, 17, 17, 0.6) 100%);
  pointer-events: none;
}

.aulaModalBody {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 640px) {
  .aulaModalBody { padding: 22px 22px 26px; }
}
.aulaModalLabel {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.aulaModalTitle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: var(--text);
  margin: 0 0 8px;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .aulaModalTitle { font-size: 32px; }
}
.aulaModalGuestLine {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 24px;
}
.aulaModalGuestLine strong {
  color: var(--text);
  font-weight: 600;
}

.aulaModalSection {
  border-top: 1px solid var(--line-1);
  padding-top: 22px;
  margin-bottom: 22px;
}
.aulaModalSectionTitle {
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin: 0 0 14px;
}
.aulaModalBio {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  max-width: 60ch;
}
.aulaModalLearnings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aulaModalLearnings li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
}
.aulaModalLearnings li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 4px;
  flex: 0 0 16px;
}

.aulaModalCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background 160ms, transform 160ms, box-shadow 160ms;
  box-shadow: 0 14px 32px rgba(200, 82, 42, 0.28);
  margin-top: 4px;
}
.aulaModalCta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(200, 82, 42, 0.35);
}
.aulaModalCta svg { width: 14px; height: 14px; }
.aulaModalFooterNote {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 14px;
  letter-spacing: 0.005em;
}

.delImersaoCta {
  align-self: flex-start;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 160ms, transform 160ms;
  box-shadow: 0 10px 24px -6px rgba(200, 82, 42, 0.5);
}
.delImersaoCta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.delImersaoCta svg { width: 14px; height: 14px; }

/* secondary deliverables */
.delSecondary {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line-1);
}
.delSecondary .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  margin-bottom: 24px;
}
.delSecondaryGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .delSecondaryGrid { grid-template-columns: 1fr 1fr; } }
.delSec {
  background: var(--bg-card);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 220ms, transform 220ms;
  text-align: left;
  min-height: 0;
}
.delSec:hover { border-color: var(--accent-outline); transform: translateY(-2px); }
.delSec .ic {
  width: 28px; height: 28px;
  background: var(--accent-soft);
  border-radius: 6px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.delSec .ic svg { width: 14px; height: 14px; }
.delSec > div {
  display: flex;
  align-items: center;
}
.delSec strong {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0;
}
.delSec p { font-size: 13px; color: var(--text-3); line-height: 1.5; }

@media (min-width: 768px) {
  .delCard { padding: 36px; }
  .delImersao .inner { padding: 56px 48px; }
  .delMeta .title { font-size: 30px; }
}

/* =========================================================================
   §10 CTA CARD (CHECKOUT)
   ========================================================================= */
.checkout {
  background: var(--bg);
  position: relative;
  isolation: isolate;
}
.checkout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200, 82, 42, 0.20) 0%, transparent 55%);
  pointer-events: none;
}
.checkoutCard {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  box-shadow: 0 30px 80px -20px rgba(200, 82, 42, 0.35);
}
.checkoutCard .head { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line-1); }
.checkoutCard .head h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-wrap: balance;
}
.checkoutCard .badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.checkoutCard .badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  color: var(--text-2);
}
.checkoutCard .badge.accent { background: var(--accent-soft); border-color: var(--accent-outline); color: var(--accent); }
.checkoutList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto 28px;
  width: fit-content;
  max-width: 100%;
}
.checkoutList li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.45;
}
.checkoutList .check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.checkoutList .check svg { width: 18px; height: 18px; }
.checkoutPrice {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.checkoutPriceBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  padding: 6px 14px;
  border-radius: 100px;
}
.checkoutPriceRow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.checkoutPriceOld {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-3);
  text-decoration: line-through;
  text-decoration-color: rgba(243, 240, 235, 0.4);
  text-decoration-thickness: 1.5px;
}
.checkoutPriceOld .cur {
  font-size: 13px;
  margin-right: 2px;
}
.checkoutPrice .value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.checkoutPrice .value .cur {
  font-size: 24px;
  vertical-align: super;
  margin-right: 4px;
  color: var(--text-3);
}
.checkoutPrice .sub {
  font-size: 13px;
  color: var(--text-3);
}
.checkoutPriceExtra {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding: 10px 16px 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  text-align: left;
}
.checkoutPriceExtraIc {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 7px;
  color: var(--accent);
  flex-shrink: 0;
}
.checkoutPriceExtraIc svg { width: 14px; height: 14px; }
.checkoutPriceExtraInfo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.checkoutPriceExtraInfo strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.checkoutPriceExtraInfo span {
  font-size: 12px;
  color: var(--text-3);
}
.checkoutPriceExtraInfo em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.checkoutCta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  transition: background 160ms, transform 160ms;
}
.checkoutCta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.checkoutCta svg { width: 18px; height: 18px; }
.checkoutGuarantee {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-size: 13px; color: var(--text-3);
}
.checkoutGuarantee svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

@media (min-width: 768px) {
  .checkoutCard { padding: 56px 48px; }
  .checkoutCard .head h2 { font-size: 32px; }
}

/* =========================================================================
   §11 FAQ
   ========================================================================= */
.faq { background: var(--bg-alt); }
.faq .head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.faqList { max-width: 820px; margin: 0 auto; }
.faqItem {
  border-bottom: 1px solid var(--line-1);
}
.faqItem:first-child { border-top: 1px solid var(--line-1); }
.faqQ {
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  line-height: 1.3;
}
.faqQ::-webkit-details-marker { display: none; }
.faqQ .chev {
  width: 20px; height: 20px;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 220ms, color 220ms;
}
.faqItem[open] .faqQ .chev { transform: rotate(180deg); color: var(--accent); }
.faqA {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 64ch;
}
@media (min-width: 768px) {
  .faqQ { font-size: 19px; padding: 26px 0; }
  .faqA { font-size: 16px; }
}

/* =========================================================================
   §12 GARANTIA
   ========================================================================= */
.guarantee {
  background: var(--bg);
  text-align: center;
}
.guarantee .sectionInner { max-width: 640px; }
.guaranteeShield {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.guaranteeShield svg { width: 30px; height: 30px; }
.guarantee h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}
.guarantee p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 18px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.guaranteeStrip {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-1);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}
.guaranteeStrip span + span::before { content: " · "; color: var(--text-4); }
@media (min-width: 768px) {
  .guarantee h2 { font-size: 42px; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-1);
  padding: 56px 0 80px;
  color: var(--text-3);
}
.footerInner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footerTop {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-2);
}
.footerBrand img { height: 22px; }
.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-3);
}
.footerLinks a:hover { color: var(--text); }
.footerBottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line-1);
  font-size: 12px;
  color: var(--text-4);
}

/* =========================================================================
   STICKY MOBILE CTA
   ========================================================================= */
.stickyCta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 80;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 28px -6px rgba(200, 82, 42, 0.45);
  letter-spacing: -0.005em;
}
.stickyCta svg { width: 14px; height: 14px; }
@media (min-width: 880px) { .stickyCta { display: none; } }

/* =========================================================================
   TWEAKS PANEL
   ========================================================================= */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 200;
  width: 320px;
  max-height: 70vh;
  background: rgba(15, 15, 18, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.tweaks[data-open="true"] { display: flex; }
.tweaksHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-1);
}
.tweaksTitle {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tweaksClose { background: transparent; border: 0; color: var(--text-3); font-size: 20px; padding: 2px 8px; border-radius: 6px; }
.tweaksClose:hover { color: var(--text); background: var(--line-1); }
.tweaksBody { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 18px; overflow-y: auto; }
.tweakSection { display: flex; flex-direction: column; gap: 10px; }
.tweakLabel {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.tweakSegmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--line-1);
  border-radius: var(--r-md);
}
.tweakSegmented:has(> :nth-child(5)) { grid-template-columns: 1fr 1fr 1fr; }
.tweakSeg {
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--text-2);
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 7px;
}
.tweakSeg.active { background: var(--accent); color: #fff; }
.tweakSeg:not(.active):hover { background: var(--line-2); color: var(--text); }
.tweakNote { font-size: 11px; line-height: 1.5; color: var(--text-3); }

/* ═════════════════════════════════════════════════════════════════════════
   MOBILE HARDENING · prevenir overflow + ajustar densidade em telas pequenas
   ═════════════════════════════════════════════════════════════════════════ */

/* overflow-x: clip preserva position: sticky (vs hidden que quebra) */
body { overflow-x: clip; }
img, svg, video { max-width: 100%; height: auto; }

/* Tablets pequenos e mobile (≤768) — ajustes finos */
@media (max-width: 768px) {
  :root { --pad: 20px; }

  .heroHeadline { font-size: 38px; line-height: 1.04; overflow-wrap: anywhere; hyphens: manual; }
  .heroCredentials { gap: 16px 24px; padding-top: 20px; }

  .navInner { padding: 12px 16px; gap: 12px; }
  .navLogo { gap: 8px; }
  .navLogo img { height: 22px; width: auto; }
  .navLogoBootcamp img { height: 26px; width: auto; }
  .navLogo span small { display: none; }
  .navCta { padding: 9px 14px; font-size: 13px; }
  .navCta svg { width: 14px; height: 14px; }

  /* Section padding mais respirável */
  .section { padding: 64px 0; }

  /* H2 menor pra não estourar em mobile pequeno */
  .h2 { font-size: 32px; line-height: 1.1; }

  /* Logistics — sem padding lateral fake */
  .logisticsItem { padding: 0; }

  /* Checkout card mais apertado */
  .checkoutCard { padding: 32px 22px; }
  .checkoutCard .head h2 { font-size: 22px; }
  .checkoutPriceRow .value { font-size: 44px; }
  .checkoutPriceOld { font-size: 18px; }

  /* Deliverable cards menos padding */
  .delCard { padding: 24px 20px; }
  .delAulasTable { font-size: 13px; }
  .delAulaRow { padding: 12px 14px; gap: 12px; grid-template-columns: 32px 64px 1fr; }
  .delAulaToggle { padding: 14px 16px; gap: 12px; grid-template-columns: 28px 62px 1fr 22px; }
  .delAulaCaret { width: 22px; height: 22px; }
  .delAulaCaret svg { width: 10px; height: 10px; }
  .delAulaBody .topic { font-size: 13.5px; }
  .delAulaBody .guest { font-size: 11px; }
  .delAulaDetailInner { padding: 20px 16px 24px 16px; grid-template-columns: 1fr; gap: 20px; }
  .delAulaMentorCard { max-width: 220px; }
  .delAulaMentorName { font-size: 20px; }
  .delAulaMentorRole { font-size: 11.5px; }
  .delAulaMentorOverlay { left: 16px; right: 16px; bottom: 16px; }
  .delAulaContent li { font-size: 13px; padding-left: 16px; }
  .delAulaContent li::before { width: 8px; top: 9px; }
  .delAulaBody .topic { font-size: 13px; }

  /* Mentor cards — densidade */
  .teachersGrid { gap: 12px; }
  .teacherCard { padding: 14px; }

  /* Footer wrap */
  .footerTop { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footerLinks { flex-wrap: wrap; gap: 12px 18px; }
  .footerBottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Stats numbers cabem confortáveis em 2 col */
  .marketData .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .marketData .stat { padding: 22px 18px; }
  .marketData .stat .n { font-size: 32px; }

  /* Authority numbers — refinar 2x2 */
  .authNums { gap: 10px; }
  .authNum { padding: 22px 16px; gap: 10px; }
  .authNum .n { font-size: 30px; }

  /* Imersão player ratio mobile */
  .delImersaoHero { aspect-ratio: 16/10; }

  /* Logos marquee — logos menores */
  .ecoLogo img { max-height: 28px; }

  /* Tweaks panel desktop-only */
  .tweaks { display: none !important; }

  /* §3 Programa + Benefícios · scroll horizontal em mobile (swipe) */
  section.programCards .grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 4px 16px 24px;
    margin-inline: calc(var(--pad) * -1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-inline: 16px;
  }
  section.programCards .grid::-webkit-scrollbar { display: none; }
  section.programCards .pcCard {
    flex: 0 0 82% !important;
    max-width: 340px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 24px 22px !important;
    gap: 18px !important;
  }
  section.programCards .pcCard h3 { font-size: 19px !important; }
  section.programCards .pcList { gap: 14px !important; }
  section.programCards .pcItem { grid-template-columns: 24px 1fr !important; gap: 12px !important; }
  section.programCards .pcItem .ic { width: 24px !important; height: 24px !important; }
  section.programCards .pcItem strong { font-size: 14px; line-height: 1.3; }
  section.programCards .pcItem p { font-size: 13px; line-height: 1.5; }
}

/* Mobile bem pequeno (≤400) — refino extra */
@media (max-width: 400px) {
  .heroHeadline { font-size: 32px; line-height: 1.06; }
  .checkoutPriceRow .value { font-size: 38px; }
  .h2 { font-size: 28px; }
}

/* ════════════════════════════════════════ ENTRY POPUP · bootcamp-mapa ════════════════════════════════════════ */
.entryPop {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  isolation: isolate;
}
.entryPop[data-open="true"] { display: flex; }
.entryPopBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}
.entryPopDialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(180deg, #141013 0%, #0c0809 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 40px 32px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.entryPopClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, transform 200ms, border-color 200ms;
}
.entryPopClose:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.entryPopClose svg { width: 15px; height: 15px; }
.entryPopCheck {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(200, 82, 42, 0.20) 0%, rgba(200, 82, 42, 0.06) 100%);
  border: 1px solid var(--accent-outline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 16px 48px rgba(200, 82, 42, 0.20);
  flex: none;
}
.entryPopCheck svg { width: 32px; height: 32px; }
.entryPopTitle {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  text-wrap: balance;
}
.entryPopTitle em { font-style: normal; color: var(--accent); }
.entryPopSub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}
.entryPopMapa {
  position: relative;
  width: 100%;
  height: 300px;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 82, 42, 0.12) 0%, transparent 70%), #0d0d10;
  border: 1px solid var(--line-1);
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
}
.entryPopMapaSplit {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(96px, 0.85fr) 1.15fr;
  gap: 14px;
  padding: 14px;
  align-items: center;
}
.entryPopMapaText {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
}
.entryPopMapaBig {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 36px rgba(200, 82, 42, 0.55);
}
.entryPopMapaLabel {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 700;
  max-width: 12ch;
}
.entryPopMapaGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 6px;
  height: 100%;
}
.entryPopMapaLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
}
.entryPopMapaLogo img {
  max-width: 100%;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.entryPopActions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}
.entryPopBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-md);
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, filter 180ms ease, border-color 180ms ease;
}
.entryPopBtnPrimary { background: var(--accent); color: #fff; }
.entryPopBtnPrimary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.entryPopBtnGhost { background: transparent; color: var(--text); border-color: var(--line-2); }
.entryPopBtnGhost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.04); }
@media (max-width: 480px) {
  .entryPopDialog { padding: 36px 20px 24px; gap: 16px; }
  .entryPopMapa { height: 288px; }
  .entryPopMapaSplit { gap: 10px; padding: 12px; }
  .entryPopMapaBig { font-size: 40px; }
  .entryPopMapaLabel { font-size: 10px; }
  .entryPopMapaLogo img { max-height: 20px; }
}

/* ════════════════════════════════════════ §5b CRONOGRAMA ════════════════════════════════════════ */
.cronograma .head { margin-bottom: 40px; }
.cronTimeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.cronTimeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, var(--line-2) 5%, var(--line-2) 95%, transparent 100%);
}
.cronItem {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  padding: 20px 0;
}
.cronItem .cronMedia,
.cronItem .cronContent { grid-row: 1; align-self: center; }
.cronItem .cronMedia { grid-column: 1; justify-self: end; }
.cronItem .cronContent { grid-column: 3; justify-self: start; text-align: left; padding: 0 0 0 44px; }
.cronItem--reverse .cronMedia { grid-column: 3; justify-self: start; }
.cronItem--reverse .cronContent { grid-column: 1; justify-self: end; text-align: right; padding: 0 44px 0 0; }
.cronItem::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--bg), 0 0 18px rgba(200, 82, 42, 0.55);
  z-index: 1;
}
.cronMedia {
  width: 230px;
  max-width: 100%;
}
.cronMedia .aulaCard { aspect-ratio: 4 / 5; }
.cronItem--highlight .cronMedia { width: 420px; }
.cronShot { width: 100%; }
.cronShot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--accent-outline);
  border-radius: var(--r-lg);
}
.cronShotCap {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-3);
  text-align: center;
}
.aulaCard--pitchnight {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 70% at 50% 55%, rgba(200,82,42,0.13) 0%, transparent 70%),
    var(--bg-card);
}
.cronPitchIcon {
  width: 52%;
  height: auto;
  display: block;
  position: relative;
}
.cronMedia .delImersaoMedia { width: 100%; }
.cronMedia .aulaCard--static { cursor: default; }
.cronMedia .aulaCard--static:hover {
  transform: none;
  border-color: var(--line-1);
  box-shadow: none;
}
.cronContent {
  min-width: 0;
  max-width: 460px;
}
.cronDate {
  display: block;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.cronLabel {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.cronTitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}
.cronDesc {
  font-size: 15px;
  line-height: 1.62;
  color: var(--text-2);
}
@media (max-width: 860px) {
  .cronograma .head { margin-bottom: 28px; }
  .cronTimeline { max-width: 560px; }
  .cronTimeline::before { left: 15px; }
  .cronItem {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 18px 0 22px 40px;
  }
  .cronItem .cronMedia,
  .cronItem .cronContent,
  .cronItem--reverse .cronMedia,
  .cronItem--reverse .cronContent {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-self: start;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  .cronMedia { width: 100%; max-width: 260px; }
  .cronItem--highlight .cronMedia { width: 100%; max-width: 100%; }
  .cronContent { max-width: none; }
  .cronItem::after {
    left: 15px;
    top: 26px;
    transform: translate(-50%, 0);
  }
}

/* ════════════════════════════════════════ §10 CHECKOUT · 2 CARDS (bootcamp-mapa) ════════════════════════════════════════ */
.checkoutDual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}
.checkoutDual .checkoutCard {
  max-width: none;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.checkoutDual .checkoutCard > .checkoutPrice { margin-top: auto; }
.checkoutCard--mapa {
  border-color: var(--line-2);
  box-shadow: none;
}
.checkoutCard--mapa .entryPopMapa { margin-top: auto; }
.checkoutCard--mapa .checkoutCta { margin-top: auto; }
.checkoutCta--white {
  background: #fff;
  color: #0c0809;
}
.checkoutCta--white:hover { background: rgba(255, 255, 255, 0.88); }
.liTag {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-outline);
  border-radius: 100px;
  vertical-align: middle;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .checkoutDual {
    grid-template-columns: 1fr;
    max-width: 640px;
    gap: 20px;
  }
}

/* ════════════════════════════════════════ ENTRY POPUP · two-step ════════════════════════════════════════ */
.entryPopStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}
.entryPopDialog[data-pop-step="1"] .entryPopStep--2 { display: none; }
.entryPopDialog[data-pop-step="2"] .entryPopStep--1 { display: none; }

/* Form fields */
.entryPopForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.entryPopFormGroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.entryPopFormLabel {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: -0.01em;
}
.entryPopInput {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 180ms;
  box-sizing: border-box;
}
.entryPopInput::placeholder { color: var(--text-3); }
.entryPopInput:focus { border-color: var(--accent); }
.entryPopBtnAccess {
  width: 100%;
  background: var(--accent);
  color: #fff;
  margin-top: 4px;
}
.entryPopBtnAccess:hover { background: var(--accent-hover); transform: translateY(-1px); }
.entryPopBtnAccess svg { width: 16px; height: 16px; flex: none; }
@media (max-width: 480px) {
  .entryPopStep { gap: 16px; }
}
