/* ============================================================
   Metaposicionamento — sistema visual
   Direção: palco preto, respiro branco e faixas de acento verde.
   Referência estrutural e cromática: tonyrobbins.com/events/business-mastery
   — preto #000, branco #fff, cinza #f6f6f7 e verde #3ceba0 como pontuação.
   ============================================================ */

:root {
  --void: #000000;
  --ink: #0d0d0f;
  --ink-raised: #171719;
  --ink-soft: #232325;
  /* Verde de acento da referência. Sobre preto tem contraste alto; sobre
     branco NÃO serve para texto — ali o acento vira grafite (ver
     .section--light abaixo). Como fundo de faixa, o texto por cima é preto. */
  --accent: #3ceba0;
  --accent-deep: #0f7f56;
  --accent-soft: #7df2c2;
  --porcelain: #ffffff;
  --paper: #ffffff;
  --paper-alt: #f6f6f7;
  --graphite: #171717;
  --steel: #a1a1a6;
  --mist: #e7e7ea;
  --error: #ec9b9b;

  --text-primary: var(--porcelain);
  --text-secondary: #c9c9ce;
  --text-muted: #8a8a91;
  --line: rgba(255, 255, 255, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);

  --font-display:
    "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Rotulos, indices e legendas usavam monoespacada. Numa pagina para medicos
     o efeito e de terminal, nao de precisao — a distincao passa a ser feita por
     caixa alta, tracking e peso, sobre a mesma familia do corpo. */
  --font-label: var(--font-body);

  /* Teto reduzido: o wordmark e o h1 eram dois blocos display do mesmo porte e
     disputavam a leitura. Com o titulo menor, o nome do evento vem primeiro. */
  --fs-hero: clamp(2.25rem, 1.5rem + 2.4vw, 3.35rem);
  --fs-section: clamp(2.2rem, 1.45rem + 2.5vw, 4rem);
  --fs-sub: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  --fs-body: clamp(1rem, 0.97rem + 0.14vw, 1.075rem);
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Altura da faixa fixa do topo. A fotografia do hero se apoia nela para nao
     correr por tras do header, que e transparente ate a pagina rolar. */
  --header-h: 5.4rem;

  --container: 80rem;
  --container-narrow: 48rem;
  --section-space: clamp(6rem, 4rem + 6vw, 10.5rem);
  --gutter: clamp(1.25rem, 0.7rem + 2.3vw, 3rem);
  /* A referência arredonda tudo: botões em pill, molduras de mídia e painéis
     com cantos generosos. O sistema anterior era 0 (editorial de corte reto). */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-pill: 9999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

p {
  margin: 0 0 1.15em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--porcelain);
  background: var(--accent-deep);
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container-narrow));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 500;
  padding: 0.8rem 1.15rem;
  color: var(--porcelain);
  background: var(--accent);
  font-family: var(--font-label);
  font-size: var(--fs-small);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Type system ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin: 0 0 1.6rem;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--center {
  margin-inline: auto;
}

.title--hero {
  max-width: 14ch;
  font-size: var(--fs-hero);
}

.title--section {
  max-width: 17ch;
  margin-bottom: 2rem;
  font-size: var(--fs-section);
}

.title--center {
  margin-inline: auto;
  text-align: center;
}

.title em {
  color: var(--accent-soft);
  font-weight: 500;
}

.prose {
  max-width: 63ch;
  color: var(--text-secondary);
}

.prose--large {
  max-width: 54ch;
  color: var(--text-primary);
  font-size: var(--fs-sub);
  line-height: 1.58;
}

.microcopy {
  max-width: 56ch;
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.sequence + .microcopy {
  margin-top: 1.25rem;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  min-height: 3.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.8rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn::after {
  content: "↗";
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease);
}

.btn:hover::after {
  transform: translate(0.15rem, -0.15rem);
}

.btn--accent {
  color: var(--porcelain);
  background: var(--accent);
}

.btn--accent:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--porcelain);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---------- Header ---------- */

.page-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  overflow: hidden;
  background: transparent;
}

.page-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 1.2rem;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 0.72rem;
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
  text-decoration: none;
}

.site-header__logo {
  width: 7rem;
  height: auto;
  flex: 0 0 auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.6rem + 1.4vw, 2rem);
}

.site-header__nav a:not(.btn) {
  position: relative;
  color: var(--text-secondary);
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.site-header__nav a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 1px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

/* O :not(.btn) precisa estar aqui tambem: sem ele o observador de secao pinta o
   botao solido de branco sobre o menta ao marcar is-active, e o ::after (que no
   botao e a seta, nao o sublinhado) recebe um scaleX que deforma o glifo. */
.site-header__nav a:not(.btn):hover,
.site-header__nav a:not(.btn).is-active {
  color: var(--porcelain);
}

.site-header__nav a:not(.btn):hover::after,
.site-header__nav a:not(.btn).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__nav .btn {
  min-height: 2.8rem;
  padding: 0.8rem 1.2rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--void);
}

/* A referência não usa grade óptica sobre o hero — só a fotografia. */
.hero::before {
  content: none;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 33%;
  z-index: 0;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 58% 37%;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(var(--hero-scale, 1.06));
  will-change: transform;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      var(--void) 0%,
      rgba(0, 0, 0, 0.88) 12%,
      rgba(0, 0, 0, 0.14) 46%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(0deg, var(--void) 0%, transparent 34%);
}

/* O tint azul era da direção anterior; a referência não tinta a fotografia. */
.hero__media::after {
  content: none;
}

/* Brackets opticos, legenda vertical e a linha de edicao sairam do hero: os
   brackets ja estavam ocultos, a legenda so cortava a fotografia e a edicao
   repetia data e local que a factbar declara logo abaixo. */

.hero__content {
  position: relative;
  z-index: 3;
  padding-block: clamp(7.8rem, 12vh, 9.5rem) 2.4rem;
}

.hero__wordmark {
  max-width: none;
  margin: 0 0 clamp(1.6rem, 2.5vh, 2.4rem);
  color: var(--porcelain);
  font-family: var(--font-display);
  /* Teto reduzido: a 1440 a palavra encostava no retrato. A inclinacao subiu
     junto para o wordmark nao empatar com o h1 nas larguras intermediarias. */
  font-size: clamp(2.3rem, 1.75rem + 2.9vw, 3.85rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__wordmark span {
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-soft);
}

.hero__content > *:not(.factbar, .hero__wordmark) {
  max-width: 45rem;
}

.hero .eyebrow {
  margin-bottom: 1.15rem;
}

.hero .title--hero {
  text-wrap: balance;
}

.hero .title--hero em {
  display: block;
  margin-top: 0.12em;
  color: var(--accent-soft);
}

.hero__sub {
  max-width: 52ch;
  margin: 1.65rem 0 0;
  color: var(--text-secondary);
  font-size: var(--fs-sub);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero__note {
  margin: 1.35rem 0 0;
}

/* Em viewports altas o conteudo ancorado na base deixava um vazio enorme entre
   o header e o wordmark (340px a 1080 de altura). O bloco de texto centraliza
   na altura livre: as duas margens automaticas — acima do wordmark e acima da
   factbar — dividem a sobra meio a meio, e a factbar segue presa na base.
   O margin-bottom da nota garante o vao minimo quando as margens auto zeram. */
@media (min-width: 62rem) {
  .hero {
    align-items: stretch;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__wordmark {
    margin-top: auto;
  }

  .hero__note {
    margin-bottom: clamp(2.5rem, 5vh, 3.8rem);
  }

  /* .hero na frente porque a regra base de .factbar declara o margin-top em
     clamp() mais adiante no arquivo e venceria o auto na mesma especificidade. */
  .hero .factbar {
    margin-top: auto;
  }
}

.factbar {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr 0.8fr;
  margin-top: clamp(2.5rem, 5vh, 3.8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(12px);
}

/* Sem min-height: as colunas ja se igualam pelo stretch do grid, entao a faixa
   passa a ter a altura do item mais alto em vez de um valor fixo com sobra. */
.factbar__item {
  padding: 1.2rem 1.35rem;
  border-right: 1px solid var(--line);
}

.factbar__item:last-child {
  border-right: 0;
}

.factbar__label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.factbar__value {
  display: block;
  color: var(--porcelain);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 0.96rem + 0.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.25;
}

.factbar__hint {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: 0.7rem;
  line-height: 1.45;
}

/* ---------- Sections ---------- */

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

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  height: 1px;
  background: var(--line-soft);
  transform: translateX(-50%);
}

.section--alt {
  background: var(--ink-raised);
}

.section--deep {
  background: var(--void);
}

.section--light {
  --text-primary: var(--graphite);
  --text-secondary: #52525a;
  --text-muted: #75757c;
  --line: rgba(0, 0, 0, 0.2);
  --line-soft: rgba(0, 0, 0, 0.12);
  color: var(--graphite);
  background: var(--paper);
}

.section--spotlight {
  overflow: hidden;
  background: var(--void);
}

.section--spotlight::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 8%;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(60, 235, 160, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 2rem + 5vw, 7rem);
}

.split > * {
  min-width: 0;
}

.split--reverse > *:first-child {
  order: 2;
}

@media (min-width: 62rem) {
  .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .split--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  /* Coluna do video estreita porque o quadro e vertical (o espaco que ele
     ocupa e o do 9/16, mesmo que o conteudo seja horizontal). O vao do grid
     encolhe e o quadro encosta a esquerda da coluna: a folga que sobrar fica
     na borda externa da pagina, nao entre o texto e o video.
     O texto centraliza contra o quadro em vez de alinhar pelo topo — alinhado
     no topo, toda a diferenca de altura virava um vazio unico embaixo dele. */
  #apresentacao .split {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: clamp(2.5rem, 1.5rem + 2vw, 4rem);
    align-items: center;
  }

  #apresentacao .video-frame--vertical {
    max-width: min(100%, 20.5rem);
    margin-inline: 0 auto;
  }
}

/* ---------- Visual media ---------- */

.media-frame {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle 12rem at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.16),
    transparent 70%
  );
  transition: opacity 0.45s var(--ease);
}

.media-frame:hover::after {
  opacity: 1;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  transition:
    transform 1.1s var(--ease),
    filter 0.6s var(--ease);
}

.media-frame:hover img {
  filter: saturate(1) contrast(1.04);
  transform: scale(1.025);
}

.media-frame--portrait {
  aspect-ratio: 4 / 4.6;
}

.media-frame--portrait img {
  object-position: 56% center;
}

.media-frame--wide {
  aspect-ratio: 16 / 10;
}

.media-frame--speaker {
  aspect-ratio: 4 / 5;
}

.media-frame--speaker img {
  object-position: center 20%;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
  border: 1px solid var(--line);
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18)),
    url("/images/encontro-bastidores.webp");
  background-position: center;
  background-size: cover;
}

.video-frame::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: var(--porcelain);
  font-size: 0.9rem;
  transform: translate(-50%, -62%);
}

.video-frame__placeholder {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: var(--mist);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video vertical: a moldura 16/10 deixaria o quadro com tarjas laterais
   enormes. Em 9/16 a largura fica limitada para o bloco nao dominar a coluna. */
.video-frame--vertical {
  aspect-ratio: 9 / 16;
  max-width: min(100%, 26rem);
  margin-inline: auto;
}

/* ---------- Context markers ---------- */

.marker-list {
  display: grid;
  margin-top: clamp(2.5rem, 4vw, 3.75rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 58rem) {
  .marker-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sem min-height: as três colunas já se igualam pelo stretch do grid, então a
   altura passa a ser a do texto mais longo em vez de um valor fixo que sobrava. */
.marker {
  position: relative;
  padding: 1.9rem clamp(1.4rem, 2.2vw, 2.1rem) 2rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}

.marker:last-child {
  border-bottom: 0;
}

@media (min-width: 58rem) {
  .marker {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .marker:last-child {
    border-right: 0;
  }
}

.marker:hover {
  background: rgba(60, 235, 160, 0.075);
}

.marker__index {
  display: block;
  margin-bottom: 1.15rem;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.marker h3 {
  max-width: 15ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.4rem, 1.15rem + 0.65vw, 1.9rem);
  line-height: 1.12;
}

.marker p {
  max-width: 38ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ---------- Pillars ---------- */

/* Grade de percepções, no formato da referência: três colunas, ícone acima do
   texto. São cinco itens — a segunda linha fica com dois e o vão à direita é
   deliberado. O dossiê §5.1 pede para não completar a grade por simetria
   enquanto o sexto pilar não existir. */
.pillar-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 3.5vw, 3.25rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.75rem, 4.5vw, 4rem);
}

.pillar {
  display: grid;
  align-content: start;
  gap: 1.15rem;
}

.pillar__text {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.pillar--pending {
  display: none;
}

/* ---------- Audience ---------- */

.section--light .eyebrow {
  color: var(--accent-deep);
}

.section--light .title em {
  color: var(--accent-deep);
}

.callout {
  position: relative;
  margin-top: 2.5rem;
  padding: 1.5rem 1.5rem 1.5rem 2.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.callout::before {
  content: "+";
  position: absolute;
  left: 0.35rem;
  top: 1.18rem;
  color: var(--accent-deep);
  font-family: var(--font-label);
  font-size: 1.2rem;
}

.callout p {
  margin: 0;
  color: var(--text-primary);
}

.callout strong {
  color: var(--accent-deep);
  font-weight: 600;
}

.table-scroll {
  margin-top: clamp(4rem, 8vw, 7rem);
  overflow-x: auto;
  border-top: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.profile-table {
  min-width: 40rem;
  font-size: 1rem;
}

.profile-table th,
.profile-table td {
  padding: 1.35rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.profile-table th {
  color: var(--accent-deep);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-table th:first-child,
.profile-table td:first-child {
  width: 34%;
  padding-left: 0;
}

.profile-table td:first-child {
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
}

.profile-table td:last-child {
  color: var(--text-secondary);
}

/* ---------- Method sequence ---------- */

.sequence {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.sequence__item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.sequence__step {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--accent-soft);
  color: var(--porcelain);
  font-family: var(--font-label);
  font-size: var(--fs-small);
}

.sequence__arrow {
  color: var(--accent);
  font-family: var(--font-label);
}

.stack-list {
  counter-reset: experience;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2.75rem, 4.5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Mesmo ajuste dos .marker: sem min-height, a altura vem do texto e as colunas
   se igualam pelo stretch. O padding-top so precisa liberar o indice absoluto. */
.stack-list li {
  counter-increment: experience;
  position: relative;
  padding: 3.4rem 1.4rem 1.8rem;
  border-right: 1px solid var(--line);
}

.stack-list li:last-child {
  border-right: 0;
}

.stack-list li::before {
  content: "0" counter(experience);
  position: absolute;
  left: 1.4rem;
  top: 1.3rem;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.stack-list h3 {
  max-width: 13ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 1.08rem + 0.45vw, 1.6rem);
  line-height: 1.15;
}

.stack-list p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ---------- Production status ---------- */

.pending {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-right: 0.35rem;
  padding: 0.16rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--accent-soft);
  background: rgba(60, 235, 160, 0.08);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.pending-note {
  display: none;
}

.legal-hero .pending-note,
.legal-doc .pending-note {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--accent-soft);
  color: var(--text-secondary);
  background: rgba(60, 235, 160, 0.07);
  font-size: var(--fs-small);
}

.legal-hero .pending-note p:last-child,
.legal-doc .pending-note p:last-child {
  margin-bottom: 0;
}

/* ---------- Speaker ---------- */

.section--spotlight .split {
  position: relative;
  z-index: 1;
}

.section--spotlight .title--section {
  font-size: clamp(3rem, 2.1rem + 3.1vw, 5.35rem);
}

.speaker-role {
  max-width: 28ch;
  margin: -0.5rem 0 0;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-small);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.section--spotlight .media-frame {
  box-shadow: none;
}

/* ---------- FAQ ---------- */

.faq {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.55rem 3.25rem 1.55rem 0;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.45vw, 1.5rem);
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    padding-left 0.25s var(--ease);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  padding-left: 0.45rem;
  color: var(--accent-soft);
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.35rem;
  top: 50%;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: 1.15rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq__answer {
  max-width: 65ch;
  padding: 0 3rem 1.7rem 0;
  color: var(--text-secondary);
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

/* ---------- Form ---------- */

#informacoes {
  overflow: hidden;
}

#informacoes::after {
  content: "MP";
  position: absolute;
  left: -0.08em;
  bottom: -0.28em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(16rem, 34vw, 36rem);
  font-weight: 600;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

#informacoes .split {
  position: relative;
  z-index: 1;
  align-items: start;
}

.form-panel {
  padding: clamp(1.5rem, 1rem + 2.6vw, 3.4rem);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
}

.field {
  margin-bottom: 1.35rem;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--porcelain);
  background: transparent;
  font: inherit;
  font-size: max(1rem, 16px);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}

.field input::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--accent-soft);
}

.field select option {
  color: var(--porcelain);
  background: var(--ink-soft);
}

.field__error {
  display: none;
  margin-top: 0.45rem;
  color: var(--error);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
}

.field.has-error input,
.field.has-error select {
  border-bottom-color: var(--error);
}

.field.has-error .field__error {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 0.5rem 0 1.2rem;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.consent a {
  color: var(--accent-soft);
}

.form-panel .btn {
  width: 100%;
  margin-top: 0.75rem;
}

.form-state {
  display: none;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

.form-state.is-visible {
  display: block;
}

/* ---------- Finale ---------- */

.finale {
  overflow: hidden;
  text-align: center;
  background: var(--ink-raised);
}

.finale::after {
  content: "META";
  position: absolute;
  left: 50%;
  top: 50%;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 20rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.finale > * {
  position: relative;
  z-index: 1;
}

.finale .prose,
.finale__note {
  margin-inline: auto;
}

.finale .btn {
  margin-top: 2rem;
}

.finale__note {
  margin-top: 1.5rem;
}

/* ---------- Footer ---------- */

.site-footer {
  padding-block: 2.25rem 1.5rem;
  border-top: 1px solid var(--line-soft);
  color: var(--text-muted);
  background: var(--void);
  font-size: var(--fs-small);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem 2rem;
}

.site-footer img {
  width: 5.4rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.site-footer a:hover {
  color: var(--accent-soft);
}

/* O limite de medida vai no parágrafo, não no .container: aplicado aqui ele
   encolhia a caixa e o margin-inline:auto do container recentralizava o bloco,
   tirando a nota do alinhamento do logo. */
.site-footer__legal p {
  max-width: 66ch;
}

.site-footer__legal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
  line-height: 1.65;
}

/* ---------- Cookie consent ---------- */

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 150;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}

.cookie-banner.is-visible {
  transform: none;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.cookie-banner p {
  max-width: 64ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-banner .btn {
  min-height: 2.6rem;
  padding: 0.7rem 1.1rem;
}

/* ---------- Motion ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible,
.preview-all .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Legal pages ---------- */

.legal-hero {
  padding-block: clamp(9rem, 8rem + 4vw, 12rem) var(--section-space);
  border-bottom: 1px solid var(--line);
  background: var(--void);
}

.legal-hero .title--section {
  max-width: 18ch;
}

.legal-doc h2 {
  margin: 3rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  line-height: 1.12;
}

.legal-doc h3 {
  margin: 2rem 0 0.7rem;
  color: var(--accent-soft);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

.legal-doc ul {
  margin: 0 0 1.2em;
  padding-left: 1.25rem;
  list-style: square;
}

.legal-doc li {
  margin-bottom: 0.5rem;
}

.legal-doc strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-doc a {
  color: var(--accent-soft);
}

.legal-meta {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-label);
  font-size: var(--fs-micro);
}

/* ---------- Utilities ---------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 70rem) {
  .site-header__nav a:not(.btn) {
    display: none;
  }

  .stack-list {
    grid-template-columns: 1fr 1fr;
  }

  .stack-list li:nth-child(2) {
    border-right: 0;
  }

  .stack-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 61.99rem) {
  /* Abaixo de 62rem o hero cresce muito além da viewport, então a foto deixa
     de ser fundo e vira faixa: o retrato fica enquadrado no topo e o texto
     corre sobre fundo sólido. --hero-window é a altura dessa faixa e serve de
     referência para o recuo do conteúdo. */
  .hero {
    display: block;
    min-height: 0;
    --hero-window: clamp(19rem, 40svh, 26rem);
  }

  .hero__media {
    inset: calc(var(--header-h) + 0.35rem) 0.75rem auto;
    height: var(--hero-window);
    clip-path: none;
  }

  .hero__media img {
    object-position: 50% 13%;
  }

  .hero__media::before {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.45) 18%,
      rgba(0, 0, 0, 0) 44%
    );
  }

  .hero__content {
    padding-top: calc(var(--header-h) + var(--hero-window) + 2.6rem);
  }

  .hero__wordmark {
    white-space: normal;
  }

  .factbar {
    grid-template-columns: 1fr 1fr;
  }

  .factbar__item:nth-child(2) {
    border-right: 0;
  }

  .factbar__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section--spotlight::after {
    left: 50%;
    top: 18%;
    width: 30rem;
    height: 30rem;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --fs-hero: clamp(2rem, 6vw + 0.8rem, 3.1rem);
    --fs-section: clamp(1.7rem, 1.25rem + 2.25vw, 2.7rem);
    --section-space: clamp(4.75rem, 3.9rem + 5vw, 6rem);
    --gutter: clamp(1.15rem, 4.8vw, 1.5rem);
    /* O header encolhe aqui (logo e botao menores). */
    --header-h: 4.5rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  .site-header {
    padding-block: 0.85rem;
  }

  .site-header__brand {
    gap: 0.7rem;
    flex: 1 1 auto;
  }

  .site-header__logo {
    width: 5.7rem;
  }

  .site-header__nav .btn {
    min-height: 2.75rem;
    padding: 0.75rem 0.95rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .site-header__nav .btn::after {
    display: none;
  }

  /* Sem parallax abaixo de 820px (js/experience.js), então o zoom fica no CSS.
     O valor caiu de 1.32 porque a fotografia deixou de ser uma faixa estreita
     e virou o cartão inteiro: com o quadro alto, o zoom antigo cortava o
     retrato na altura do peito. Com a origem do zoom na base (camada 2), o
     valor tambem controla quanto o retrato sobe dentro do cartao. */
  .hero {
    --hero-scale: 1.3;
  }

  .hero__wordmark {
    max-width: 100%;
    font-size: clamp(1.4rem, 7.15vw, 2.45rem);
    line-height: 0.95;
    letter-spacing: -0.065em;
    white-space: nowrap;
  }

  .hero .title--hero {
    max-width: 13.5ch;
    line-height: 0.98;
  }

  .hero__sub {
    max-width: 38ch;
    font-size: 1.025rem;
    line-height: 1.58;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
  }

  .title--section {
    max-width: 21ch;
    margin-bottom: 1.6rem;
  }

  .split {
    gap: 3.5rem;
  }

  .marker {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .stack-list {
    grid-template-columns: 1fr;
  }

  .stack-list li,
  .stack-list li:nth-child(2) {
    padding: 3.2rem 1.25rem 1.7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq summary {
    padding-block: 1.35rem;
  }

  .form-panel {
    padding: 1.4rem;
  }

  .stack-list li:last-child {
    border-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 0.8rem 1.2rem;
  }

  .cookie-banner__actions,
  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 34rem) {
  .factbar__item {
    padding: 1rem;
  }

  .factbar__value {
    font-size: 1.05rem;
  }

  /* O :not preserva a proporcao do embed vertical, que ja e mais alto que 4/5. */
  .video-frame:not(.video-frame--vertical) {
    aspect-ratio: 4 / 5;
  }

  .table-scroll {
    overflow: visible;
    border-top: 0;
  }

  .profile-table,
  .profile-table tbody,
  .profile-table tr,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .profile-table {
    min-width: 0;
  }

  .profile-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .profile-table tr {
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
  }

  .profile-table tr:last-child {
    border-bottom: 1px solid var(--line);
  }

  .profile-table td,
  .profile-table td:first-child {
    width: 100%;
    padding: 0;
    border: 0;
  }

  .profile-table td:first-child {
    margin-bottom: 0.55rem;
    font-size: 1.3rem;
  }

  .profile-table td:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .sequence {
    align-items: stretch;
  }

  .sequence__item {
    flex: 1 1 calc(50% - 0.65rem);
  }

  .sequence__step {
    flex: 1;
    padding-inline: 0.4rem;
    text-align: center;
  }

  /* Em duas colunas, a seta dos itens pares apontaria para fora da linha. */
  .sequence__item:nth-child(even) .sequence__arrow {
    display: none;
  }

  .section--spotlight .title--section {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__media img {
    transform: scale(var(--hero-scale, 1.06)) !important;
  }
}

/* ============================================================
   Direção 2026 — palco editorial
   O branco explica, o azul estabelece autoridade e o ouro marca
   os pontos de decisão da experiência.
   ============================================================ */

body {
  background: var(--void);
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.055em;
}

/* Com o corpo menor, a medida abre um pouco para o título não ganhar linha. */
.title--hero {
  max-width: 15ch;
  font-weight: 700;
  line-height: 0.98;
}

.title--section {
  max-width: 15ch;
  font-weight: 700;
  line-height: 0.97;
}

.title em {
  color: var(--accent);
  font-style: normal;
}

.eyebrow {
  color: var(--accent-soft);
  font-weight: 500;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 3.5rem;
}

/* Botão pill da referência: sans, caixa normal, sem tracking mono.
   O sistema anterior era mono/uppercase/reto. */
.btn {
  min-height: 3.25rem;
  padding-inline: 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}

.btn--accent {
  color: var(--void);
  background: var(--accent);
  border-color: var(--accent);
}

.btn--accent:hover {
  color: var(--void);
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}

/* Sobre a faixa verde o botão sólido sumiria: ali ele inverte para preto. */
.section--accent .btn--accent {
  color: var(--accent);
  background: var(--void);
  border-color: var(--void);
}

.section--accent .btn--accent:hover {
  color: var(--accent-soft);
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.page-progress__bar {
  background: var(--accent);
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.94);
  border-bottom-color: rgba(60, 235, 160, 0.28);
}

.site-header__nav a:not(.btn)::after {
  background: var(--accent);
}

.hero {
  background: var(--void);
}

/* Hero da referência: a fotografia é um bloco de canto arredondado ocupando
   quase toda a largura, com uma faixa de preto ao redor. O texto fica por
   cima, à esquerda, legível por gradiente — não por recorte diagonal. */
/* Na referência o sujeito está no terço direito e o título corre livre à
   esquerda. Nesta fotografia o Dr. Matheus é central, então em vez de
   escurecê-lo até sumir damos à imagem a metade direita: o retrato fica
   inteiro e o título tem preto sólido para correr. */
.hero__media {
  inset: calc(var(--header-h) + 0.35rem) 1.25rem 1.25rem 34%;
  border-radius: var(--radius-lg);
  clip-path: none;
}

.hero__media img {
  object-position: 56% 32%;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
}

/* Funde a borda esquerda da imagem no preto da página; o resto fica limpo. */
.hero__media::before {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.45) 14%,
      rgba(0, 0, 0, 0.05) 34%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 34%);
}

.hero__wordmark {
  color: var(--porcelain);
  font-weight: 800;
  letter-spacing: -0.075em;
}

.hero__wordmark span {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.hero .title--hero em {
  color: var(--accent-soft);
}

.hero__sub {
  color: #d5d5da;
}

.factbar {
  margin-bottom: -2.4rem;
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--void);
  background: var(--accent);
  backdrop-filter: none;
}

.factbar__item {
  border-right-color: rgba(0, 0, 0, 0.24);
}

.factbar__label,
.factbar__value,
.factbar__hint {
  color: var(--void);
}

.factbar__label {
  opacity: 0.72;
}

.factbar .pending {
  border-color: rgba(0, 0, 0, 0.35);
  color: var(--void);
  background: rgba(255, 255, 255, 0.22);
}

.section {
  background: var(--paper);
}

.section::before {
  width: 100%;
  background: rgba(0, 0, 0, 0.12);
}

.section--light {
  --text-primary: var(--graphite);
  --text-secondary: #55555b;
  --text-muted: #6e6e75;
  --line: rgba(0, 0, 0, 0.2);
  --line-soft: rgba(0, 0, 0, 0.12);
  color: var(--graphite);
  background: var(--paper);
}

.section--navy,
.section--deep {
  --text-primary: var(--porcelain);
  --text-secondary: #c9c9ce;
  --text-muted: #9a9aa1;
  --line: rgba(60, 235, 160, 0.25);
  --line-soft: rgba(60, 235, 160, 0.14);
  color: var(--porcelain);
  background: var(--ink);
}

.section--accent {
  --text-primary: var(--void);
  --text-secondary: #2e2e32;
  --text-muted: #55555b;
  --line: rgba(0, 0, 0, 0.24);
  --line-soft: rgba(0, 0, 0, 0.14);
  color: var(--void);
  background: var(--accent);
}

.section--accent .eyebrow,
.section--light .eyebrow,
.section--light .title em {
  color: var(--accent-deep);
}

.section--accent .title em {
  color: var(--void);
}

#apresentacao .title--section,
#pilares .title--section,
#conducao .title--section {
  position: relative;
  padding-bottom: 1.8rem;
}

#apresentacao .title--section::after,
#pilares .title--section::after,
#conducao .title--section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(6rem, 13vw, 11rem);
  height: 0.3rem;
  background: var(--accent);
}

/* A referência não usa sombra deslocada dura: as molduras são blocos de canto
   arredondado sobre o fundo da seção. Trocamos o offset editorial pelo raio. */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: none;
}

.media-frame::before {
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius-lg) - 0.4rem);
}

.media-frame::after {
  background: radial-gradient(
    circle 12rem at var(--pointer-x) var(--pointer-y),
    rgba(60, 235, 160, 0.2),
    transparent 70%
  );
}

.video-frame {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none;
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.12)),
    url("/images/encontro-bastidores.webp");
}

.video-frame::before {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.marker-list {
  border-color: var(--line);
}

.marker:hover {
  color: var(--void);
  background: var(--accent);
}

.marker:hover p,
.marker:hover .marker__index {
  color: var(--void);
}

.marker__index,
.stack-list li::before,
.speaker-role {
  color: var(--accent-soft);
}

/* Sobre a faixa verde o acento some no fundo: índices e rótulos viram preto. */
.section--accent .marker__index,
.section--accent .stack-list li::before,
.section--accent .speaker-role {
  color: rgba(0, 0, 0, 0.55);
}

.section--accent .eyebrow {
  color: rgba(0, 0, 0, 0.72);
}

/* Redes sociais no rodapé. Tiles quadrados de canto arredondado, mesmo
   vocabulário do .pillar__icon — traço fino, sem marca colorida. */
.social-list {
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Rodapé em faixa única: marca à esquerda, links e redes à direita.
   O nome do Instituto sobe para o lado do logo em vez de abaixo dele. */
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem 1.75rem;
}

.social-list a {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition:
    color 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

/* Precisa do .site-footer na frente: `.site-footer a:hover` empata em
   especificidade e é declarada depois, o que traria --accent-soft para cima
   do fundo mint. */
.site-footer .social-list a:hover {
  color: var(--void);
  border-color: var(--accent);
  background: var(--accent);
}

.social-list svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* .speaker-role tem margin-top negativo para colar no título; o parágrafo que
   vem depois precisa recuperar o respiro. */
.speaker-role + .prose {
  margin-top: 1.5rem;
}

/* Credenciais do condutor. Lista simples com régua fina entre itens — o
   marcador segue o mesmo tratamento de .stack-list li::before. */
.credential-list {
  max-width: 46ch;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.credential-list li:first-child {
  border-top: 1px solid var(--line-soft);
}

.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.5rem;
  height: 1px;
  background: var(--accent);
}

.section--light .credential-list li::before {
  background: var(--accent-deep);
}

/* Ícone no lugar do índice numérico, como na referência: quadrado de canto
   arredondado um tom acima do fundo, traço fino na cor do texto da seção.
   Fica no topo do card, com o texto abaixo. */
.pillar__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: var(--text-primary);
  transition: background 0.3s var(--ease);
}

.pillar__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sobre a faixa verde o tile precisa escurecer, não clarear. */
.section--accent .pillar__icon {
  background: rgba(0, 0, 0, 0.08);
  color: var(--void);
}

.section--light .pillar__icon {
  background: rgba(0, 0, 0, 0.05);
  color: var(--graphite);
}

/* O sexto pilar é placeholder: marcador apagado, sem peso de conteúdo. */
.pillar__icon--pending {
  opacity: 0.45;
}

/* Precisa estar nesta camada: a media query equivalente da camada base fica
   acima do bloco Direção 2026 e seria sobrescrita pela regra genérica. */
@media (max-width: 61.99rem) {
  /* Sem espaço para a faixa única: marca e links empilham, mas continuam
     alinhados à esquerda em vez de voltar ao formato antigo. */
  .site-footer__links {
    justify-content: flex-start;
  }

  /* Três colunas não cabem: cai para duas, e o item ímpar ocupa a última
     linha sozinho — mesmo princípio do vão da linha 2 em desktop. */
  .pillar-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar__icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .pillar__icon svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

@media (max-width: 47.99rem) {
  .pillar-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

/* Sem card container, o realce vai no tile — nada de deslocar o texto. */
.pillar:hover .pillar__icon {
  background: rgba(0, 0, 0, 0.16);
}

.section--accent .callout {
  padding: 1.8rem 1.8rem 1.8rem 3rem;
  border: 1px solid var(--void);
  background: rgba(255, 255, 255, 0.16);
}

.section--accent .callout::before,
.section--accent .callout strong,
.section--accent .profile-table th {
  color: var(--void);
}

.section--accent .profile-table td:first-child {
  color: var(--void);
}

.sequence__step {
  border-bottom-color: var(--accent);
}

.sequence__arrow {
  color: var(--accent);
}

.stack-list li {
  transition:
    color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.stack-list li:hover {
  color: var(--void);
  background: var(--accent);
}

.stack-list li:hover p,
.stack-list li:hover::before,
.stack-list li:hover .pending {
  color: var(--void);
}

.section--spotlight {
  overflow: hidden;
  color: var(--graphite);
  background: var(--paper);
}

.section--spotlight::after {
  left: auto;
  right: -12rem;
  top: 50%;
  width: 38rem;
  height: 38rem;
  border: 7rem solid rgba(60, 235, 160, 0.16);
}

.section--spotlight .speaker-role {
  color: var(--accent-deep);
}

.section--spotlight .media-frame {
  box-shadow: none;
}

.faq summary::after {
  color: var(--void);
}

.faq summary:hover {
  color: var(--void);
}

.pending {
  border-color: rgba(60, 235, 160, 0.5);
  color: var(--accent-soft);
  background: rgba(60, 235, 160, 0.1);
}

.section--light .pending,
.section--accent .pending {
  border-color: rgba(0, 0, 0, 0.34);
  color: var(--void);
  background: rgba(255, 255, 255, 0.2);
}

#informacoes {
  background: var(--void);
}

#informacoes::after {
  -webkit-text-stroke-color: rgba(60, 235, 160, 0.1);
}

.form-panel {
  border: 1px solid rgba(60, 235, 160, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: none;
}

.field label,
.consent a {
  color: var(--accent-soft);
}

/* Campos com fundo um pouco acima do preto do painel: transparentes eles se
   dissolviam no fundo e so a linha de baixo indicava onde clicar. O padding
   lateral aparece junto porque agora existe uma caixa visivel. */
.field input,
.field select {
  padding-inline: 0.85rem;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.05);
}

.field input:hover,
.field select:hover {
  background: rgba(255, 255, 255, 0.07);
}

.field input:focus,
.field select:focus {
  border-bottom-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.consent input {
  accent-color: var(--accent);
}

.finale {
  color: var(--void);
  background: var(--accent);
}

.finale .eyebrow,
.finale .title em,
.finale .prose,
.finale .microcopy {
  color: var(--void);
}

.finale .btn--accent {
  color: var(--porcelain);
  background: var(--void);
  border-color: var(--void);
}

.finale .btn--accent:hover {
  color: var(--void);
  background: var(--paper);
  border-color: var(--paper);
}

.finale::after {
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.14);
}

.site-footer {
  border-top-color: rgba(60, 235, 160, 0.24);
  background: var(--void);
}

.site-footer a:hover {
  color: var(--accent-soft);
}

.cookie-banner {
  border-top-color: rgba(60, 235, 160, 0.35);
  background: rgba(0, 0, 0, 0.98);
}

@media (max-width: 61.99rem) {
  /* A foto é faixa, não fundo: o scrim só precisa fundir a base da faixa com
     o preto da página — escurecer o quadro inteiro apagava o retrato. */
  .hero__media {
    inset: calc(var(--header-h) + 0.35rem) 0.75rem auto;
    clip-path: none;
  }

  .hero__media img {
    filter: saturate(0.85) contrast(1.06) brightness(1);
  }

  .hero__media::before {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.42) 18%,
      rgba(0, 0, 0, 0) 44%
    );
  }

  .factbar {
    margin-bottom: -2.4rem;
  }
}

@media (max-width: 47.99rem) {
  .title--hero {
    max-width: 12ch;
  }

  /* No celular a fotografia deixa de ser faixa no topo e passa a ser o cartao
     inteiro do hero, com o texto por cima — a leitura vira uma peca so em vez
     de foto em cima e texto solto no preto. O cartao comeca sob o header fixo
     e termina na factbar, que fecha a base com os cantos arredondados. */
  .hero__media {
    inset: calc(var(--header-h) + 0.35rem) 0.75rem 0;
    height: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    clip-path: none;
  }

  /* A fotografia mobile e 900x1200 e o cartao e mais estreito que isso, entao
     em cover a altura fica exata e a sobra e toda horizontal: object-position
     no eixo Y nao move nada aqui. Quem enquadra e a origem do zoom — ancorada
     na base, o zoom empurra o retrato para cima e deixa rosto e ombros na
     faixa limpa, acima de onde o titulo comeca. */
  .hero__media img {
    object-position: 50% 100%;
    transform-origin: 50% 100%;
    transform: scale(var(--hero-scale, 1.18));
  }

  /* O escuro precisa subir bem mais alto que na faixa: agora ha ~50rem de
     texto sobre a fotografia. As paradas seguem as bandas medidas — ate 68%
     corre o corpo do texto (titulo sobre o paleto claro, o pior fundo da
     peca), de 80% para cima o retrato volta a aparecer. */
  .hero__media::before {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.93) 50%,
      rgba(0, 0, 0, 0.88) 70%,
      rgba(0, 0, 0, 0.7) 79%,
      rgba(0, 0, 0, 0.3) 88%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  /* O recuo do topo agora e o quanto de fotografia fica limpa acima do texto,
     nao mais a altura de uma faixa: por isso deixa de citar --hero-window. */
  .hero__content {
    padding-top: calc(var(--header-h) + 13.5rem);
    padding-bottom: 0;
  }

  /* A faixa menta vira a base do cartao: alinha com as bordas da fotografia e
     perde o avanco sobre a secao seguinte, que existia quando ela flutuava
     sobre o preto. */
  .factbar {
    margin: 3rem calc(0.75rem - var(--gutter)) 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
  }

  .section--spotlight .media-frame,
  .media-frame,
  .video-frame,
  .form-panel {
    box-shadow: none;
  }
}
