:root {
  --bg: #0D1117;
  --bg-deep: #0A0E15;
  --surface: #131823;
  --surface-2: #1A1F29;
  --cyan: #00DAFF;
  --blue: #007BFF;
  --grad: linear-gradient(100deg, #00DAFF 0%, #007BFF 100%);
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.55);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --radius: 18px;
  --wrap: 1200px;
  --pad: clamp(20px, 6vw, 72px);
  --urgencia-h: 38px;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(0, 218, 255, 0.25); }

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

/* ── grain ── */
.grain {
  position: fixed; inset: -100px; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grain 900ms steps(3) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  33% { transform: translate(-30px, 18px); }
  66% { transform: translate(22px, -26px); }
  100% { transform: translate(0, 0); }
}

/* ── tipografia base ── */
.kicker {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
}

h1, h2, h3 { font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }

h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  margin-bottom: 1.6rem;
}
h2 strong, h1 strong {
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
h2 em { font-style: normal; color: var(--cyan); }

h3 { font-size: 1.25rem; font-weight: 500; }

.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.4rem;
}
.hl {
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 900px; }
.section { padding-block: clamp(90px, 14vh, 160px); position: relative; }

.disclaimer {
  font-size: 0.8rem;
  color: var(--faint);
  margin-top: 3rem;
  letter-spacing: 0.02em;
}

/* ── botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background-color 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}
.btn--primary {
  background: var(--grad);
  color: #04121F;
  font-weight: 600;
  padding: 18px 38px;
  box-shadow: 0 0 0 rgba(0, 160, 255, 0);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(0, 160, 255, 0.35);
}
.btn--nav {
  padding: 12px 26px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #04121F;
  background: var(--grad);
}
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0, 160, 255, 0.35); }
/* rótulo responsivo dos CTAs de candidatura (mesmo padrão de .urgencia__*) */
.btn__curta { display: none; }
.nav .btn--nav {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}
.nav.is-hero-visible .btn--nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}
.btn--full { width: 100%; }

/* ── barra de urgência (LP de curador) ── */
.urgencia {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 85;
  height: var(--urgencia-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--pad);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}
.urgencia p {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.urgencia__curta { display: none; }
/* na LP, a nav desce a altura da barra */
.pagina-curador .nav { top: var(--urgencia-h); }
@media (max-width: 640px) {
  .urgencia p { font-size: 0.6rem; letter-spacing: 0.12em; }
  .urgencia__longa { display: none; }
  .urgencia__curta { display: inline; }
}

/* ── nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--pad);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 14, 21, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding-block: 14px;
}
.nav__brand { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 38px; height: 28px; flex: none; }
.nav__brand-texto { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-main { color: var(--text); font-weight: 600; font-size: 1rem; letter-spacing: 0.22em; }
.nav__brand-sub { color: var(--cyan); font-weight: 400; font-size: 0.55rem; letter-spacing: 0.42em; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--cyan); }

/* ── trilho de progresso ── */
.trilho {
  position: fixed;
  right: clamp(18px, 2.5vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.trilho.is-visible { opacity: 1; pointer-events: auto; }
.trilho__item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 3px 0;
  outline: none;
}
.trilho__rotulo {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.trilho__traco {
  width: 16px;
  height: 1px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.trilho__item:hover .trilho__rotulo, .trilho__item:focus-visible .trilho__rotulo { opacity: 0.6; transform: none; }
.trilho__item:hover .trilho__traco, .trilho__item:focus-visible .trilho__traco { width: 22px; background: rgba(255, 255, 255, 0.5); }
.trilho__item.is-active .trilho__rotulo { opacity: 1; transform: none; color: var(--muted); }
.trilho__item.is-active .trilho__traco {
  width: 30px;
  height: 2px;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(0, 218, 255, 0.55);
}
@media (max-width: 900px) {
  .trilho { display: none; }
}

/* ── linha direta · WhatsApp ──
   Convite para quem trava no formulário. Fica na linguagem da marca (disco em
   gradiente sobre superfície escura) em vez do verde do WhatsApp: o glifo já
   basta para o reconhecimento e o verde saturado brigaria com o ciano.
   Entra e sai junto com o CTA do header, pelo MESMO sinal: `is-hero-visible`
   no #nav. O `.zap` é irmão do #nav (e vem depois dele) no body, então o
   combinador `~` basta — nenhum JS próprio, e os dois não têm como divergir.
   A forma é decidida só pela largura da tela: pílula com rótulo acima de
   640px, disco abaixo. */
.zap {
  position: fixed;
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  padding: 8px 22px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(19, 24, 35, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
  gap: 11px;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              visibility 0.35s, border-color 0.3s ease, box-shadow 0.3s ease;
}
/* hero em cena: o CTA do header sobe e some, este desce e some. Sem JS a
   classe nunca entra e os dois ficam sempre visíveis — mesma degradação. */
.nav.is-hero-visible ~ .zap {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.94);
  pointer-events: none;
}
.zap:hover, .zap:focus-visible {
  border-color: rgba(0, 218, 255, 0.55);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 28px rgba(0, 218, 255, 0.25);
}
.zap__disco {
  position: relative;
  flex: none;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
}
.zap__disco svg { width: 21px; height: 21px; fill: #04121F; }
/* halo: 3 pulsos e para — perpétuo vira ruído. Preso ao mesmo seletor da
   entrada, então dispara quando o botão chega, não escondido sobre o hero. */
.nav:not(.is-hero-visible) ~ .zap .zap__disco::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 218, 255, 0.6);
  animation: zapHalo 2.4s ease-out 3;
}
@keyframes zapHalo {
  0% { opacity: 0.8; transform: scale(0.92); }
  70%, 100% { opacity: 0; transform: scale(1.55); }
}
.zap__rotulo { white-space: nowrap; }
@media (max-width: 640px) {
  /* celular: só o disco — o rótulo não cabe sem cobrir conteúdo */
  .zap { padding: 6px; gap: 0; }
  .zap__rotulo { display: none; }
}

/* convite inline, colado ao formulário — onde a fricção de fato acontece.
   max-width segura o texto longe do trilho: sem ela, entre 900px (onde o
   trilho aparece) e ~1000px a última linha passa por baixo do rótulo ativo. */
.zap-inline {
  max-width: 34rem;
  margin: 0.9rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}
.zap-inline a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 218, 255, 0.35);
  transition: border-color 0.3s ease;
}
.zap-inline a:hover, .zap-inline a:focus-visible { border-bottom-color: var(--cyan); }

/* ══════════ HERO ══════════ */
.hero { height: 420vh; position: relative; }
.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero__canvas, .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__canvas { z-index: 2; opacity: 0; }
.hero__canvas.is-ready { opacity: 1; }
.hero__poster { z-index: 1; }
.hero__vignette {
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(180deg, rgba(10, 14, 21, 0.55) 0%, rgba(10, 14, 21, 0) 30%, rgba(10, 14, 21, 0) 62%, var(--bg) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(10, 14, 21, 0) 55%, rgba(10, 14, 21, 0.5) 100%);
}
.hero__content {
  position: absolute;
  z-index: 5;
  left: var(--pad);
  bottom: 14vh;
  max-width: 640px;
}
.hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: calc(-45vh - 60px) -36px calc(-14vh - 60px) calc(-1 * var(--pad) - 60px);
  background: rgba(7, 10, 16, 0.88);
  border-radius: 32px;
  filter: blur(34px);
  pointer-events: none;
}
.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  margin-bottom: 1.5rem;
}
.hero__lead {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  max-width: 54ch;
  margin-bottom: 2.2rem;
}
.hero__creds {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin: -1.2rem 0 2.2rem;
  max-width: 54ch;
}
.hero__cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__cta-note {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero__reveal {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.hero__reveal::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(58% 42% at 50% 50%, rgba(10, 14, 21, 0.75) 0%, rgba(10, 14, 21, 0.4) 50%, rgba(10, 14, 21, 0) 74%);
}
.hero__reveal-line {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 200;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}
.hero__reveal-line span {
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__hint {
  position: absolute;
  z-index: 5;
  right: var(--pad);
  bottom: 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero__hint-label {
  writing-mode: vertical-rl;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero__hint-line {
  width: 1px; height: 64px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: hint 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes hint {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(30px); opacity: 0; }
}

/* ══════════ HERO DO CURADOR (LP) · pôster editorial ══════════
   Própria da LP — o hub mantém a travessia em canvas. Retrato monumental
   derretendo no fundo (mask), olhar do curador em tipografia gigante de
   contorno atrás e conteúdo à esquerda. Entradas em animação CSS (fill
   backwards, estado final = natural) para não brigar com o parallax de
   saída do GSAP e degradar bem sem JS. */
/* desktop: hero pinada — o frame 1 segura enquanto o pôster se desfaz e
   depois a travessia do hub assume (canvas dentro do fundo) */
.heroCur { height: 380vh; position: relative; }
.heroCur__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}
.heroCur__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.heroCur__canvas.is-ready { opacity: 1; }
/* a cena da boardroom como fundo com zoom lentíssimo. O pôster (frame 1)
   vive no ::before e o canvas da travessia entre ele e a vinheta do ::after
   — o filtro NÃO pode ficar no pai, senão escurece a travessia inteira.
   A vinheta usa os valores da hero do hub para a travessia ter a mesma cara. */
.heroCur__fundo {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: fundoRespira 26s ease-in-out infinite alternate;
}
.heroCur__fundo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/hero-poster.jpg') center / cover no-repeat;
}
.heroCur__fundo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 21, 0.6) 0%, rgba(10, 14, 21, 0.12) 32%, rgba(10, 14, 21, 0.18) 62%, var(--bg) 100%),
    radial-gradient(120% 90% at 50% 50%, rgba(10, 14, 21, 0) 50%, rgba(10, 14, 21, 0.55) 100%);
}
@keyframes fundoRespira {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.heroCur__retrato {
  position: absolute;
  z-index: 2;
  bottom: 10vh;
  /* acompanha a coluna de texto em monitores largos (mesma lógica do max()
     de antes); os +56px deixam a coluna do hint livre à direita */
  right: max(calc(var(--pad) + 56px), calc(100vw - 1460px));
  width: min(36vw, 460px);
  height: min(70svh, 640px);
  /* card no padrão da identidade (mesma moldura dos cards do conselho) —
     pedido do design do cliente: nada de esfumado na foto */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: retratoEntra 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s backwards;
}
.heroCur__retrato [hidden] { display: none !important; }
.heroCur__retrato img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  /* leve rebaixamento permanente: fotos de estúdio (fundo claro) não
     estouram na cena escura. O keyframe sem 100% interpola até aqui. */
  filter: brightness(0.9) saturate(0.96);
  animation: retratoRevela 2.6s ease 0.15s backwards;
}
.heroCur__iniciais {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--faint);
  background:
    radial-gradient(90% 70% at 50% 18%, rgba(0, 218, 255, 0.12) 0%, rgba(0, 218, 255, 0) 62%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
}
.heroCur__conteudo {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 11vh;
  max-width: 620px;
}
.heroCur__conteudo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -48px -56px -56px calc(-1 * var(--pad) - 40px);
  background: rgba(7, 10, 16, 0.6);
  border-radius: 32px;
  filter: blur(36px);
  pointer-events: none;
}
.heroCur__nome {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 1.04;
  margin: 0.6rem 0 1.4rem;
}
.heroCur__lead { margin-bottom: 2rem; }
.heroCur__conteudo > * { animation: heroCurSobe 1s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.heroCur__conteudo > *:nth-child(1) { animation-delay: 0.25s; }
.heroCur__conteudo > *:nth-child(2) { animation-delay: 0.35s; }
.heroCur__conteudo > *:nth-child(3) { animation-delay: 0.45s; }
.heroCur__conteudo > *:nth-child(4) { animation-delay: 0.52s; }
.heroCur__conteudo > *:nth-child(5) { animation-delay: 0.6s; }
@keyframes heroCurSobe {
  from { opacity: 0; transform: translateY(26px); }
}
@keyframes retratoEntra {
  from { opacity: 0; transform: translateY(64px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes retratoRevela {
  0% { filter: grayscale(1) brightness(0.72); }
  50% { filter: grayscale(1) brightness(0.82); }
}

/* ══════════ MANIFESTO ══════════ */
.manifesto { background: var(--bg); }
.manifesto__destaque {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.45;
  max-width: 24em;
  margin: 1.6rem 0;
}
.manifesto__destaque .w { opacity: 0.13; }
.manifesto__pontos { margin-top: 3.5rem; }


/* ══════════ TESE ══════════ */
.tese { background: var(--bg-deep); border-block: 1px solid var(--line); }
.tese__head { max-width: 900px; margin-bottom: 4.5rem; }
.tese__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.45s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 218, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 123, 255, 0.08) inset;
}
.pillar__num {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 2.4rem;
}
.pillar h3 { margin-bottom: 0.9rem; }
.pillar p { color: var(--muted); font-size: 0.95rem; }

/* fluxo NRF → Board → Mercado (seção A solução) */
.fluxo {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
  margin-bottom: 4.5rem;
}
.fluxo__passo {
  flex: 1 1 0;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
}
/* ilustrações dos quadros de A Solução — sangram até as bordas do card
   (margens negativas anulam o padding; max-width vence o global de img).
   Cantos arredondados na própria imagem: overflow:hidden no .fluxo__passo
   zeraria o min-size automático do item de flex e colapsaria o card. */
.fluxo__img {
  width: calc(100% + 60px);
  max-width: none;
  margin: -32px -30px 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.pillar__img {
  width: calc(100% + 68px);
  max-width: none;
  margin: -40px -34px 22px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.fluxo__rotulo {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.4rem;
}
.fluxo__passo h3 { margin-bottom: 0.6rem; }
.fluxo__passo p { color: var(--muted); font-size: 0.92rem; }
.fluxo__seta {
  align-self: center;
  flex: none;
  font-size: 1.5rem;
  font-weight: 300;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tese__pilares-titulo { margin-bottom: 1.8rem; }
@media (max-width: 760px) {
  .fluxo { flex-direction: column; }
  .fluxo__seta { transform: rotate(90deg); margin-block: -4px; }
}

/* ══════════ IMERSÃO / AGENDA ══════════ */
.imersao {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(90px, 12vh, 140px) 40px;
  background: var(--bg);
}
.imersao__intro { margin-bottom: 3rem; }
.imersao__meta {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 2px solid var(--cyan);
  padding-left: 16px;
}
.agenda { overflow: hidden; }
.agenda__track {
  display: flex;
  gap: 22px;
  padding-inline: var(--pad);
  width: max-content;
  will-change: transform;
}
.day {
  width: min(360px, 78vw);
  min-height: 300px;
  flex: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.day:hover { border-color: rgba(0, 218, 255, 0.35); transform: translateY(-6px); }
.day--soho::before { background-image: url('../assets/img-soho.jpg'); }
.day--nrf::before { background-image: url('../assets/img-nrf.jpg'); }
.day--boat::before { background-image: url('../assets/img-boat.jpg'); }
.day--columbia::before { background-image: url('../assets/img-columbia.jpg'); }
.day--img::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: opacity 0.5s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.day--img:hover::before { opacity: 0.65; transform: scale(1.05); }
.day--img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.15) 0%, rgba(13, 17, 23, 0.92) 78%);
}
.day > * { position: relative; z-index: 2; }
.day__num {
  font-size: 3rem;
  font-weight: 200;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: auto;
}
.day__date {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  color: var(--faint);
  margin: 2.2rem 0 0.6rem;
}
.day p { font-size: 1.05rem; font-weight: 400; line-height: 1.45; }

/* ══════════ ACESSO ══════════ */
.acesso {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.acesso::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../assets/img-nrf.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}
.acesso::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, rgba(10, 14, 21, 0.5) 50%, var(--bg-deep) 100%);
}
.acesso > * { position: relative; z-index: 2; }
.marquee {
  margin-top: 4.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__inner span {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.marquee__inner i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══════════ COMUNIDADE / CICLO ══════════ */
.comunidade { background: var(--bg-deep); border-block: 1px solid var(--line); }
.ciclo {
  position: relative;
  margin-top: 5rem;
  display: grid;
  gap: 0;
}
.ciclo__line {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.ciclo__line::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  transform: scaleY(var(--p, 0));
  transform-origin: top;
}
.ciclo__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(44px, 6vw, 72px);
  padding: 38px 0;
}
.ciclo__cabeca { text-align: right; }
.ciclo__item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 44px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 218, 255, 0.5);
}
.ciclo__mes {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
}
.ciclo__item h3 { margin: 0.4rem 0 0; font-size: 1.5rem; font-weight: 400; }
.ciclo__item p { color: var(--muted); max-width: 40ch; margin-top: 25px; }
@media (max-width: 760px) {
  .ciclo__line { left: calc(var(--pad) + 7px); }
  .ciclo__item { grid-template-columns: 1fr; row-gap: 8px; padding: 30px 0 30px 56px; }
  .ciclo__item::before { left: 3px; transform: none; top: 38px; }
  .ciclo__cabeca { text-align: left; }
  .ciclo__item p { margin-top: 0; }
}
.comunidade__fecho { margin-top: 4rem; margin-bottom: 0; }

/* ══════════ PROTAGONISMO ══════════ */
.protagonismo {
  background:
    radial-gradient(70% 90% at 80% 10%, rgba(0, 123, 255, 0.10) 0%, rgba(13, 17, 23, 0) 60%),
    var(--bg);
}

/* ══════════ CURADORES ══════════ */
.fundadores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  gap: 26px;
  margin: 4rem 0 2.5rem;
}
/* o card do fundador é partido: retrato em cima (nada por cima do rosto) e
   texto embaixo, sobre a superfície do card. o gradiente só dissolve a base
   da foto na cor do card, para o corte não virar uma linha dura */
.fundador {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}
.fundador:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 218, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.fundador__foto {
  position: relative;
  flex: none;
  height: 320px;
  overflow: hidden;
  background: var(--bg-deep);
}
.fundador__img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fundador:hover .fundador__img { transform: scale(1.04); }
.fundador--marca {
  background:
    radial-gradient(90% 70% at 75% 12%, rgba(0, 123, 255, 0.12) 0%, rgba(13, 17, 23, 0) 60%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--bg-deep) 100%);
}
.fundador__iniciais {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 128px; height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--text);
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  border: 2px solid transparent;
}
.fundador__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19, 24, 35, 0) 62%, rgba(19, 24, 35, 0.6) 86%, var(--surface) 100%);
}
.fundador__texto {
  padding: 22px 30px 28px;
}
.fundador__badge {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.fundador h3 { font-size: 1.7rem; font-weight: 500; }
.fundador__role { color: var(--cyan); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.07em; margin: 4px 0 12px; }
.fundador__bio { color: var(--muted); font-size: 0.92rem; line-height: 1.6; max-width: 52ch; }
.avatar {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  color: var(--text);
  background:
    linear-gradient(var(--surface-2), var(--surface-2)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
}
.avatar--lg { width: 74px; height: 74px; font-size: 1.25rem; }
.avatar--foto { object-fit: cover; object-position: center 20%; }
.avatar--sm { width: 52px; height: 52px; font-size: 0.9rem; }
.conselho__dica {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.2rem;
}
.conselho {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.conselho__fileira {
  display: flex;
  gap: 10px;
}
.membro {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: min(48vh, 440px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  outline: none;
  transition: flex-grow 0.85s cubic-bezier(0.45, 0, 0.15, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}
.membro:hover, .membro:focus-visible {
  flex-grow: 2.6;
  border-color: rgba(0, 218, 255, 0.3);
}
.membro:focus-visible { box-shadow: 0 0 0 3px rgba(0, 218, 255, 0.25); }
.membro.is-open {
  flex-grow: 5;
  border-color: rgba(0, 218, 255, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.membro__foto {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) brightness(0.82);
  transition: filter 0.6s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.membro:hover .membro__foto,
.membro:focus-visible .membro__foto,
.membro.is-open .membro__foto {
  filter: grayscale(0) brightness(1);
  transform: scale(1.04);
}
.membro__foto--vazia {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  color: var(--faint);
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface) 100%);
  filter: none;
}
.membro__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0) 55%, rgba(13, 17, 23, 0.6) 100%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.membro__texto {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 84px 20px 18px;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, rgba(13, 17, 23, 0.55) 36%, rgba(13, 17, 23, 0.93) 64%, rgba(13, 17, 23, 0.99) 100%);
  pointer-events: none;
}
.membro__texto-inner {
  width: min(440px, calc(100vw - 80px));
}
.membro__texto h4 {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s, font-size 0.8s cubic-bezier(0.45, 0, 0.15, 1);
}
.membro__papel {
  font-size: 0.74rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-top: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease 0.12s, transform 0.45s ease 0.12s;
}
.membro:hover .membro__texto h4, .membro:focus-visible .membro__texto h4, .membro.is-open .membro__texto h4,
.membro:hover .membro__papel, .membro:focus-visible .membro__papel, .membro.is-open .membro__papel {
  opacity: 1;
  transform: none;
}
.membro.is-open .membro__texto h4 { font-size: 1.3rem; }
.membro__extra {
  max-height: 0;
  opacity: 0;
  transform: translateY(18px);
  overflow: hidden;
  transition: max-height 0.9s cubic-bezier(0.45, 0, 0.15, 1), opacity 0.7s ease 0.1s, transform 0.9s cubic-bezier(0.45, 0, 0.15, 1);
  pointer-events: none;
}
.membro.is-open .membro__extra {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0.15s;
}
.membro__cargo {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 10px;
}
.membro__bio { font-size: 0.88rem; color: var(--muted); line-height: 1.55; max-width: 46ch; margin-top: 10px; }
.membro__social { display: flex; gap: 12px; margin-top: 16px; }
.membro__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.membro__social a:hover { border-color: var(--cyan); box-shadow: 0 0 18px rgba(0, 218, 255, 0.16); }
.membro__social svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 760px) {
  .conselho__fileira { flex-direction: column; }
  .membro { flex: none; width: 100%; height: 84px; transition: height 0.8s cubic-bezier(0.45, 0, 0.15, 1), border-color 0.4s ease; }
  .membro:hover, .membro:focus-visible { flex-grow: 1; }
  .membro.is-open { flex-grow: 1; height: 440px; }
  .membro__foto { object-position: center 30%; }
  .membro__texto { padding-top: 48px; }
  .membro__texto-inner { width: 100%; }
  .membro__texto h4, .membro__papel { opacity: 1; transform: none; }
}

/* ══════════ LEGADO ══════════ */
.legado { background: var(--bg-deep); border-block: 1px solid var(--line); }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 4rem;
}
.stat {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
}
.stat__num {
  display: flex;
  align-items: baseline;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num b {
  font-weight: 300;
  font-size: 0.55em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 4px;
}
.stat p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; max-width: 30ch; }

/* ══════════ CONVITE ══════════ */
/* Manhattan à noite (f-121, último frame da travessia do hub) cobre a seção
   inteira; a "lente escura" do ::before pesa mais à direita, onde a carta
   fica, e funde topo/rodapé com as seções vizinhas */
.convite {
  position: relative;
  overflow: hidden;
  background:
    url('../assets/hero-frames/f-121.jpg') center 32% / cover no-repeat,
    var(--bg);
}
.convite::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.42) 0%, rgba(13, 17, 23, 0.46) 45%, rgba(10, 14, 21, 0.82) 76%, rgba(10, 14, 21, 0.96) 100%),
    linear-gradient(180deg, var(--bg) 0%, rgba(13, 17, 23, 0) 16%, rgba(13, 17, 23, 0) 84%, var(--bg-deep) 100%);
}
.convite__box {
  position: relative;
  z-index: 1; /* stacking context: o véu (::before z:-1) fica acima da lente */
  max-width: 640px;
  margin-left: auto;
}
/* escurecimento local atrás do texto — blur alto: nenhuma borda aparente */
.convite__box::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -56px -72px;
  background: rgba(7, 10, 16, 0.68);
  border-radius: 48px;
  filter: blur(48px);
  pointer-events: none;
}
.convite__quote {
  border-left: 2px solid;
  border-image: linear-gradient(180deg, #00DAFF, #007BFF) 1;
  padding-left: clamp(22px, 3.5vw, 42px);
  margin: 3rem 0 2.5rem;
}
.convite__quote p {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.convite__punch { color: var(--text) !important; font-size: clamp(1.2rem, 2vw, 1.55rem) !important; }
.convite__sign {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ══════════ CANDIDATURA / FORM (embed Dinamize) ══════════
   O HTML do formulário vem da Dinamize (js/dinamize-form-html.js); o <style>
   deles é descartado pelo js/main.js e este skin assume — inclusive as regras
   funcionais que o dinForms pressupõe (mensagens ocultas, spinner, .field-error). */
.candidatura { background: var(--bg-deep); border-top: 1px solid var(--line); }

.dinamize-embed { margin-top: 3.5rem; }

/* wrapper dos .block (classe posta pelo js/main.js) — grade de 2 colunas.
   A ordem dos campos é resolvida no DOM pelo js (Tab e leitor de tela
   acompanham); aqui só se decide quem divide linha (meia largura). */
.din-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
/* min-width:0 vence o min-width:auto de item de grid — sem isso a largura
   intrínseca dos campos da Dinamize estoura a coluna em telas estreitas */
.din-grid > * { grid-column: 1 / -1; min-width: 0; }
.dinamize-embed .block,
.dinamize-embed .divlabel,
.dinamize-embed .divinput { max-width: 100%; }
.din-grid .block--cmp2,   /* nome     | empresa  */
.din-grid .block--cmp5,
.din-grid .block--cmp12,  /* cargo    | whatsapp */
.din-grid .block--cmp14,
.din-grid .block--cmp1,   /* e-mail   | linkedin */
.din-grid .block--cmp35 { grid-column: auto; }

/* "LP de Origem" NUNCA é exibida: é atribuição preenchida pela página, e o
   candidato não teria como saber o que responder. O campo é uma Lista de
   Valores Múltiplos (.type_LVM) — o js também esconde o bloco, mas aqui em
   CSS a regra não depende de o js encontrar o campo: quando o embed e o
   main.js divergem (form novo, JS antigo em cache, ou o inverso), o js pula o
   bloco e o campo aparecia vazio na página. Já aconteceu em produção.
   `display:none` não tira o campo do serialize() do dinForms — o valor viaja. */
.dinamize-embed .block:has(.type_LVM) { display: none; }

.dinamize-embed .block { margin-bottom: 20px; }
.dinamize-embed .divlabel { margin-bottom: 8px; }
/* escopado ao .divlabel para não vazar no label.check do consentimento */
.dinamize-embed .divlabel label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.dinamize-embed input[type="text"],
.dinamize-embed select,
.dinamize-embed textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
/* o <style> da Dinamize dava altura ao textarea; sem isto o campo nasce raso */
.dinamize-embed textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.dinamize-embed ::placeholder { color: rgba(255, 255, 255, 0.40); }
.dinamize-embed input[type="text"]:focus,
.dinamize-embed select:focus,
.dinamize-embed textarea:focus {
  border-color: rgba(0, 218, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 218, 255, 0.12);
}
/* validação do dinForms */
.dinamize-embed .field-error {
  border-color: rgba(255, 92, 92, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.12);
}
/* submit deles com a cara do .btn--primary .btn--full */
.dinamize-embed .submit { position: relative; }
.dinamize-embed .spinner { display: none; }
.dinamize-embed input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #04121F;
  background: var(--grad);
  border: none;
  border-radius: 999px;
  padding: 18px 38px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.dinamize-embed input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(0, 160, 255, 0.35);
}
/* mensagens do dinForms: nascem ocultas, o js deles exibe via style inline */
.dinamize-embed .DinamizeDivMessageSuccess,
.dinamize-embed .DinamizeDivMessageAlert,
.dinamize-embed .DinamizeDivMessageError,
.dinamize-embed .DinamizeDivCaptchaMessage {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}
.dinamize-embed .DinamizeDivMessageSuccess {
  background: rgba(0, 218, 255, 0.10);
  border: 1px solid rgba(0, 218, 255, 0.35);
  color: var(--cyan);
}
.dinamize-embed .DinamizeDivMessageAlert,
.dinamize-embed .DinamizeDivMessageError,
.dinamize-embed .DinamizeDivCaptchaMessage {
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.4);
  color: #ff7b7b;
}

.check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 6px 0 30px;
  cursor: pointer;
}
.check input {
  appearance: none;
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.check input:checked { background: var(--grad); border-color: transparent; }
.check input:checked::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #04121F;
}
.form__note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}
.form__success {
  margin-top: 4rem;
  text-align: center;
  padding: 70px 40px;
  background: var(--surface);
  border: 1px solid rgba(0, 218, 255, 0.3);
  border-radius: var(--radius);
}
.form__success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--grad);
  color: #04121F;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.form__success h3 { font-size: 1.6rem; font-weight: 400; margin-bottom: 0.6rem; }
.form__success p { color: var(--muted); }
.form__success-aviso {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--cyan) !important;
}

/* ══════════ 404 ══════════
   A presença de site/404.html desliga o fallback SPA do Pages (que servia a
   home com 200 em qualquer caminho) — o Pages passa a responder 404 real. */
.erro404 {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad);
  background:
    radial-gradient(60% 70% at 50% 28%, rgba(0, 123, 255, 0.10) 0%, rgba(10, 14, 21, 0) 60%),
    var(--bg-deep);
}
.erro404__conteudo { max-width: 640px; }
.erro404__codigo {
  font-size: clamp(4.5rem, 14vw, 8rem);
  font-weight: 200;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.erro404 h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.8rem 0 1rem;
}
.erro404 .lead { margin: 0 auto 2.4rem; }

/* ══════════ PÁGINAS LEGAIS (privacidade/termos) ══════════ */
.legal { padding-block: 180px 100px; min-height: 60vh; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.legal h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0;
  margin: 3rem 0 1.1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cyan);
  margin: 1.8rem 0 0.6rem;
}
.legal p { color: var(--muted); max-width: 62ch; margin-bottom: 1.4rem; }
.legal ul { color: var(--muted); max-width: 62ch; margin: 0 0 1.4rem 1.1rem; }
.legal li { margin-bottom: 0.6rem; padding-left: 0.3rem; }
.legal li::marker { color: var(--cyan); }
.legal a { color: var(--cyan); }
.legal strong { color: var(--text); font-weight: 500; }
.legal__meta {
  font-size: 0.85rem;
  color: var(--faint);
  margin-bottom: 3rem;
}

/* ══════════ FOOTER ══════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding-block: 64px;
}
.footer__grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
/* marca em SVG (referencia os gradientes definidos no svg do nav) */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__logo-simbolo { width: 54px; height: 40px; flex: none; }
.footer__logo-texto { display: flex; flex-direction: column; line-height: 1.3; }
.footer__logo-main { color: var(--text); font-weight: 600; font-size: 1.12rem; letter-spacing: 0.22em; white-space: nowrap; }
.footer__logo-sub { color: var(--cyan); font-weight: 400; font-size: 0.6rem; letter-spacing: 0.42em; white-space: nowrap; }
.footer__info p { font-size: 0.9rem; color: var(--muted); }
.footer__info strong { color: var(--text); font-weight: 500; }
.footer__fine { font-size: 0.75rem; color: var(--faint); margin-top: 6px; }
.footer__legal { font-size: 0.75rem; margin-top: 10px; }
.footer__legal a { color: var(--faint); text-decoration: none; transition: color 0.25s ease; }
.footer__legal a:hover { color: var(--cyan); }
/* crédito da desenvolvedora */
.footer__dev {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}
.footer__dev span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
}
.footer__dev img {
  width: 150px;
  height: auto;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.footer__dev:hover img { opacity: 1; }

/* ── reveals (estado inicial via JS, não CSS, para não sumir sem JS) ── */

/* ══════════ responsivo ══════════ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__content { bottom: 10vh; right: var(--pad); }
  .din-grid { grid-template-columns: 1fr; }
  .din-grid > * { grid-column: 1 / -1 !important; }
  .fundador__foto { height: 300px; }

  /* na LP mobile o retrato é a cena inteira: a marca do header fica fora
     de cena enquanto o pôster está de pé (classe do js, atada ao progresso
     do scrub) e reaparece assim que o retrato dissolve */
  .pagina-curador .nav .nav__brand {
    transition: opacity 0.35s ease, visibility 0.35s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .pagina-curador .nav.is-poster-visivel .nav__brand {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
  }

  /* hero do curador no mobile: o stage vira coluna — card do retrato em
     cima (ocupa o espaço que sobrar), conteúdo embaixo, sem sobreposição.
     A travessia roda aqui também, como no hub */
  .heroCur { height: 340vh; }
  .heroCur__stage {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    padding: calc(var(--urgencia-h) + 76px) var(--pad) 5svh;
  }
  .heroCur__retrato {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 150px;
    height: auto;
    width: min(72vw, 330px);
    margin-inline: auto;
  }
  .heroCur__conteudo {
    position: relative;
    inset: auto;
    flex: none;
    max-width: none;
  }
  .heroCur__conteudo::before { inset: -24px -20px -32px -20px; }
  /* credencial é secundária — devolve altura ao card no mobile */
  .hero__creds { display: none; }

  /* carta: sem coluna à direita no mobile — lente uniforme para leitura */
  .convite::before {
    background:
      linear-gradient(rgba(11, 15, 21, 0.78), rgba(11, 15, 21, 0.78)),
      linear-gradient(180deg, var(--bg) 0%, rgba(13, 17, 23, 0) 16%, rgba(13, 17, 23, 0) 84%, var(--bg-deep) 100%);
  }
}
@media (max-width: 900px) and (max-height: 700px) {
  /* telas curtas: tipografia e card compactos para nada alcançar o nav */
  .heroCur__nome { font-size: 1.9rem; }
  .heroCur__lead { font-size: 0.92rem; line-height: 1.55; margin-bottom: 1.4rem; }
  .hero__creds { font-size: 0.7rem; }
  .heroCur__conteudo { bottom: 5svh; }
  .heroCur__retrato {
    width: min(52vw, 240px);
    height: min(36svh, 300px);
  }
}
@media (max-width: 640px) {
  /* header compacto: svg + wordmark numa linha e CTA menor — sem isso o
     conjunto não cabe em 390px e o wordmark quebra */
  .nav { padding: 14px var(--pad); gap: 12px; }
  .nav__brand { gap: 9px; }
  .nav__logo { width: 30px; height: 22px; }
  .nav__brand-main { font-size: 0.78rem; letter-spacing: 0.16em; white-space: nowrap; }
  .nav__brand-sub { font-size: 0.48rem; letter-spacing: 0.3em; white-space: nowrap; }
  .btn--nav { padding: 9px 16px; font-size: 0.7rem; white-space: nowrap; }
  /* CTA da hero numa linha só — no tamanho desktop o rótulo quebrava */
  .btn--primary { padding: 14px 24px; font-size: 0.84rem; white-space: nowrap; }
  /* CTAs de candidatura trocam para o rótulo curto */
  .btn__longa { display: none; }
  .btn__curta { display: inline; }
  .hero { height: 340vh; }
  .hero__hint { display: none; }
  .heroCur__nome { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .agenda__track { padding-inline: var(--pad); }
  .footer__dev { margin-left: 0; }
}

/* telas largas e CURTAS (notebook 1366x768, janela restaurada, escala do
   Windows): as heros ancoram o bloco embaixo do stage de 100svh e o tipo
   escala por vw, então em viewport baixo o título estourava por cima do
   nav (visto em campo num Dell 14"). O min() trava o tipo também pela
   altura do viewport para o bloco sempre caber na cena. */
@media (min-width: 901px) and (max-height: 820px) {
  .hero__title { font-size: min(clamp(2.5rem, 5.6vw, 4.6rem), 8vh); }
  .heroCur__nome { font-size: min(clamp(2.6rem, 5.4vw, 4.8rem), 8vh); }
}
/* mais curto ainda: compacta nav, margens e o card do retrato na LP */
@media (min-width: 901px) and (max-height: 640px) {
  .nav { padding-top: 14px; padding-bottom: 14px; }
  .nav__brand-main, .nav__brand-sub { white-space: nowrap; }
  .hero__content { bottom: 5vh; }
  .hero__content .kicker { margin-bottom: 0.9rem; }
  .hero__title { font-size: min(clamp(2.5rem, 5.6vw, 4.6rem), 7.2vh); margin-bottom: 0.9rem; }
  .hero__lead {
    font-size: max(min(1.12rem, 2.6vh), 0.84rem);
    line-height: 1.5;
    max-width: 60ch;
    margin-bottom: 1.4rem;
  }
  .hero__cta .btn--primary { padding: 12px 22px; font-size: 0.8rem; white-space: nowrap; }
  .hero__creds { margin: -0.8rem 0 1.4rem; }
  .heroCur__conteudo { bottom: 6vh; }
  .heroCur__conteudo .kicker { margin-bottom: 0.9rem; }
  .heroCur__nome { margin: 0.4rem 0 1rem; }
  .heroCur__lead {
    font-size: max(min(1.12rem, 2.6vh), 0.84rem);
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }
  .heroCur__retrato { height: min(56svh, 640px); }
}

/* ══════════ reduced motion ══════════ */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__hint-line, .heroCur__fundo, .heroCur__retrato,
  .heroCur__retrato img, .heroCur__conteudo > * { animation: none; }
  .nav:not(.is-hero-visible) ~ .zap .zap__disco::before { animation: none; opacity: 0; }
  .heroCur { height: auto; }
  .heroCur__stage { position: relative; }
  .marquee__inner { animation-duration: 120s; }
  .hero { height: auto; }
  .hero__stage { position: relative; height: 100svh; }
  .agenda { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .imersao { min-height: 0; display: block; }
}
