: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);
}

* { 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); }
.btn--full { width: 100%; }

/* ── 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; 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; }
}

/* ══════════ 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__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; }
}

/* ══════════ 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; }


/* ══════════ 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; }

/* ══════════ 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%); } }

/* ══════════ EXPERIÊNCIAS ══════════ */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 3.5rem;
}
.exp__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}
.exp__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 218, 255, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.exp__media { aspect-ratio: 16 / 9; overflow: hidden; }
.exp__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.exp__card:hover .exp__media img { transform: scale(1.06); }
.exp__body { padding: 32px 34px 38px; }
.exp__body h3 { margin-bottom: 0.8rem; }
.exp__body p { color: var(--muted); font-size: 0.97rem; }

/* ══════════ 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; }
}

/* ══════════ 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;
}
.fundador {
  position: relative;
  min-height: 420px;
  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__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  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(13, 17, 23, 0) 18%, rgba(13, 17, 23, 0.78) 52%, rgba(13, 17, 23, 0.99) 100%);
}
.fundador__texto {
  position: absolute;
  left: 30px; right: 30px; bottom: 26px;
}
.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__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 ══════════ */
.convite {
  background:
    radial-gradient(60% 70% at 15% 20%, rgba(0, 218, 255, 0.07) 0%, rgba(13, 17, 23, 0) 60%),
    var(--bg);
}
.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 editorial:
   a ordem visual é nossa, não a do cadastro da Dinamize */
.din-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
.din-grid > * { grid-column: 1 / -1; }
.din-grid .block--cmp2  { grid-column: auto; order: 1; } /* nome */
.din-grid .block--cmp5  { grid-column: auto; order: 2; } /* empresa */
.din-grid .block--cmp12 { grid-column: auto; order: 3; } /* cargo */
.din-grid .block--cmp14 { grid-column: auto; order: 4; } /* whatsapp */
.din-grid .block--cmp1  { grid-column: auto; order: 5; } /* e-mail */
.din-grid .block--cmp35 { grid-column: auto; order: 6; } /* linkedin */
.din-grid .block--cmp36 { order: 7; }                    /* motivação */
.din-grid .block--consent { order: 8; }
.din-grid .block--submit  { order: 9; }

.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;
}

/* ══════════ EM CONSTRUÇÃO (gate de prod — ver docs/deploy.md) ══════════
   O build injeta data-construcao no <html> quando EM_CONSTRUCAO=1; o inline
   script no <head> remove o atributo para o corpo técnico (localStorage). */
.construcao { display: none; }
html[data-construcao] { overflow: hidden; }
/* some da árvore de acessibilidade e do tab-order; o grain fica de textura */
html[data-construcao] body > :not(.construcao):not(.grain) { visibility: hidden; }
html[data-construcao] .construcao {
  display: flex;
  position: fixed; inset: 0; z-index: 200;
  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);
}
.construcao__conteudo { max-width: 640px; }
.construcao__marca {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--text);
}
.construcao__marca span {
  display: block;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--cyan);
  margin-top: 4px;
}
.construcao__conteudo .kicker { margin: 2.6rem 0 1rem; }
.construcao__titulo {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.construcao__titulo strong {
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.construcao__conteudo .lead { margin: 0 auto; }

/* ══════════ PÁGINAS LEGAIS (privacidade/termos) ══════════ */
.legal { padding-block: 180px 100px; min-height: 60vh; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
.legal p { color: var(--muted); max-width: 62ch; margin-bottom: 1.4rem; }
.legal__nota { font-size: 0.85rem; color: var(--faint); }

/* ══════════ 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;
}
.footer__logo {
  width: 190px;
  mix-blend-mode: screen;
}
.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); }

/* ── 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 { min-height: 380px; }
}
@media (max-width: 640px) {
  .hero { height: 340vh; }
  .hero__hint { display: none; }
  .agenda__track { padding-inline: var(--pad); }
}

/* ══════════ reduced motion ══════════ */
@media (prefers-reduced-motion: reduce) {
  .grain, .hero__hint-line { animation: none; }
  .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; }
}
