/* ============ Reset ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100vw;
  /* NOTE: `scroll-behavior: smooth` is intentionally OFF here because Lenis
     handles smooth scrolling in JS. The two together fight for control. */
}

body {
  min-height: 100vh;
  min-height: 100svh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

/* Every section is content-owned — forbid any child bleeding out horizontally */
main, section { max-width: 100vw; overflow-x: clip; }

/* ─── Lenis base styles (required for smooth scroll to work) ─── */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
h1 { font-weight: 900; }
em { color: var(--c-accent); font-style: normal; }

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

button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, button, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Tokens ============ */
:root {
  /* paleta (fsc instituto) */
  --burgundy: #6B1A1A;
  --burgundy-dark: #4A1010;
  --laranja: #F57C00;
  --laranja-light: #FFA040;
  --c-cta: #16a34a;
  --c-cta-light: #22c55e;
  --white: #FFFFFF;
  --white-muted: rgba(255, 255, 255, 0.5);

  /* aliases semânticos */
  --c-bg: var(--burgundy);
  --c-surface: var(--burgundy-dark);
  --c-text: var(--white);
  --c-muted: var(--white-muted);
  --c-accent: var(--laranja);
  --c-accent-light: var(--laranja-light);

  /* tipografia */
  --font-display: 'Saira Condensed', system-ui, sans-serif;
  --font-body: 'Saira', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* layout */
  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --topbar-h: 52px;
  --stats-h: 112px;

  /* escala de espaçamento (fixa) */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* espaçamento fluido por contexto */
  --space-section-y: clamp(4rem, 8vw, 7rem);     /* padding vertical de seções */
  --space-block: clamp(2.5rem, 5vw, 4rem);       /* gap entre grandes blocos dentro da seção */
  --space-stack: clamp(1.25rem, 2.5vw, 2rem);    /* gap vertical em pilhas (hero copy) */
  --space-card: clamp(1.4rem, 2.2vw, 2rem);      /* padding interno de cards */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  /* tipografia fluida */
  --fs-h1: clamp(1.9rem, 3.6vw + 0.8rem, 3.1rem);
  --fs-h2: clamp(2rem, 4vw + 1rem, 3.5rem);
  --fs-h3: clamp(1.5rem, 2vw + 1rem, 2.25rem);
  --fs-body: clamp(0.9rem, 0.35vw + 0.8rem, 1rem);

  /* easing / duração */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur: 400ms;
}

/* ============ Utilitários ============ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--space-section-y);
}

/* esconder conteúdo até GSAP aplicar estado inicial (evita FOUC) */
.gsap-hidden { visibility: hidden; }

/* ============ Botões ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--c-accent);
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn--primary:hover { background: var(--c-accent-light); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(245, 124, 0, 0.4);
}
.btn--ghost:hover { border-color: var(--c-accent); }

/* ============ CTA Button (com selo MEC deslizante) ============ */
.btn-glow {
  position: relative;
  display: inline-block;
  height: 56px;
  width: 330px;
  max-width: 100%;
  border-radius: 999px;
  background: var(--c-cta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transition: background 300ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.btn-glow:hover { background: var(--c-cta-light); }
.btn-glow:active { transform: scale(0.97); }

.btn-glow__label {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  z-index: 2;
  white-space: nowrap;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 1px 2px rgba(74, 16, 16, 0.25);
}
.btn-glow:hover .btn-glow__label {
  transform: translate(80px, -50%);
}

.btn-glow__seal {
  position: absolute;
  right: -10px;
  top: 50%;
  width: 82px;
  height: 82px;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-glow:hover .btn-glow__seal {
  transform: translate(-248px, -50%);
}

.btn-glow__seal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-glow:hover .btn-glow__seal img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .btn-glow { width: 290px; height: 54px; font-size: 0.95rem; }
  .btn-glow__seal { width: 74px; height: 74px; }
  .btn-glow:hover .btn-glow__seal { transform: translate(-230px, -50%); }
}
@media (max-width: 560px) {
  .btn-glow { width: 100%; max-width: 320px; }
}

/* ============ Topbar (marquee) ============ */
.topbar {
  position: relative;
  z-index: 10;
  background: var(--laranja);
  border-bottom: 1px solid rgba(74, 16, 16, 0.15);
  overflow: hidden;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;
}

.topbar__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
}

.topbar__sep {
  color: var(--burgundy-dark);
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  height: calc(100svh - var(--topbar-h));
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: var(--space-section-y) calc(var(--stats-h) + var(--space-block));
  isolation: isolate;
  background: var(--burgundy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(74, 16, 16, 0.85) 0%, rgba(107, 26, 26, 0.72) 100%),
    linear-gradient(to bottom, rgba(74, 16, 16, 0.3) 0%, rgba(74, 16, 16, 0.85) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 40%, transparent 80%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: var(--space-block);
}

.hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: var(--space-stack);
  text-align: left;
}

@media (max-width: 900px) {
  .hero {
    display: block;
    height: auto;
    min-height: 0;
    overflow: clip;
    padding-block: var(--space-section-y) 0;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-block);
  }
  .hero__stats {
    position: static;
    margin-top: var(--space-block);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(245, 124, 0, 0.05);
}

.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.18);
}

.hero__logo {
  width: clamp(150px, 19.5vw, 240px);
  height: auto;
  margin-top: calc(var(--space-stack) * -0.5);
  margin-bottom: calc(var(--space-stack) * -0.5);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: 0.02em;
  font-weight: 900;
  max-width: 24ch;
  text-transform: none;
}
.hero__line { white-space: nowrap; }
.hero__title em {
  font-style: normal;
  color: var(--c-accent);
}
.hero__line {
  display: block;
  will-change: transform, opacity;
}

.hero__lead {
  font-size: var(--fs-body);
  color: var(--c-muted);
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

/* ============ Hero stats marquee ============ */
.hero__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--stats-h);
  display: flex;
  align-items: center;
  background: var(--laranja);
  border-top: 1px solid rgba(74, 16, 16, 0.2);
  overflow: hidden;
}

.hero__stats-track {
  display: flex;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.hero__stats-list {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 3.5rem;
  white-space: nowrap;
  position: relative;
}
.stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy-dark);
  opacity: 0.4;
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
  text-shadow: 0 2px 10px rgba(74, 16, 16, 0.25);
}

.stat__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: normal;
  max-width: 300px;
  line-height: 1.3;
}
.stat__text {
  font-size: 0.9rem;
  color: var(--burgundy-dark);
  font-weight: 500;
}
.stat__source {
  font-size: 0.72rem;
  color: rgba(74, 16, 16, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 640px) {
  :root { --stats-h: 92px; --topbar-h: 44px; }
  .stat { padding-inline: 1.75rem; gap: 1rem; }
  .stat__number { font-size: 2rem; }
  .stat__body { max-width: 230px; }
  .stat__text { font-size: 0.8rem; }
  .topbar__list { font-size: 0.85rem; }
}

/* ============ Hero checklist ============ */
.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-lg);
  margin-top: var(--space-xxs);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.hero__check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.18);
  color: var(--c-cta-light);
  font-size: 0.78rem;
  font-weight: 800;
  border: 1px solid rgba(34, 197, 94, 0.45);
}

/* ============ Hero scholarship line ============ */
.hero__scholarship {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--c-muted);
  margin: 0;
}
.hero__scholarship strong {
  color: var(--c-accent);
  font-weight: 800;
}
.hero__scholarship-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  background: rgba(245, 124, 0, 0.12);
  border: 1px solid rgba(245, 124, 0, 0.5);
  color: var(--c-accent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ============ Hero mini-cards ============ */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 124, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  will-change: transform;
}
.mini-card:hover {
  border-color: rgba(245, 124, 0, 0.55);
  background: rgba(245, 124, 0, 0.05);
  transform: translateY(-3px);
}

.mini-card__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.mini-card__value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  margin-top: 2px;
}
.mini-card__desc {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
  .mini-card { padding: 0.85rem 0.9rem; }
  .mini-card__value { font-size: 1.35rem; }
}
@media (max-width: 560px) {
  .hero__cards { grid-template-columns: 1fr; }
}

/* ============ Hero media (foto especialistas) ============ */
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 640px;
  width: 100%;
  justify-self: end;
  will-change: transform;
}

.hero__media-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 175%;
  height: 175%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
}

.hero__media-light {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(2);
  transform-origin: center center;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero__media-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: rgba(74, 16, 16, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.hero__media-name {
  position: absolute;
  z-index: 4;
  bottom: 14%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.55rem 0.9rem;
  background: rgba(74, 16, 16, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  line-height: 1.15;
}
.hero__media-name--left {
  left: 12%;
}
.hero__media-name--right {
  right: 12%;
}
.hero__media-name-role {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
}
.hero__media-name-full {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}
.hero__media-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
}
.hero__media-badge span {
  font-size: 0.75rem;
  color: var(--c-muted);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .hero__media {
    justify-self: center;
    max-width: min(90vw, 420px);
    aspect-ratio: 4 / 4.2;
  }
  .hero__media-photo {
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero__media-light {
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%) scale(1.4);
  }
  .hero__media-name--left  { left: 6%; }
  .hero__media-name--right { right: 6%; }
}

@media (max-width: 640px) {
  .hero__scroll { display: none; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__media { max-width: min(88vw, 340px); }
  .hero__media-photo { width: 100%; height: 100%; }
  .hero__media-badge { left: 0; bottom: 12px; padding: 0.6rem 0.85rem; }
  .hero__media-badge strong { font-size: 1.4rem; }
  .hero__media-name { padding: 0.4rem 0.65rem; }
  .hero__media-name-full { font-size: 0.78rem; }
  .hero__media-name-role { font-size: 0.6rem; }
  .hero__media-name--left { left: 4%; }
  .hero__media-name--right { right: 4%; }
}

/* ============ Section: Áreas de atuação ============ */
.areas {
  position: relative;
  background-color: #fdfbf7;
  background-image:
    radial-gradient(ellipse 55% 40% at 12% 18%, rgba(245, 124, 0, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 45% at 88% 12%, rgba(107, 26, 26, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(245, 124, 0, 0.18), transparent 65%),
    radial-gradient(ellipse 45% 40% at 18% 90%, rgba(107, 26, 26, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 160, 64, 0.1), transparent 70%);
  color: #1a1a1a;
  padding-block: var(--space-section-y);
  /* Use `clip` instead of `hidden` so the .sticky-cards inside can actually
     use `position: sticky` relative to the viewport. `overflow: hidden`
     creates a new scroll container that traps sticky children. */
  overflow: clip;
  isolation: isolate;
}
.areas::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(74, 16, 16, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74, 16, 16, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}
.areas::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(74, 16, 16, 0.12) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 85%);
}
.areas > .container {
  position: relative;
  z-index: 1;
}

.areas__header {
  position: relative;
  max-width: 1200px;
  margin: 0 auto var(--space-block);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.areas__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 124, 0, 0.1);
  color: var(--c-accent);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.areas__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2.4rem);
  line-height: 1.2;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  max-width: 34ch;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.areas__title em {
  font-style: normal;
  color: var(--burgundy-dark);
}
.areas__title-line {
  display: block;
  text-align: center;
}
.areas__title-line--sub {
  margin-top: 0.5rem;
  color: rgba(26, 26, 26, 0.72);
  font-weight: 600;
  font-size: 0.92em;
}

@media (max-width: 900px) {
  .areas__title { max-width: 90%; }
}
@media (max-width: 560px) {
  .areas__title { font-size: clamp(1.25rem, 5vw, 1.6rem); }
}

/* ============ Showcase (cinematic interactive) ============ */
.showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

/* --- Left: numbered navigation --- */
.showcase__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}
.showcase__nav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(74, 16, 16, 0.15);
}
.showcase__nav-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding: 1.3rem 0 1.3rem 1.5rem;
  cursor: pointer;
  color: rgba(26, 26, 26, 0.55);
  transition: color 500ms var(--ease-out), padding 500ms var(--ease-out);
  isolation: isolate;
}
.showcase__nav-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 600ms var(--ease-out);
}
.showcase__nav-item.is-active {
  color: var(--burgundy-dark);
  padding-left: 2rem;
}
.showcase__nav-item.is-active .showcase__nav-bar {
  transform: scaleY(1);
}
.showcase__nav-item:hover {
  color: var(--burgundy-dark);
}
.showcase__nav-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-accent);
  letter-spacing: 0.04em;
  min-width: 1.8rem;
  transition: transform 500ms var(--ease-out);
}
.showcase__nav-item.is-active .showcase__nav-num {
  transform: scale(1.2);
}
.showcase__nav-title {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1vw + 0.5rem, 1.18rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.showcase__nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--c-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out);
}
.showcase__nav-arrow svg { width: 20px; height: 20px; }
.showcase__nav-item.is-active .showcase__nav-arrow,
.showcase__nav-item:hover .showcase__nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* --- Right: cinematic stage --- */
.showcase__stage {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--burgundy-dark);
  box-shadow: 0 40px 80px -30px rgba(74, 16, 16, 0.45);
  isolation: isolate;
}

/* Stacked ghost numbers behind the slides */
.showcase__bg-count {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.8;
  font-size: clamp(8rem, 18vw, 14rem);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
  text-stroke: 2px rgba(255, 255, 255, 0.18);
  pointer-events: none;
  letter-spacing: -0.03em;
}
.showcase__bg-count > span {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translateY(40%) scale(0.9);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}
.showcase__bg-count > span.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slides — only one visible at a time */
.showcase__slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms var(--ease-out), visibility 700ms var(--ease-out);
}
.showcase__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.showcase__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) brightness(0.95);
  transform: scale(1.02);
  transition: transform 3000ms var(--ease-out);
}
.showcase__slide.is-active .showcase__video {
  transform: scale(1.08);
}
.showcase__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 4, 4, 0.2) 0%, rgba(10, 4, 4, 0.55) 55%, rgba(5, 2, 2, 0.9) 100%),
    linear-gradient(90deg, rgba(74, 16, 16, 0.55) 0%, rgba(74, 16, 16, 0.1) 55%, transparent 100%);
  pointer-events: none;
}

/* Info block — bottom-left */
.showcase__info {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.4rem);
  right: clamp(1.4rem, 3vw, 2.4rem);
  bottom: clamp(4.5rem, 8vw, 5.8rem);
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 620px;
}
.showcase__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.35), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(245, 124, 0, 0.55);
  color: var(--c-accent-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: var(--space-xs);
}
.showcase__icon svg { width: 26px; height: 26px; }
.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.showcase__desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  max-width: 560px;
}

/* Reuse reveal-title mechanism for per-slide title entry */
.showcase__title .word,
.showcase__desc .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.showcase__title .word-inner,
.showcase__desc .word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* HUD — bottom bar */
.showcase__hud {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.4rem);
  right: clamp(1.4rem, 3vw, 2.4rem);
  bottom: clamp(1.2rem, 2.5vw, 1.8rem);
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  color: var(--white);
}
.showcase__hud-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-display);
}
.showcase__hud-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.showcase__hud-count {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.showcase__hud-current {
  display: inline-block;
  color: var(--c-accent);
  min-width: 1.6ch;
}
.showcase__progress {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  overflow: hidden;
}
.showcase__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.6);
  transition: width 120ms linear;
}

@media (max-width: 1024px) {
  .showcase { grid-template-columns: 1fr; }
  .showcase__nav::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
  .showcase__stage { min-height: 440px; }
}
@media (max-width: 560px) {
  .showcase__nav-item { padding: 1rem 0 1rem 1rem; gap: var(--space-sm); }
  .showcase__nav-item.is-active { padding-left: 1.4rem; }
  .showcase__stage { min-height: 380px; }
  .showcase__info { bottom: clamp(4rem, 10vw, 5rem); }
  .showcase__hud-label { display: none; }
}

.areas__summary {
  position: relative;
  max-width: 820px;
  margin: var(--space-block) auto 0;
  padding: var(--space-card);
  background: linear-gradient(135deg, #ffffff 0%, #fbf7f1 100%);
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -28px rgba(74, 16, 16, 0.25);
}
.areas__summary-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 var(--space-xs);
}
.areas__summary-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #1a1a1a;
}
.areas__summary-text strong {
  color: var(--burgundy-dark);
  font-weight: 800;
}

.areas__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-block);
  text-align: center;
}
.areas__scholarship {
  color: rgba(26, 26, 26, 0.7);
}
.areas__scholarship strong {
  color: var(--burgundy-dark);
}

@media (max-width: 640px) {
  .areas__summary { padding: var(--space-lg); }
}

/* ============ Scroll progress bar (top) ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-light) 50%, var(--c-accent) 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 14px rgba(245, 124, 0, 0.55);
  transform-origin: left center;
  animation: sp-shimmer 2.4s linear infinite;
}
@keyframes sp-shimmer {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

/* ============ Shared: section eyebrow ============ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: 999px;
  background: rgba(245, 124, 0, 0.08);
  color: var(--c-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.section-eyebrow--light {
  background: rgba(245, 124, 0, 0.1);
  border-color: rgba(245, 124, 0, 0.3);
}
.section-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.18);
  animation: dot-pulse 2.2s var(--ease-in-out) infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(245, 124, 0, 0.05); }
}

/* Reveal title support (words wrapped in JS with .word span) */
.reveal-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.reveal-title .word-inner {
  display: inline-block;
  will-change: transform;
}

/* ============ Shared: section CTA block ============ */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-block);
  text-align: center;
}
.section-cta__scholarship {
  color: rgba(255, 255, 255, 0.75);
}
.section-cta--light .section-cta__scholarship {
  color: rgba(26, 26, 26, 0.7);
}
.section-cta--light .section-cta__scholarship strong {
  color: var(--burgundy-dark);
}

/* ============ Areas: slot-machine reveal ============ */
/* The reveal wrapper is `position: sticky` so the title stays visible at
   the top of the viewport while the user scrolls through the sticky
   cards stack below. It has a solid background to prevent cards from
   bleeding through when they scroll under it. */
.areas__reveal {
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: hidden;
  padding-block: clamp(2rem, 4.5vw, 3.2rem) clamp(1rem, 2vw, 1.6rem);
  background:
    linear-gradient(180deg, #fdfbf7 0%, #fdfbf7 70%, rgba(253, 251, 247, 0.88) 100%);
}
.areas__reveal-outer,
.areas__reveal-inner {
  width: 100%;
  overflow: hidden;
}
.areas__reveal-outer { position: relative; }
.areas__reveal-inner { display: block; }
.areas__reveal .areas__header {
  margin-bottom: 0;
}

/* ============ Section: Para quem é ============ */
.audience {
  position: relative;
  background: var(--burgundy);
  color: var(--white);
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.audience__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.audience__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.audience__orb--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  left: -180px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.55), transparent 65%);
}
.audience__orb--2 {
  width: 620px;
  height: 620px;
  bottom: -240px;
  right: -200px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.38), transparent 65%);
}
.audience::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 85%);
}
.audience > .container { position: relative; z-index: 1; }

.audience__header {
  max-width: 980px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.audience__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.audience__title em { color: var(--c-accent); font-style: normal; }

.audience__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.6rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
.persona {
  position: relative;
  display: flex;
  min-height: 200px;
  isolation: isolate;
}
.persona[data-side="left"]  { justify-content: flex-start; padding-right: 8%; }
.persona[data-side="right"] { justify-content: flex-end;   padding-left: 8%; }

.persona__ghost {
  position: absolute;
  top: 50%;
  font-family: var(--font-display);
  font-size: clamp(11rem, 22vw, 22rem);
  font-weight: 900;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 124, 0, 0.32);
  text-stroke: 2px rgba(245, 124, 0, 0.32);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.04em;
  transform: translateY(-50%);
  will-change: transform;
  transition: -webkit-text-stroke-color 400ms var(--ease-out);
}
.persona[data-side="left"]  .persona__ghost { right: 2%; }
.persona[data-side="right"] .persona__ghost { left: 2%; }
.persona:hover .persona__ghost {
  -webkit-text-stroke-color: rgba(245, 124, 0, 0.6);
}

.persona__card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: clamp(1.5rem, 2.8vw, 2.4rem);
  background: linear-gradient(180deg, rgba(74, 16, 16, 0.78) 0%, rgba(20, 4, 4, 0.88) 100%);
  border: 1px solid rgba(245, 124, 0, 0.28);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.55);
  transition: transform 500ms var(--ease-out),
              border-color 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
  overflow: hidden;
}
.persona__card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-accent), var(--c-accent-light), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 600ms var(--ease-out);
}
.persona:hover .persona__card {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.55);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.7);
}
.persona:hover .persona__card::before { transform: scaleY(1); }

.persona__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: rgba(245, 124, 0, 0.14);
  color: var(--c-accent);
  border: 1px solid rgba(245, 124, 0, 0.35);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.persona__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.4vw + 0.6rem, 1.55rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.persona__desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}
.persona__arrow {
  width: 42px;
  height: 42px;
  margin-top: var(--space-md);
  color: var(--c-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.persona:hover .persona__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .audience__stack { gap: clamp(3rem, 7vw, 4.5rem); }
  .persona {
    min-height: 0;
    padding: 0 !important;
    justify-content: center !important;
    display: block;
  }
  .persona__card { max-width: 100%; width: 100%; }
  .persona__ghost {
    font-size: clamp(7rem, 22vw, 10rem);
    left: auto !important;
    right: -0.4rem !important;
    top: -2.2rem;
    transform: none;
    opacity: 0.7;
    line-height: 0.8;
  }
  .persona[data-side="right"] .persona__ghost {
    left: -0.4rem !important;
    right: auto !important;
  }
}
@media (max-width: 560px) {
  .persona__ghost { font-size: 6.5rem; top: -1.6rem; }
  .persona__card { padding: 1.2rem; }
  .persona__title { font-size: 1.08rem; }
  .persona__desc { font-size: 0.92rem; }
}

/* ============ Section: Grade curricular (horizontal pinned) ============ */
.curriculum {
  position: relative;
  background-color: #fdfbf7;
  color: #1a1a1a;
  overflow: hidden;
  isolation: isolate;
}
.curriculum::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 55% 40% at 12% 18%, rgba(245, 124, 0, 0.18), transparent 65%),
    radial-gradient(ellipse 50% 45% at 88% 82%, rgba(107, 26, 26, 0.14), transparent 65%);
}
.curriculum::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(74, 16, 16, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74, 16, 16, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}

.curriculum__intro,
.curriculum__outro {
  position: relative;
  z-index: 1;
}
.curriculum__intro {
  padding-block: clamp(1.5rem, 3vw, 2.8rem) clamp(1rem, 2vw, 1.6rem);
  flex-shrink: 0;
}
.curriculum__outro {
  padding-block: var(--space-block) var(--space-section-y);
}

.curriculum__header {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.curriculum__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2.2rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.curriculum__title em {
  font-style: normal;
  color: var(--burgundy-dark);
}
.curriculum__meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  box-shadow: 0 12px 30px -22px rgba(74, 16, 16, 0.35);
}
.curriculum__meta-item strong { color: var(--c-accent); font-weight: 900; }
.curriculum__meta-sep { color: rgba(245, 124, 0, 0.55); }

/* pinned stage — header + horizontal track together */
.curriculum__pin {
  position: relative;
  z-index: 1;
  height: 100vh;
  max-height: 860px;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding-top: clamp(1rem, 2vw, 1.8rem);
}
.curriculum__stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}
.curriculum__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.8rem);
  padding: 0 8vw;
  margin: 0;
  list-style: none;
  will-change: transform;
}

.module {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 27vw, 360px);
  min-height: 320px;
  padding: 0;
  background-color: var(--burgundy-dark);
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 42px -28px rgba(74, 16, 16, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  transition: transform 400ms var(--ease-out),
              border-color 300ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.module::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--burgundy);
  background-image:
    linear-gradient(180deg, rgba(10, 2, 2, 0) 55%, rgba(10, 2, 2, 0.55) 100%),
    var(--bg, none);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-bottom: 1px solid rgba(245, 124, 0, 0.32);
  flex: 0 0 auto;
  transition: transform 600ms var(--ease-out);
}
.module::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 0% 100%, rgba(245, 124, 0, 0.22), transparent 65%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.module:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.7);
  box-shadow: 0 38px 64px -22px rgba(0, 0, 0, 0.55);
}
.module:hover::before { transform: scale(1.04); }
.module:hover::after { opacity: 1; }
.module > * { position: relative; z-index: 1; }

/* Per-module background images (M\u00d3DULO 01..18.jpg) */
.module:nth-child(1)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2001.jpg'); }
.module:nth-child(2)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2002.jpg'); }
.module:nth-child(3)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2003.jpg'); }
.module:nth-child(4)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2004.jpg'); }
.module:nth-child(5)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2005.jpg'); }
.module:nth-child(6)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2006.jpg'); }
.module:nth-child(7)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2007.png'); }
.module:nth-child(8)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2008.png'); }
.module:nth-child(9)  { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2009.png'); }
.module:nth-child(10) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2010.png'); }
.module:nth-child(11) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2011.png'); }
.module:nth-child(12) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2012.png'); }
.module:nth-child(13) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2013.png'); }
.module:nth-child(14) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2014.png'); }
.module:nth-child(15) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2015.png'); }
.module:nth-child(16) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2016.png'); }
.module:nth-child(17) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2017.png'); }
.module:nth-child(18) { --bg: url('https://pub-25f362f13fb94d7a85fe7d2ad44eada8.r2.dev/M%C3%93DULO%2018.png'); }

.module__num {
  position: absolute;
  top: clamp(0.7rem, 1.2vw, 1rem);
  left: clamp(0.8rem, 1.4vw, 1.1rem);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  margin: 0;
  padding: 0.4rem 0.7rem;
  background: rgba(74, 16, 16, 0.78);
  border: 1px solid rgba(245, 124, 0, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.module__num::before {
  content: 'Módulo ';
  color: var(--c-accent);
  margin-right: 0.15rem;
}
.module__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  padding: clamp(1rem, 1.6vw, 1.3rem) clamp(1.2rem, 1.8vw, 1.5rem) 0;
}
.module__teacher {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  min-height: 1.2em;
  margin: clamp(0.7rem, 1.2vw, 1rem) clamp(1.2rem, 1.8vw, 1.5rem) 0;
  padding: clamp(0.7rem, 1.2vw, 0.9rem) 0 clamp(1.1rem, 1.6vw, 1.4rem);
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  margin-top: auto;
}

/* rail / progress indicator at bottom of pin */
.curriculum__rail {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 3.5rem;
  height: 32px;
  display: flex;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}
.curriculum__rail-track {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: rgba(74, 16, 16, 0.12);
  border-radius: 2px;
}
.curriculum__rail-fill {
  position: absolute;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.5);
}
.curriculum__rail-label {
  position: absolute;
  right: 0;
  bottom: 14px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  opacity: 0.7;
}

.curriculum__note {
  margin: 0 auto var(--space-lg);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.55);
  font-style: italic;
}

/* Mobile: disable pin, show as scrollable flex row */
@media (max-width: 900px) {
  .curriculum__pin {
    height: auto;
    max-height: none;
    min-height: 0;
    padding-block: var(--space-section-y) var(--space-block);
    display: block;
    overflow: visible;
  }
  .curriculum__intro { padding-block: 0 var(--space-block); }
  .curriculum__stage {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex: none;
    width: 100%;
    max-width: 100vw;
  }
  .curriculum__track { padding: 0 var(--gutter); }
  .module { scroll-snap-align: start; width: 80vw; max-width: 320px; min-height: 300px; }
  .curriculum__rail { display: none; }
}

/* ============ Section: Coordenadores ============ */
.coords {
  position: relative;
  background: var(--burgundy-dark);
  color: var(--white);
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.coords__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.coords__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
}
.coords__orb--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: 10%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.55), transparent 65%);
}
.coords__orb--2 {
  width: 680px;
  height: 680px;
  bottom: -260px;
  right: 5%;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.7), transparent 65%);
}
.coords::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
}
.coords > .container { position: relative; z-index: 1; }

.coords__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.coords__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.coords__title em { color: var(--c-accent); font-style: normal; }

.coords__duo {
  display: flex;
  flex-direction: column;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 920px;
  margin: 0 auto;
}
.coord {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
  align-items: start;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(135deg, rgba(74, 16, 16, 0.7) 0%, rgba(10, 2, 2, 0.88) 100%);
  border: 1px solid rgba(245, 124, 0, 0.28);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease-out),
              border-color 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.coord::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 124, 0, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  z-index: 0;
}
.coord::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--c-accent) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 700ms var(--ease-out);
  z-index: 2;
}
.coord:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.6);
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.7);
}
.coord:hover::before { opacity: 1; }
.coord:hover::after { transform: scaleX(1); }
.coord > * { position: relative; z-index: 1; }

.coord__ghost {
  position: absolute;
  top: -3rem;
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 124, 0, 0.22);
  letter-spacing: -0.04em;
  z-index: 0 !important;
  pointer-events: none;
  will-change: transform;
}
.coord[data-side="left"]  .coord__ghost { right: -2rem; }
.coord[data-side="right"] .coord__ghost { left: -2rem; }

/* Media column */
.coord__media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.coord__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--burgundy) 100%);
  transition: transform 600ms var(--ease-out);
}
.coord__photo::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.coord__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out), filter 600ms var(--ease-out);
  filter: saturate(0.95) brightness(0.92);
}
.coord:hover .coord__photo img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}
.coord__photo-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(245, 124, 0, 0.6);
  border-radius: calc(var(--radius-md) - 4px);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.coord:hover .coord__photo-frame {
  opacity: 1;
  transform: scale(1);
}
.coord__photo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--c-accent);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.coord__photo-corner--tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
  transform: translate(-4px, -4px);
}
.coord__photo-corner--br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
  transform: translate(4px, 4px);
}
.coord:hover .coord__photo-corner {
  opacity: 1;
  transform: translate(0, 0);
}
.coord__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(245, 124, 0, 0.14);
  border: 1px solid rgba(245, 124, 0, 0.45);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.coord__badge svg { width: 14px; height: 14px; }

/* Info column */
.coord__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
  padding-top: var(--space-xs);
}
.coord__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.coord__kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.2);
}
.coord__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw + 0.5rem, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.015em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
}
.coord__name-prefix {
  display: inline-block;
  color: var(--c-accent);
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.9;
}
.coord__name-main {
  display: block;
  text-wrap: balance;
}
.coord__bio {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-top: var(--space-xs);
  padding-left: var(--space-md);
  border-left: 2px solid rgba(245, 124, 0, 0.45);
  max-width: 48ch;
}
.coord__bio strong {
  color: var(--white);
  font-weight: 800;
}
.coord__bio em {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 600;
}
.coord__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding: var(--space-md) 0 var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.coord__spec {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.coord__spec-label {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.coord__spec-value {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}
.coord__cv {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  padding: 0.7rem 1.1rem;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(245, 124, 0, 0.45);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  transition: background 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              color 300ms var(--ease-out),
              transform 300ms var(--ease-out);
}
.coord__cv svg {
  width: 16px;
  height: 16px;
  transition: transform 400ms var(--ease-out);
}
.coord__cv:hover {
  background: var(--c-accent);
  color: var(--white);
  border-color: var(--c-accent);
}
.coord__cv:hover svg { transform: translateX(4px); }

/* Alternating layout: second coord mirrors (photo on right) */
.coord[data-side="right"] {
  grid-template-columns: 1fr 260px;
}
.coord[data-side="right"] .coord__media { order: 2; }
.coord[data-side="right"] .coord__info { order: 1; }
.coord[data-side="right"] .coord__info,
.coord[data-side="right"] .coord__name,
.coord[data-side="right"] .coord__kicker { text-align: right; }
.coord[data-side="right"] .coord__name { align-items: flex-end; }
.coord[data-side="right"] .coord__kicker { align-self: flex-end; }
.coord[data-side="right"] .coord__cv { align-self: flex-end; }
.coord[data-side="right"] .coord__bio {
  padding-left: 0;
  padding-right: var(--space-md);
  border-left: none;
  border-right: 2px solid rgba(245, 124, 0, 0.45);
  margin-left: auto;
}

@media (max-width: 720px) {
  .coord,
  .coord[data-side="right"] {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: var(--space-lg);
    padding: 1.4rem;
  }
  .coord[data-side="right"] .coord__media { order: 0; }
  .coord[data-side="right"] .coord__info { order: 1; }
  .coord[data-side="right"] .coord__info,
  .coord[data-side="right"] .coord__name,
  .coord[data-side="right"] .coord__kicker { text-align: left; }
  .coord[data-side="right"] .coord__name { align-items: flex-start; }
  .coord[data-side="right"] .coord__kicker,
  .coord[data-side="right"] .coord__cv { align-self: flex-start; }
  .coord[data-side="right"] .coord__bio {
    padding-left: var(--space-sm);
    padding-right: 0;
    border-left: 2px solid rgba(245, 124, 0, 0.45);
    border-right: none;
    margin-left: 0;
  }
  .coord__media { width: 100%; align-items: center; }
  .coord__photo {
    max-width: min(100%, 360px);
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }
  .coord__photo img {
    object-fit: contain;
    object-position: center bottom;
  }
  .coord__bio { padding-left: var(--space-sm); max-width: none; }
  .coord__ghost {
    font-size: clamp(9rem, 35vw, 14rem);
    top: auto;
    bottom: -2rem;
  }
  .coord[data-side="left"]  .coord__ghost { right: -1rem; left: auto; }
  .coord[data-side="right"] .coord__ghost { left: -1rem; right: auto; }
  .coord__specs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.4rem; }
  .coord__spec-label { font-size: 0.6rem; }
  .coord__spec-value { font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .coord { padding: 1.1rem; }
  .coord__name { font-size: 1.4rem !important; }
  .coord__bio { font-size: 0.9rem; }
  .coord__specs { grid-template-columns: 1fr 1fr; }
}

/* ============ Section: Corpo docente ============ */
.faculty {
  position: relative;
  background-color: #fdfbf7;
  color: #1a1a1a;
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.faculty::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 60% 45% at 50% 10%, rgba(245, 124, 0, 0.15), transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 90%, rgba(107, 26, 26, 0.12), transparent 65%);
}
.faculty > .container { position: relative; z-index: 1; }

.faculty__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faculty__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.faculty__title em {
  font-style: normal;
  color: var(--burgundy-dark);
}

/* --- Expanding gallery: inactive cards are narrow, active one expands --- */
.faculty__gallery {
  display: flex;
  gap: clamp(0.6rem, 1vw, 1rem);
  padding: 0;
  margin: 0;
  list-style: none;
  height: clamp(420px, 55vw, 560px);
  perspective: 1200px;
}
.teacher {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 42px -30px rgba(74, 16, 16, 0.35);
  transition: flex-grow 850ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 500ms var(--ease-out);
  will-change: flex-grow;
}
.teacher.is-active {
  flex-grow: 4.5;
  box-shadow: 0 40px 80px -28px rgba(74, 16, 16, 0.5);
}
.teacher__btn {
  all: unset;
  display: block;
  position: absolute;
  inset: 0;
  cursor: pointer;
  border-radius: inherit;
  isolation: isolate;
}
.teacher__btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
.teacher__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--burgundy) 100%);
}
.teacher__photo::after {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
}
.teacher__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.7) brightness(0.65);
  transform: scale(1);
  transition: filter 900ms var(--ease-out),
              transform 1400ms var(--ease-out);
}
.teacher.is-active .teacher__photo img {
  filter: saturate(1) brightness(0.95);
  transform: scale(1.06);
}

.teacher__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 4, 4, 0.1) 0%, rgba(10, 4, 4, 0.45) 55%, rgba(5, 2, 2, 0.92) 100%),
    linear-gradient(135deg, rgba(74, 16, 16, 0.5) 0%, transparent 60%);
  transition: opacity 500ms var(--ease-out);
}

.teacher__num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(245, 124, 0, 0.45);
  background: rgba(10, 4, 4, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 6px;
}

/* vertical name — shown on inactive cards */
.teacher__vname {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 3;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center bottom;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 1;
  transition: opacity 350ms var(--ease-out);
  pointer-events: none;
}
.teacher.is-active .teacher__vname {
  opacity: 0;
}

/* full info block — only visible on active card */
.teacher__info {
  position: absolute;
  left: clamp(1.2rem, 2vw, 2rem);
  right: clamp(1.2rem, 2vw, 2rem);
  bottom: clamp(1.2rem, 2vw, 1.8rem);
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms 200ms var(--ease-out),
              transform 600ms 200ms var(--ease-out);
  pointer-events: none;
}
.teacher.is-active .teacher__info {
  opacity: 1;
  transform: translateY(0);
}
.teacher__info-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  background: rgba(245, 124, 0, 0.16);
  border: 1px solid rgba(245, 124, 0, 0.5);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.3rem;
}
.teacher__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.6vw + 0.4rem, 1.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.teacher__subject {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  max-width: 52ch;
}

/* Accent bar that grows on active */
.teacher::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms var(--ease-out);
  z-index: 4;
  pointer-events: none;
}
.teacher.is-active::after {
  transform: scaleX(1);
}

@media (max-width: 900px) {
  .faculty__gallery {
    flex-wrap: wrap;
    height: auto;
  }
  .teacher {
    flex: 1 1 calc(50% - 0.6rem);
    height: 340px;
  }
  .teacher.is-active { flex-grow: 1; }
  .teacher__vname { display: none; }
  .teacher__info {
    opacity: 1;
    transform: translateY(0);
  }
  .teacher::after { transform: scaleX(1); }
}
@media (max-width: 560px) {
  .teacher { flex: 1 1 100%; height: 320px; }
}

/* ============ Section: FAQ ============ */
.faq {
  position: relative;
  background: var(--burgundy);
  color: var(--white);
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 55% 45% at 10% 15%, rgba(245, 124, 0, 0.18), transparent 65%),
    radial-gradient(ellipse 55% 45% at 90% 85%, rgba(245, 124, 0, 0.12), transparent 65%);
}
.faq::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
}
.faq > .container {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.faq__header {
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.faq__title em { color: var(--c-accent); font-style: normal; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  position: relative;
  background: linear-gradient(180deg, rgba(74, 16, 16, 0.55) 0%, rgba(20, 4, 4, 0.78) 100%);
  border: 1px solid rgba(245, 124, 0, 0.22);
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 300ms var(--ease-out),
              transform 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 500ms var(--ease-out);
  z-index: 1;
}
.faq-item:hover {
  border-color: rgba(245, 124, 0, 0.45);
  transform: translateX(4px);
}
.faq-item:hover::before,
.faq-item details[open] ~ ::before,
.faq-item:has(details[open])::before { transform: scaleY(1); }
.faq-item details[open] {
  border-color: var(--c-accent);
}
.faq-item:has(details[open]) {
  border-color: var(--c-accent);
  box-shadow: 0 28px 50px -28px rgba(0, 0, 0, 0.6);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-accent-light); }

.faq-item__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-accent);
  line-height: 1;
  min-width: 2.2rem;
  transition: transform 400ms var(--ease-out);
}
.faq-item:has(details[open]) .faq-item__num {
  transform: scale(1.15);
}
.faq-item__q { flex: 1; }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--c-accent);
  transition: transform 500ms var(--ease-out),
              background 300ms var(--ease-out);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--c-accent);
  transition: transform 400ms var(--ease-out),
              background 300ms var(--ease-out);
}
.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item details[open] .faq-item__icon {
  background: var(--c-accent);
  transform: rotate(180deg);
}
.faq-item details[open] .faq-item__icon::before,
.faq-item details[open] .faq-item__icon::after {
  background: var(--burgundy-dark);
}
.faq-item details[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-item__a {
  padding: 0 1.5rem 1.4rem calc(1.5rem + 2.2rem + var(--space-md));
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  animation: faq-reveal 450ms var(--ease-out);
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-10px); clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0% 0); }
}

@media (max-width: 560px) {
  .faq-item summary { padding: 1rem 1.1rem; font-size: 0.95rem; }
  .faq-item__num { font-size: 1.25rem; min-width: 1.8rem; }
  .faq-item__a { padding: 0 1.1rem 1rem calc(1.1rem + 1.8rem + var(--space-sm)); }
}

/* ============ Lead capture modal ============ */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 350ms var(--ease-out), visibility 350ms var(--ease-out);
}
.lead-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 4, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.5rem, 3.5vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ec 100%);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 60px 120px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(30px) scale(0.96);
  transition: transform 450ms var(--ease-out);
  isolation: isolate;
}
.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}
.lead-modal__dialog::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--c-accent) 50%, transparent 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.lead-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74, 16, 16, 0.08);
  color: var(--burgundy-dark);
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
  z-index: 2;
}
.lead-modal__close:hover {
  background: var(--c-accent);
  color: var(--white);
  transform: rotate(90deg);
}
.lead-modal__close svg { width: 20px; height: 20px; }

.lead-modal__head {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.lead-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}
.lead-modal__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.18);
}
.lead-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw + 0.5rem, 1.8rem);
  font-weight: 900;
  color: var(--burgundy-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.lead-modal__subtitle {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.65);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lead-field__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
}
.lead-field input,
.lead-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1.5px solid rgba(74, 16, 16, 0.18);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #1a1a1a;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.lead-field input::placeholder {
  color: rgba(26, 26, 26, 0.35);
}
.lead-field input:focus,
.lead-field select:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.18);
}
.lead-field input:invalid:not(:placeholder-shown),
.lead-field select:invalid:not(:focus) {
  border-color: rgba(199, 60, 60, 0.5);
}

.lead-field__select {
  position: relative;
}
.lead-field__select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.lead-field__select select:required:invalid {
  color: rgba(26, 26, 26, 0.35);
}
.lead-field__select option {
  color: #1a1a1a;
}
.lead-field__select option[disabled] {
  color: rgba(26, 26, 26, 0.35);
}
.lead-field__chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--burgundy-dark);
  pointer-events: none;
}

.modal-submit {
  margin-top: 0.6rem;
  padding: 1.1rem 1.4rem;
  background: var(--c-cta);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 250ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 300ms var(--ease-out);
  box-shadow: 0 16px 32px -14px rgba(22, 163, 74, 0.6);
}
.modal-submit svg { width: 18px; height: 18px; transition: transform 350ms var(--ease-out); }
.modal-submit:hover {
  background: var(--c-cta-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(22, 163, 74, 0.75);
}
.modal-submit:hover svg { transform: translateX(4px); }
.modal-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.lead-form__disclaimer {
  font-size: 0.76rem;
  color: rgba(26, 26, 26, 0.5);
  text-align: center;
  line-height: 1.45;
  margin-top: 0.3rem;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .lead-modal { padding: 0.8rem; align-items: flex-end; }
  .lead-modal__dialog {
    max-width: 100%;
    max-height: calc(100vh - 1rem);
    border-radius: 18px 18px 0 0;
    padding: 1.6rem 1.2rem;
  }
  .lead-modal__head { margin-bottom: 1.2rem; padding-right: 1.5rem; }
  .lead-modal__title { font-size: 1.35rem; }
  .lead-field input,
  .lead-field select { padding: 0.8rem 0.9rem; font-size: 0.95rem; }
  .modal-submit { padding: 1rem 1.2rem; font-size: 0.95rem; }
}

/* ============================================================ */
/* ============ V2 SECTIONS ==================================== */
/* ============================================================ */

/* ============ VSL (Video Sales Letter) ============ */
.vsl {
  position: relative;
  background: var(--burgundy-dark);
  color: var(--white);
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.vsl__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.vsl__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
}
.vsl__orb--1 {
  width: 560px; height: 560px; top: -180px; left: 8%;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.55), transparent 65%);
}
.vsl__orb--2 {
  width: 620px; height: 620px; bottom: -220px; right: 5%;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.7), transparent 65%);
}
.vsl::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
}
.vsl > .container { position: relative; z-index: 1; }

.vsl__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vsl__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.vsl__title em { color: var(--c-accent); font-style: normal; }

.vsl__player {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0a0202 0%, #1a0707 100%);
  border: 1px solid rgba(245, 124, 0, 0.35);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  isolation: isolate;
}
.vsl__player::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245, 124, 0, 0.12), transparent 70%),
    linear-gradient(135deg, rgba(74, 16, 16, 0.5), rgba(10, 2, 2, 0.8));
  z-index: 1;
}
.vsl__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
    135deg,
    rgba(245, 124, 0, 0.06) 0%,
    rgba(245, 124, 0, 0.02) 50%,
    rgba(107, 26, 26, 0.06) 100%
  );
}
.vsl__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 10vw, 110px);
  height: clamp(72px, 10vw, 110px);
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.5);
  animation: vsl-pulse 2.2s var(--ease-in-out) infinite;
  transition: transform 300ms var(--ease-out), background 300ms var(--ease-out);
}
.vsl__play svg { width: 42%; height: 42%; margin-left: 6%; }
.vsl__play:hover {
  background: var(--c-accent-light);
  transform: translate(-50%, -50%) scale(1.1);
}
@keyframes vsl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.55); }
  50%      { box-shadow: 0 0 0 22px rgba(245, 124, 0, 0); }
}
.vsl__hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.8rem);
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 0.5rem 1rem;
  background: rgba(10, 2, 2, 0.75);
  border: 1px solid rgba(245, 124, 0, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ============ Por que agora (stats section) ============ */
.why-now {
  position: relative;
  background-color: #fdfbf7;
  color: #1a1a1a;
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.why-now__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.why-now__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.why-now__orb--1 {
  width: 540px; height: 540px; top: -160px; left: -120px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.35), transparent 65%);
}
.why-now__orb--2 {
  width: 560px; height: 560px; bottom: -200px; right: -120px;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.25), transparent 65%);
}
.why-now::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(74, 16, 16, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(74, 16, 16, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
}
.why-now > .container { position: relative; z-index: 1; }

.why-now__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-now__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.why-now__title em {
  font-style: normal;
  color: var(--burgundy-dark);
}

.why-now__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0;
  margin: 0 0 var(--space-block);
  list-style: none;
}
.stat-big {
  position: relative;
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ec 100%);
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 42px -30px rgba(74, 16, 16, 0.35);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease-out),
              border-color 400ms var(--ease-out),
              box-shadow 500ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.stat-big::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 600ms var(--ease-out);
}
.stat-big:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.5);
  box-shadow: 0 34px 58px -24px rgba(74, 16, 16, 0.38);
}
.stat-big:hover::before { transform: scaleY(1); }
.stat-big__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw + 0.5rem, 3.4rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--c-accent);
  letter-spacing: -0.02em;
}
.stat-big__text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.78);
  flex: 1;
}
.stat-big__source {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy-dark);
  padding-top: var(--space-sm);
  border-top: 1px dashed rgba(74, 16, 16, 0.18);
}

.why-now__callout {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(2rem, 3.5vw, 2.8rem);
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -24px rgba(74, 16, 16, 0.5);
  color: var(--white);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}
.why-now__callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(245, 124, 0, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(245, 124, 0, 0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.why-now__callout > * { position: relative; z-index: 1; }
.why-now__callout-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  background: var(--c-accent);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.why-now__callout-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.why-now__callout-text em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 800;
}
.why-now__callout-text strong {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .why-now__grid { grid-template-columns: 1fr; }
  .why-now__callout { flex-direction: column; }
}

/* ============ Photo Block ============ */
.photo-block {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--burgundy-dark);
  overflow: hidden;
  isolation: isolate;
}
.photo-block__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.photo-block__img {
  width: 100%;
  height: clamp(360px, 55vw, 560px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 124, 0, 0.3);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
  display: block;
}
.photo-block.is-placeholder .photo-block__img {
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--burgundy) 50%, var(--burgundy-dark) 100%);
}
.photo-block__overlay {
  position: absolute;
  inset: 0;
  margin: 0 var(--gutter);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 40%, rgba(10, 2, 2, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.photo-block__caption {
  position: absolute;
  left: calc(var(--gutter) + clamp(1.5rem, 3vw, 3rem));
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: calc(var(--gutter) + clamp(1.5rem, 3vw, 3rem));
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 640px;
}
.photo-block__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  background: rgba(245, 124, 0, 0.14);
  border: 1px solid rgba(245, 124, 0, 0.5);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.photo-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw + 0.5rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.photo-block__text em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 600;
}

/* ============ 4 Pilares ============ */
.pillars {
  position: relative;
  background-color: #fdfbf7;
  color: #1a1a1a;
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.pillars__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.pillars__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
}
.pillars__orb--1 {
  width: 560px; height: 560px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.4), transparent 65%);
}
.pillars__orb--2 {
  width: 580px; height: 580px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(107, 26, 26, 0.3), transparent 65%);
}
.pillars > .container { position: relative; z-index: 1; }

.pillars__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pillars__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.pillars__title em {
  font-style: normal;
  color: var(--burgundy-dark);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0;
  margin: 0 0 var(--space-block);
  list-style: none;
  counter-reset: pillar;
}
.pillar {
  position: relative;
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: clamp(1.6rem, 2.8vw, 2.4rem);
  background: linear-gradient(180deg, #ffffff 0%, #fbf5ec 100%);
  border: 1px solid rgba(245, 124, 0, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 42px -28px rgba(74, 16, 16, 0.3);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease-out),
              border-color 400ms var(--ease-out),
              box-shadow 500ms var(--ease-out);
}
.pillar::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--c-accent), var(--burgundy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 600ms var(--ease-out);
}
.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 100%, rgba(245, 124, 0, 0.12), transparent 65%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  pointer-events: none;
  z-index: 0;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.55);
  box-shadow: 0 34px 58px -24px rgba(74, 16, 16, 0.38);
}
.pillar:hover::before { transform: scaleY(1); }
.pillar:hover::after { opacity: 1; }
.pillar > * { position: relative; z-index: 1; }

.pillar__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-accent);
  letter-spacing: -0.03em;
  align-self: flex-start;
}
.pillar__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.pillar__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw + 0.4rem, 1.35rem);
  font-weight: 800;
  color: var(--burgundy-dark);
  line-height: 1.15;
}
.pillar__desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.72);
}
.pillar__desc em {
  font-style: normal;
  font-weight: 700;
  color: var(--burgundy-dark);
  background: linear-gradient(180deg, transparent 60%, rgba(245, 124, 0, 0.22) 60%);
  padding: 0 0.12em;
}

@media (max-width: 820px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { flex-direction: row; }
}
@media (max-width: 520px) {
  .pillar { flex-direction: column; gap: var(--space-sm); }
}

/* ============ Dois caminhos ============ */
.paths {
  position: relative;
  background: var(--burgundy);
  color: var(--white);
  padding-block: var(--space-section-y);
  overflow: hidden;
  isolation: isolate;
}
.paths__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.paths__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
}
.paths__orb--1 {
  width: 620px; height: 620px; top: -200px; left: -160px;
  background: radial-gradient(circle, rgba(199, 60, 60, 0.6), transparent 65%);
}
.paths__orb--2 {
  width: 640px; height: 640px; bottom: -240px; right: -180px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.55), transparent 65%);
}
.paths::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 85%);
}
.paths > .container { position: relative; z-index: 1; }

.paths__header {
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.paths__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw + 0.6rem, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.paths__title em { color: var(--c-accent); font-style: normal; }

.paths__duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.paths__duo::before {
  content: 'VS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(56px, 6vw, 76px);
  height: clamp(56px, 6vw, 76px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--white);
  box-shadow: 0 20px 40px -10px rgba(245, 124, 0, 0.6), 0 0 0 8px rgba(245, 124, 0, 0.12);
  pointer-events: none;
}

.path {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease-out),
              border-color 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.path--bad {
  background: linear-gradient(180deg, rgba(20, 6, 6, 0.82) 0%, rgba(10, 2, 2, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}
.path--good {
  background: linear-gradient(180deg, rgba(245, 124, 0, 0.1) 0%, rgba(74, 16, 16, 0.7) 100%);
  border: 1px solid rgba(245, 124, 0, 0.45);
  color: var(--white);
  box-shadow: 0 30px 60px -24px rgba(245, 124, 0, 0.35);
}
.path:hover {
  transform: translateY(-6px);
}
.path--bad:hover { border-color: rgba(255, 255, 255, 0.18); }
.path--good:hover {
  border-color: rgba(245, 124, 0, 0.7);
  box-shadow: 0 40px 80px -24px rgba(245, 124, 0, 0.5);
}

.path__ghost {
  position: absolute;
  top: -2.5rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
  z-index: 0;
  pointer-events: none;
}
.path--good .path__ghost {
  -webkit-text-stroke-color: rgba(245, 124, 0, 0.25);
}

.path__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
}
.path--good .path__num {
  background: rgba(245, 124, 0, 0.2);
  border-color: rgba(245, 124, 0, 0.5);
  color: var(--c-accent-light);
}

.path__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw + 0.4rem, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-lg);
  max-width: 26ch;
}
.path--bad .path__title { color: rgba(255, 255, 255, 0.9); }
.path--good .path__title { color: var(--white); }

.path__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0;
  margin: 0;
  list-style: none;
}
.path__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.96rem;
  line-height: 1.5;
}
.path__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: 2px;
}
.path__icon svg { width: 14px; height: 14px; }
.path--bad .path__icon {
  background: rgba(199, 60, 60, 0.2);
  color: rgba(255, 100, 100, 0.9);
  border: 1px solid rgba(199, 60, 60, 0.45);
}
.path--good .path__icon {
  background: rgba(245, 124, 0, 0.22);
  color: var(--c-accent);
  border: 1px solid rgba(245, 124, 0, 0.55);
}

.paths__closing {
  max-width: 820px;
  margin: var(--space-block) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw + 0.4rem, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: balance;
}
.paths__closing em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
}
.paths__closing strong {
  color: var(--c-accent);
  font-weight: 900;
}

@media (max-width: 900px) {
  .paths__duo { grid-template-columns: 1fr; gap: var(--space-xl); }
  .paths__duo::before {
    top: calc(50% - var(--space-md));
    left: 50%;
  }
}
@media (max-width: 560px) {
  .paths__duo::before { display: none; }
}

/* ================================================================== */
/* ============ V2 — Kinetic Hero (recriação) ======================= */
/* ================================================================== */

.kinetic-hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(6rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background: var(--burgundy);
  color: var(--white);
}

.kinetic-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.kinetic-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.kinetic-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(74, 16, 16, 0.55) 0%, rgba(10, 2, 2, 0.88) 75%),
    linear-gradient(180deg, rgba(10, 2, 2, 0.4) 0%, rgba(74, 16, 16, 0.7) 55%, rgba(10, 2, 2, 0.92) 100%);
}
.kinetic-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 50%, #000 35%, transparent 80%);
}
.kinetic-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.kinetic-hero__strip {
  position: absolute;
  top: 50%;
  left: clamp(1.2rem, 2.5vw, 2.2rem);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  display: inline-flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  z-index: 2;
  will-change: transform;
}
.kinetic-hero__strip-label { color: var(--c-accent); }
.kinetic-hero__strip-meta { color: rgba(255, 255, 255, 0.8); }
.kinetic-hero__strip-sep {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.kinetic-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
}

.kinetic-hero__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.1rem, 1.8vw, 1.8rem);
  will-change: transform;
}

.kinetic-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.5rem 1.1rem;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 700;
  font-family: var(--font-display);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kinetic-hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.22);
  animation: dot-pulse 2.2s var(--ease-in-out) infinite;
}

.kinetic-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw + 0.6rem, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}
.kinetic-hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.kinetic-hero__line em {
  font-style: normal;
  color: var(--c-accent);
  position: relative;
  white-space: nowrap;
}

.kinetic-hero__line--rotator {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: 1em;
}
.kinetic-hero__rotator {
  position: relative;
  display: inline-block;
  min-width: 7ch;
  height: 1em;
  vertical-align: top;
}
.kinetic-hero__rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: var(--c-accent);
  opacity: 0;
  transform: translateY(110%) skewY(4deg);
  white-space: nowrap;
  will-change: transform, opacity;
  transition: transform 780ms var(--ease-out), opacity 600ms var(--ease-out);
  font-style: italic;
}
.kinetic-hero__rotator-word.is-active {
  opacity: 1;
  transform: translateY(0) skewY(0);
}
.kinetic-hero__rotator-word.is-exit {
  opacity: 0;
  transform: translateY(-110%) skewY(-4deg);
}

.kinetic-hero__lead {
  max-width: 52ch;
  font-size: clamp(0.98rem, 0.6vw + 0.7rem, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.kinetic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-sm);
}

.kinetic-hero__deck {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  align-self: center;
  will-change: transform;
}
.kinetic-hero__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  padding: clamp(1rem, 1.6vw, 1.35rem) clamp(1.2rem, 2vw, 1.6rem);
  background: linear-gradient(135deg, rgba(74, 16, 16, 0.65) 0%, rgba(20, 4, 4, 0.8) 100%);
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  isolation: isolate;
  transition: transform 500ms var(--ease-out), border-color 500ms var(--ease-out);
  will-change: transform;
}
.kinetic-hero__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(245, 124, 0, 0.2), transparent 65%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
  z-index: 0;
}
.kinetic-hero__card:hover {
  transform: translateX(-6px);
  border-color: rgba(245, 124, 0, 0.6);
}
.kinetic-hero__card:hover::before { opacity: 1; }
.kinetic-hero__card > * { position: relative; z-index: 1; }

.kinetic-hero__card-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw + 0.4rem, 2rem);
  font-weight: 900;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-accent);
  letter-spacing: -0.02em;
}
.kinetic-hero__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.kinetic-hero__card-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.kinetic-hero__card-title {
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 0.8vw + 0.5rem, 1.05rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
}
.kinetic-hero__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.18);
  border: 1px solid rgba(245, 124, 0, 0.5);
  color: var(--c-accent);
  transition: transform 400ms var(--ease-out), background 400ms var(--ease-out);
}
.kinetic-hero__card-arrow svg { width: 14px; height: 14px; }
.kinetic-hero__card:hover .kinetic-hero__card-arrow {
  background: var(--c-accent);
  color: var(--white);
  transform: translateX(4px);
}

/* ==== Coordinator photo (replaces deck on the right) ==== */
.kinetic-hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  width: 100%;
  justify-self: end;
  align-self: center;
  will-change: transform;
}
.kinetic-hero__media-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 175%;
  height: 175%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
}
.kinetic-hero__media-light {
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(2);
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.kinetic-hero__media-name {
  position: absolute;
  z-index: 4;
  bottom: 14%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.55rem 0.9rem;
  background: rgba(74, 16, 16, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 124, 0, 0.35);
  border-radius: 10px;
  box-shadow: 0 14px 32px -10px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  line-height: 1.15;
}
.kinetic-hero__media-name--left  { left: 8%; }
.kinetic-hero__media-name--right { right: 8%; }
.kinetic-hero__media-name-role {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 800;
}
.kinetic-hero__media-name-full {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
}

.kinetic-hero__scroll {
  position: absolute;
  bottom: clamp(1rem, 2.5vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  pointer-events: none;
}
.kinetic-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.kinetic-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--c-accent));
  animation: scroll-tick 1.8s var(--ease-in-out) infinite;
}
@keyframes scroll-tick {
  0%   { top: -50%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

@media (max-width: 1080px) {
  .kinetic-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-block);
  }
  .kinetic-hero__deck { max-width: 520px; width: 100%; }
  .kinetic-hero__media {
    justify-self: center;
    max-width: min(86vw, 440px);
    aspect-ratio: 4 / 4.4;
  }
  .kinetic-hero__strip { display: none; }
}
@media (max-width: 640px) {
  .kinetic-hero { padding-top: clamp(5rem, 12vw, 7rem); }
  .kinetic-hero__title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .kinetic-hero__scroll { display: none; }
  .kinetic-hero__card { padding: 0.9rem 1rem; }
  .kinetic-hero__media { max-width: min(90vw, 360px); aspect-ratio: 4 / 4.6; }
  .kinetic-hero__media-light { transform: translate(-50%, -50%) scale(1.5); }
  .kinetic-hero__media-name { padding: 0.45rem 0.7rem; }
  .kinetic-hero__media-name-full { font-size: 0.82rem; }
  .kinetic-hero__media-name-role { font-size: 0.6rem; }
  .kinetic-hero__media-name--left  { left: 4%; }
  .kinetic-hero__media-name--right { right: 4%; }
}

/* ================================================================== */
/* ============ V2 — Kinetic Deck (Áreas de atuação) ================ */
/* ================================================================== */

.kinetic-deck {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.kinetic-deck__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.6rem);
  /* padding-inline is set dynamically by JS (padTrack) so the first and
     last slides can snap perfectly to center. A fallback value prevents
     unstyled flash before JS runs. */
  padding-inline: 8vw;
  padding-block: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  outline: none;
}
.kinetic-deck__track::-webkit-scrollbar { display: none; }

.kinetic-deck__slide {
  position: relative;
  flex: 0 0 clamp(200px, 50vw, 476px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  isolation: isolate;
  box-shadow: 0 30px 60px -30px rgba(74, 16, 16, 0.5);
  transition: transform 800ms var(--ease-out), filter 800ms var(--ease-out), box-shadow 800ms var(--ease-out);
  will-change: transform, filter;
  transform: scale(0.9);
  filter: saturate(0.55) brightness(0.7);
}
.kinetic-deck__slide.is-focus {
  transform: scale(1);
  filter: saturate(1) brightness(1);
  box-shadow: 0 48px 90px -30px rgba(74, 16, 16, 0.7);
}

.kinetic-deck__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--burgundy-dark);
  overflow: hidden;
}
.kinetic-deck__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 2200ms var(--ease-out);
}
.kinetic-deck__slide.is-focus .kinetic-deck__video {
  transform: scale(1.08);
}
.kinetic-deck__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 2, 2, 0.18) 0%, rgba(10, 2, 2, 0.55) 55%, rgba(5, 1, 1, 0.92) 100%),
    linear-gradient(135deg, rgba(74, 16, 16, 0.45) 0%, transparent 60%);
}

.kinetic-deck__ghost {
  position: absolute;
  top: -0.3em;
  right: -0.18em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 124, 0, 0.32);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
}

.kinetic-deck__body {
  position: absolute;
  left: clamp(1.4rem, 3vw, 2.4rem);
  right: clamp(1.4rem, 3vw, 2.4rem);
  bottom: clamp(1.4rem, 3vw, 2.2rem);
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms 200ms var(--ease-out),
              transform 700ms 200ms var(--ease-out);
}
.kinetic-deck__slide.is-focus .kinetic-deck__body {
  opacity: 1;
  transform: translateY(0);
}
.kinetic-deck__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  background: rgba(245, 124, 0, 0.18);
  border: 1px solid rgba(245, 124, 0, 0.55);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.kinetic-deck__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw + 0.4rem, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  color: var(--white);
}
.kinetic-deck__desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  max-width: 52ch;
}
.kinetic-deck__arrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.25);
  border: 1px solid var(--c-accent);
  color: var(--white);
  transition: background 300ms var(--ease-out), transform 400ms var(--ease-out);
}
.kinetic-deck__arrow svg { width: 20px; height: 20px; }
.kinetic-deck__slide.is-focus:hover .kinetic-deck__arrow {
  background: var(--c-accent);
  transform: translateX(6px);
}

.kinetic-deck__hud {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  width: min(820px, 92vw);
  margin: 0 auto;
}
.kinetic-deck__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 54px);
  height: clamp(44px, 5vw, 54px);
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.45);
  color: var(--c-accent);
  cursor: pointer;
  transition: background 250ms var(--ease-out),
              border-color 250ms var(--ease-out),
              color 250ms var(--ease-out),
              transform 250ms var(--ease-out);
}
.kinetic-deck__btn svg { width: 20px; height: 20px; }
.kinetic-deck__btn:hover {
  background: var(--c-accent);
  color: var(--white);
  transform: scale(1.06);
}
.kinetic-deck__btn:active { transform: scale(0.96); }
.kinetic-deck__btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}
.kinetic-deck__btn[disabled]:hover {
  background: rgba(245, 124, 0, 0.1);
  color: var(--c-accent);
  transform: none;
}

.kinetic-deck__progress {
  position: relative;
  height: 3px;
  background: rgba(26, 26, 26, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.kinetic-deck__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16.66%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.55);
  transition: width 600ms var(--ease-out);
}

.kinetic-deck__counter {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--burgundy-dark);
  letter-spacing: 0.02em;
  min-width: 3.8rem;
  text-align: right;
}
.kinetic-deck__counter em {
  color: rgba(26, 26, 26, 0.35);
  font-style: normal;
  margin: 0 0.3em;
  font-weight: 700;
}
.kinetic-deck__current { color: var(--c-accent); min-width: 2ch; display: inline-block; }

.kinetic-deck__hint {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  /* padding-inline fallback only — JS overrides at runtime */
  .kinetic-deck__track { padding-inline: 6vw; }
  .kinetic-deck__slide { flex-basis: 60vw; aspect-ratio: 4 / 5.2; }
  .kinetic-deck__hud { grid-template-columns: auto auto 1fr auto; }
}
@media (max-width: 480px) {
  .kinetic-deck__slide { flex-basis: 72vw; }
}
@media (max-width: 480px) {
  .kinetic-deck__title { font-size: 1.5rem; }
  .kinetic-deck__desc { font-size: 0.92rem; }
}

/* ================================================================== */
/* ============ V2 — Infinite Deck (section 2, pinned) ============== */
/* ================================================================== */

.infinite-deck {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0202;
  isolation: isolate;
  color: #fff;
  /* ScrollTrigger pin will anchor this box while the user scrolls through
     a range equal to (NUM - 1) × viewport height.
     NOTE: do NOT use `margin-left: calc(50% - 50vw)` here — when the pin
     engages and the element becomes `position: fixed`, the negative-margin
     trick breaks and the layout shifts. Keep it simple: full-width inside
     its parent section. */
}

/* Full-bleed stack of slides */
.infinite-deck__list {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.infinite-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}
.infinite-slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
  will-change: transform;
  filter: saturate(0.9) brightness(0.75);
}
.infinite-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(10, 2, 2, 0.35) 0%, rgba(10, 2, 2, 0.55) 60%, rgba(10, 2, 2, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 2, 2, 0.62) 0%, rgba(10, 2, 2, 0.1) 55%, transparent 100%);
  pointer-events: none;
}

/* Left overlay — persistent headline + dynamic slide info */
.infinite-deck__content {
  position: absolute;
  left: clamp(1.8rem, 5vw, 4.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: min(54%, 640px);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1.3rem);
  pointer-events: none;
  font-family: var(--font-display);
}
.infinite-deck__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.4rem 0.95rem;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid rgba(245, 124, 0, 0.4);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.infinite-deck__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.22);
  animation: dot-pulse 2.2s var(--ease-in-out) infinite;
}

.infinite-deck__num-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.25);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}
.infinite-deck__num {
  display: inline-block;
  min-width: 1.8em;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  color: var(--c-accent);
  -webkit-text-stroke: 0;
}
.infinite-deck__num-sep {
  opacity: 0.5;
}
.infinite-deck__num-total {
  color: rgba(255, 255, 255, 0.35);
}

.infinite-deck__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw + 0.3rem, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  max-width: 18ch;
}
.infinite-deck__desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.8vw + 0.5rem, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 50ch;
  font-weight: 400;
}
.infinite-deck__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(0.8rem, 1.5vw, 1.4rem);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.infinite-deck__hint-line {
  width: 34px;
  height: 1px;
  background: var(--c-accent);
  position: relative;
  overflow: hidden;
}
.infinite-deck__hint-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--c-accent));
  animation: hint-slide 2.2s var(--ease-in-out) infinite;
}
@keyframes hint-slide {
  0%   { left: -100%; }
  60%  { left: 100%; }
  100% { left: 100%; }
}

/* Minimap (right rail) */
.infinite-deck__minimap {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  pointer-events: none;
}
.minimap-img-preview {
  position: relative;
  width: clamp(110px, 10vw, 150px);
  height: clamp(160px, 14vw, 210px);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #140303;
}
.minimap-img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #140303;
}
.minimap-img-item img,
.minimap-img-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  will-change: transform;
}
.minimap-img-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 2px rgba(245, 124, 0, 0.55);
  border-radius: 4px;
  pointer-events: none;
}

.minimap-info-list {
  position: relative;
  width: clamp(200px, 18vw, 260px);
  height: clamp(160px, 14vw, 210px);
  overflow: hidden;
}
.minimap-item-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-family: var(--font-body);
}
.minimap-item-info-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.minimap-item-info-row:first-child p:first-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--c-accent);
  letter-spacing: 0.05em;
}
.minimap-item-info-row:first-child p:last-child {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: right;
  flex: 1;
}
.minimap-item-info-row:last-child {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}
.minimap-item-info-row p { margin: 0; }

/* Progress bar along the bottom */
.infinite-deck__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 6;
  pointer-events: none;
}
.infinite-deck__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light));
  box-shadow: 0 0 16px rgba(245, 124, 0, 0.7);
  transition: width 120ms linear;
}

/* Responsive */
@media (max-width: 860px) {
  .infinite-deck__content {
    max-width: 85%;
    left: clamp(1.2rem, 5vw, 2.5rem);
    top: auto;
    bottom: clamp(2.5rem, 10vw, 4.5rem);
    transform: none;
  }
  .infinite-deck__minimap { display: none; }
  .infinite-deck__num { font-size: clamp(3rem, 10vw, 4.2rem); }
  .infinite-deck__title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}
@media (max-width: 480px) {
  .infinite-deck__desc { display: none; }
}

/* ================================================================== */
/* ============ V2 — Sticky Stack Scale Cards (section 2) =========== */
/* ================================================================== */
/*
 * Port of the "images-scrolling-animation" Framer Motion pattern to
 * vanilla CSS + GSAP ScrollTrigger.
 *   • Each card uses `position: sticky` with a progressive `top` offset
 *     so they naturally stack as the user scrolls.
 *   • GSAP scrubs each card's `transform: scale()` (transform-origin:
 *     top) from 1 down to `max(0.6, 1 − (NUM − i − 1) × 0.08)` over
 *     the [i/NUM, 1] progress range of the container.
 *   • Result: stack of cards being pushed back into the screen as
 *     scroll advances.
 */

/* Outer container — tall enough for the sticky + scrub effect to play.
   Large padding-top so the first card starts well below the sticky
   title. Large padding-bottom so the scroll has room for every card
   to scale down (the main scrub range). */
/* ================================================================== */
/* ============ V3 — 3D Coverflow Auto-Carousel (areas) ============= */
/* ================================================================== */
.deck {
  position: relative;
  width: 100%;
  padding: clamp(1.5rem, 4vh, 3rem) 0 clamp(2.5rem, 5vh, 4rem);
  perspective: 1800px;
  perspective-origin: 50% 55%;
  isolation: isolate;
}
.deck__intro {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(1.2rem, 2.5vh, 2rem);
}
.deck__header {
  margin: 0 auto !important;
  max-width: 60ch;
}
.deck::before {
  content: '';
  position: absolute;
  inset: 8% 0;
  background: radial-gradient(60% 55% at 50% 50%, rgba(245, 124, 0, 0.18), transparent 70%);
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}
.deck__stage {
  position: relative;
  height: clamp(440px, 62vh, 640px);
  width: 100%;
  transform-style: preserve-3d;
}
.deck__track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
}
.deck__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  width: min(560px, 84vw);
  height: clamp(400px, 58vh, 580px);
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  cursor: pointer;
}
.deck__slide.is-active { cursor: default; }

.deck__card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: clamp(20px, 2.4vw, 32px);
  overflow: hidden;
  background: var(--burgundy-dark);
  border: 1px solid rgba(245, 124, 0, 0.35);
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.7),
    0 30px 60px -20px rgba(74, 16, 16, 0.55);
}
.deck__slide.is-active .deck__card {
  border-color: rgba(245, 124, 0, 0.7);
  box-shadow:
    0 80px 140px -30px rgba(0, 0, 0, 0.8),
    0 40px 80px -20px rgba(245, 124, 0, 0.35);
}

.deck__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.78);
}
.deck__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 2, 2, 0.05) 0%, rgba(10, 2, 2, 0.4) 50%, rgba(10, 2, 2, 0.92) 100%),
    linear-gradient(135deg, rgba(74, 16, 16, 0.45) 0%, transparent 60%);
  pointer-events: none;
}

.deck__content {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2.6rem);
  right: clamp(1.5rem, 3vw, 2.6rem);
  bottom: clamp(1.4rem, 3vw, 2.2rem);
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 52ch;
}
.deck__num {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.8rem;
  background: rgba(245, 124, 0, 0.15);
  border: 1px solid rgba(245, 124, 0, 0.5);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.deck__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw + 0.3rem, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}
.deck__desc {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 0.5vw + 0.7rem, 1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  max-width: 46ch;
}

.deck__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
}
.deck__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245, 124, 0, 0.5);
  background: rgba(74, 16, 16, 0.55);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.deck__nav:hover {
  background: rgba(245, 124, 0, 0.18);
  border-color: var(--c-accent);
  transform: translateY(-2px);
}
.deck__nav svg { width: 22px; height: 22px; display: block; }

.deck__dots {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.deck__dots li { display: flex; }
.deck__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(245, 124, 0, 0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease, box-shadow 0.35s ease;
}
.deck__dot.is-active {
  width: 30px;
  background: var(--c-accent);
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(245, 124, 0, 0.55);
}

.deck__progress {
  position: relative;
  height: 2px;
  width: min(420px, 70%);
  margin: 1.1rem auto 0;
  background: rgba(245, 124, 0, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.deck__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent), #ffb053);
  border-radius: inherit;
}

@media (max-width: 640px) {
  .deck__stage { height: clamp(380px, 64vh, 520px); }
  .deck__slide { width: 88vw; height: clamp(360px, 60vh, 480px); }
  .deck__nav { width: 42px; height: 42px; }
  .deck__title { font-size: 1.35rem; }
  .deck__desc { font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .deck__slide { transition: none; }
  .deck__progress-bar { transition: none; }
}
