/* ============================================================
   MetaHumano Club — Design System (brand.css)
   Fonte única de tokens da marca. Referência: docs/knowledge-
   base/products/metahumano-club/brand-book.md
   ============================================================ */

:root {
  /* Base — azuis profundos */
  --bg-darkest: #050a14;
  --bg-primary: #060e1a;
  --bg-secondary: #0d1d33;
  --bg-tertiary: #111f3a;

  /* Acento — dourado fosco */
  --accent: #d4af37;
  --accent-dark: #b8962e;
  --accent-light: #f5e6a3;
  --accent-glow: rgba(212, 175, 55, 0.15);

  /* Texto — off-white */
  --text-primary: #f5f1e8;
  --text-secondary: rgba(245, 241, 232, 0.72);
  --text-muted: rgba(245, 241, 232, 0.48);

  /* Semânticos */
  --success: #27ae60;
  --success-dark: #1e8a4c;
  --error: #c0392b;

  /* Glass */
  --glass-bg: rgba(13, 29, 51, 0.6);
  --glass-border: rgba(245, 241, 232, 0.08);
  --glass-blur: 16px;

  /* Tipografia */
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: clamp(0.72rem, 0.68rem + 0.2vw, 0.8rem);
  --text-sm: clamp(0.82rem, 0.78rem + 0.2vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.9rem, 1.5rem + 2vw, 2.9rem);
  --text-4xl: clamp(2.4rem, 1.8rem + 3vw, 3.8rem);

  /* Ritmo */
  --space-section: clamp(4.5rem, 3rem + 6vw, 8rem);
  --container: 72rem;
  --container-narrow: 48rem;
  --radius: 14px;
  --radius-sm: 9px;

  /* Movimento */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur: 700ms;
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-darkest);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

a:hover {
  color: var(--accent-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--accent);
  color: var(--bg-darkest);
}

/* ---------- Utilitários ---------- */

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

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

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

.section--alt {
  background: var(--bg-primary);
}

.section--marble {
  background:
    linear-gradient(rgba(5, 10, 20, 0.88), rgba(5, 10, 20, 0.82)),
    url("../images/texture-marble.jpg") center / cover no-repeat;
  border-block: 1px solid rgba(212, 175, 55, 0.14);
}

/* ---------- Tipografia de marca ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.eyebrow--center::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.title {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.title--hero {
  font-size: var(--text-4xl);
}

.title--section {
  font-size: var(--text-3xl);
  margin-bottom: 1.6rem;
}

.title em,
.title .accent {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shine 6s linear infinite;
}

@keyframes gold-shine {
  to {
    background-position: 200% center;
  }
}

.lead {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 42rem;
}

.prose p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  max-width: 46rem;
}

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

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out),
    background 300ms var(--ease-out), color 300ms var(--ease-out);
  text-align: center;
}

.btn--gold {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 45%, var(--accent-light) 100%);
  color: var(--bg-darkest);
  box-shadow: 0 6px 28px -6px var(--accent-glow), 0 2px 8px rgba(0, 0, 0, 0.35);
}

.btn--gold:hover {
  color: var(--bg-darkest);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -6px rgba(212, 175, 55, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(245, 241, 232, 0.22);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

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

.microcopy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 30rem;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 1.1rem 0;
  transition: background 400ms var(--ease-out), backdrop-filter 400ms var(--ease-out),
    border-color 400ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(245, 241, 232, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  height: 34px;
  width: auto;
}

.brand__crest {
  width: auto;
  height: 3.2rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
}

.brand__name {
  position: relative;
  padding-left: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  white-space: nowrap;
}

.brand__name::before {
  content: none;
}

.brand__name span {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 40%, transparent 0%, rgba(5, 10, 20, 0.55) 100%),
    linear-gradient(100deg, var(--bg-darkest) 22%, rgba(5, 10, 20, 0.86) 55%, rgba(5, 10, 20, 0.42) 100%);
}

.hero__content {
  max-width: 40rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: transform 400ms var(--ease-out), border-color 400ms var(--ease-out),
    box-shadow 400ms var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.card__numeral {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.9rem;
}

.card__title {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ---------- Listas ---------- */

.check-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text-secondary);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--accent) 0 2.5px, transparent 3px);
}

.x-list li::before {
  border-color: var(--error);
  background:
    linear-gradient(45deg, transparent 44%, var(--error) 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--error) 44% 56%, transparent 56%);
  border-radius: 2px;
}

/* ---------- Formulários ---------- */

.form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 1.2rem + 2vw, 3rem);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.form-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.8rem;
}

.form-grid .span-2 {
  grid-column: span 2;
}

.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.field input,
.field select {
  width: 100%;
  font-family: var(--sans);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: rgba(5, 10, 20, 0.55);
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

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

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.field__error {
  display: none;
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: 0.4rem;
}

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

.consent {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.consent__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  cursor: pointer;
}

.consent__item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent__box {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  border: 1px solid rgba(245, 241, 232, 0.3);
  border-radius: 4px;
  position: relative;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.consent__item input:checked + .consent__box {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__item input:checked + .consent__box::after {
  content: "";
  position: absolute;
  inset: 2px;
  background:
    linear-gradient(45deg, transparent 52%, var(--bg-darkest) 52%) 2px 5px / 5px 8px no-repeat,
    linear-gradient(-45deg, transparent 52%, var(--bg-darkest) 52%) 6px 5px / 7px 8px no-repeat;
}

.consent__item input:focus-visible + .consent__box {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent__error {
  display: none;
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--error);
  color: #e9a097;
  background: rgba(192, 57, 43, 0.08);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.consent.has-error .consent__error {
  display: block;
}

.consent.has-error .consent__item input[aria-invalid="true"] + .consent__box {
  border-color: var(--error);
}

/* ---------- Estados (verificação CRM, envio) ---------- */

.form-state {
  display: none;
  align-items: flex-start;
  gap: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin-top: 1.6rem;
  font-size: var(--text-sm);
  border: 1px solid;
}

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

.form-state--loading {
  color: var(--accent-light);
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.3);
}

.form-state--success {
  color: #7bd9a5;
  background: rgba(39, 174, 96, 0.08);
  border-color: rgba(39, 174, 96, 0.35);
}

.form-state--error {
  color: #e8a09a;
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.4);
}

.form-state--info {
  color: var(--text-secondary);
  background: rgba(245, 241, 232, 0.05);
  border-color: rgba(245, 241, 232, 0.15);
}

.spinner {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

.faq {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.faq__item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 300ms var(--ease-out);
}

.faq__item[open] {
  border-color: rgba(212, 175, 55, 0.35);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-primary);
}

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

.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 300ms var(--ease-out);
  flex: 0 0 auto;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  padding: 0 1.4rem 1.2rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ---------- Timeline / etapas ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.1rem;
  margin-top: 2rem;
}

.steps li {
  counter-increment: step;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  color: var(--text-secondary);
}

.steps li::before {
  content: counter(step, upper-roman);
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--accent);
  min-width: 2.2rem;
}

/* ---------- Divisor editorial ---------- */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto;
  max-width: 22rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45));
}

.divider::after {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.45), transparent);
}

.divider__mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: var(--text-lg);
}

/* ---------- CTA final / bloco dourado ---------- */

.cta-band {
  position: relative;
  text-align: center;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    var(--bg-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}

/* ---------- Rodapé ---------- */

.site-footer {
  border-top: 1px solid rgba(245, 241, 232, 0.07);
  padding: 3rem 0 2.4rem;
  background: var(--bg-darkest);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.site-footer__brand img {
  height: 30px;
  width: auto;
}

.site-footer__brand .site-footer__club-mark {
  width: auto;
  height: 5.4rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.46));
}

.site-footer__brand .site-footer__ima-mark {
  width: auto;
  height: 1.65rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.site-footer p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: 40rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.site-footer nav a {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

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

/* ---------- Banner de consentimento de cookies ---------- */

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 1.2rem 0;
  background: rgba(6, 14, 26, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  transform: translateY(110%);
  transition: transform 500ms var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

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

.cookie-banner p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  max-width: 46rem;
}

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

.cookie-banner .btn {
  padding: 0.7rem 1.6rem;
  font-size: var(--text-sm);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

/* Modo QA: ?preview na URL força todos os blocos visíveis (screenshots) */
.preview-all .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.preview-all .hero {
  min-height: 780px;
}

/* ---------- Responsivo ---------- */

@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .span-2 {
    grid-column: span 1;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero__bg {
    background-position: center top;
    opacity: 0.35;
  }

  .brand__name {
    display: none;
  }
}

/* ============================================================
   Direção editorial 2.0 — experiência premium do Club
   ============================================================ */

:root {
  --bg-ink: #030813;
  --bg-navy: #071323;
  --bg-raised: #0b1a2e;
  --accent-soft: #ead37d;
  --hairline: rgba(212, 175, 55, 0.2);
  --shadow-deep: 0 28px 90px rgba(0, 0, 0, 0.46);
  --container: 78rem;
  --container-narrow: 50rem;
  --text-4xl: clamp(3.25rem, 1.8rem + 4.1vw, 6.35rem);
  --text-3xl: clamp(2.25rem, 1.55rem + 2.2vw, 4rem);
  --radius: 18px;
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(21, 57, 91, 0.16), transparent 24rem),
    var(--bg-ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.025);
}

.page-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent-light));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
}

[id] {
  scroll-margin-top: 6rem;
}

.section {
  isolation: isolate;
}

.section--alt {
  background:
    linear-gradient(120deg, rgba(9, 25, 44, 0.78), rgba(4, 11, 21, 0.94)),
    var(--bg-primary);
}

.title {
  text-wrap: balance;
}

.title--hero {
  max-width: 12ch;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.title--section {
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.lead {
  line-height: 1.65;
}

.prose--large p {
  font-size: clamp(1rem, 0.92rem + 0.24vw, 1.15rem);
  line-height: 1.85;
}

.section-kicker {
  color: var(--text-secondary);
  max-width: 30rem;
  line-height: 1.75;
}

.eyebrow {
  gap: 0.75rem;
  letter-spacing: 0.2em;
}

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

.btn {
  position: relative;
  min-height: 3.35rem;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 36%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 620ms var(--ease-out);
  z-index: -1;
}

.btn:hover::after {
  left: 125%;
}

.btn--compact {
  min-height: 0;
  padding: 0.68rem 1.35rem;
  font-size: var(--text-sm);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
}

.text-link span {
  transition: transform 240ms var(--ease-out);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* ---------- Cabeçalho e navegação ---------- */

.site-header {
  padding: 0.9rem 0;
}

.site-header.is-scrolled {
  background: rgba(3, 8, 19, 0.82);
  border-bottom-color: rgba(212, 175, 55, 0.12);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2vw, 2.2rem);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  transform: scaleX(0);
  background: var(--accent);
  transition: transform 240ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-credential {
  margin-left: auto;
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Superfícies e mídia ---------- */

.interactive-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.interactive-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(28rem circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(212, 175, 55, 0.09), transparent 55%);
  transition: opacity 320ms var(--ease-out);
}

.interactive-surface:hover::before {
  opacity: 1;
}

.media-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid rgba(245, 230, 163, 0.15);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 56%, rgba(3, 8, 19, 0.6)),
    linear-gradient(120deg, rgba(212, 175, 55, 0.08), transparent 34%);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out), filter 600ms var(--ease-out);
  will-change: transform;
}

.media-frame:hover img {
  filter: saturate(1.04) contrast(1.02);
}

.media-frame--landscape {
  aspect-ratio: 4 / 3;
}

/* ---------- Heroes ---------- */

.hero--capture,
.hero--sales,
.hero--thank-you {
  min-height: clamp(42rem, 86svh, 52rem);
  padding: 7.5rem 0 4.25rem;
  background:
    radial-gradient(circle at 78% 42%, rgba(20, 55, 88, 0.38), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(212, 175, 55, 0.055), transparent 24rem),
    linear-gradient(135deg, #030813 0%, #071525 58%, #020711 100%);
}

.hero--sales {
  display: block;
  min-height: auto;
  padding-bottom: 0;
}

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

.hero__ambient::before,
.hero__ambient::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: 50%;
}

.hero__ambient::before {
  width: min(52vw, 46rem);
  aspect-ratio: 1;
  right: -8rem;
  top: 8%;
  box-shadow: 0 0 0 5rem rgba(212, 175, 55, 0.012), 0 0 0 10rem rgba(212, 175, 55, 0.008);
}

.hero__ambient::after {
  width: 11rem;
  aspect-ratio: 1;
  left: -5rem;
  bottom: 10%;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.hero__content {
  max-width: 45rem;
  position: relative;
  z-index: 2;
}

.hero__content .lead {
  max-width: 38rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.hero-facts div {
  padding-right: 1rem;
}

.hero-facts div + div {
  padding-left: 1rem;
  border-left: 1px solid rgba(245, 241, 232, 0.09);
}

.hero-facts dt {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.hero-facts dd {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  min-height: clamp(28rem, 60vh, 40rem);
  margin-inline: auto;
  width: min(100%, 31rem);
}

.hero-portrait__frame {
  position: absolute;
  inset: 0 0 2.3rem 2.3rem;
  border-radius: 16rem 16rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-deep);
}

.hero-portrait__frame img {
  object-position: center 20%;
}

.hero-portrait--sales .hero-portrait__frame img {
  object-position: center 14%;
}

.hero-portrait__halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  left: 2%;
  top: 1%;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 50%;
}

.hero-portrait__halo::before,
.hero-portrait__halo::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: inherit;
}

.hero-portrait__halo::after {
  inset: -7%;
  border-color: rgba(212, 175, 55, 0.065);
}

.hero-portrait__caption {
  position: absolute;
  right: -1.5rem;
  bottom: 0;
  z-index: 3;
  min-width: 15.5rem;
  padding: 1rem 1.25rem;
  background: rgba(5, 14, 26, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.hero-portrait__caption span,
.hero-portrait__caption small,
.hero-portrait__edition {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-portrait__caption span {
  color: var(--accent);
}

.hero-portrait__caption strong {
  display: block;
  margin: 0.16rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-portrait__caption small {
  color: var(--text-muted);
}

.hero-portrait__edition {
  position: absolute;
  left: -2.4rem;
  bottom: 7.5rem;
  color: var(--text-muted);
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.35rem;
}

.hero-proof__line {
  width: 2.6rem;
  height: 1px;
  background: var(--accent);
}

.hero-proof p {
  color: var(--text-muted);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.hero-proof strong {
  display: block;
  color: var(--text-secondary);
  font-family: var(--serif);
  font-size: var(--text-base);
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3.5rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-bottom: 0;
  background: rgba(4, 11, 21, 0.72);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  min-height: 7.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.7rem;
}

.hero-metrics div + div {
  border-left: 1px solid rgba(212, 175, 55, 0.13);
}

.hero-metrics strong {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 2.5rem;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.16);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--accent);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  55%, 100% { transform: translateY(200%); }
}

/* ---------- Estruturas editoriais ---------- */

.editorial-section {
  overflow: hidden;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.editorial-split--wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(29rem, 1.05fr);
}

.editorial-copy .check-list {
  max-width: 35rem;
}

.editorial-visual {
  position: relative;
  min-width: 0;
}

.editorial-visual--offset {
  transform: translateY(2.5rem);
}

.editorial-visual .media-frame {
  border-radius: 0 8rem 0 0;
  box-shadow: var(--shadow-deep);
}

.editorial-visual figcaption,
.experience-card figcaption,
.mentor-portrait figcaption,
.thank-you-visual figcaption {
  position: absolute;
  right: -1.2rem;
  bottom: -1.7rem;
  width: min(82%, 22rem);
  padding: 1rem 1.2rem;
  background: rgba(5, 14, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.editorial-visual figcaption span,
.experience-card figcaption span,
.mentor-portrait figcaption span,
.thank-you-visual figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-visual figcaption strong,
.experience-card figcaption strong,
.mentor-portrait figcaption strong,
.thank-you-visual figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
}

.principle-list,
.mentor-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.principle-list span,
.mentor-principles span {
  padding: 0.52rem 0.78rem;
  color: var(--text-secondary);
  font-size: var(--text-xs);
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.035);
}

.divider--left {
  justify-content: flex-start;
  margin: 2.5rem 0 0;
}

.divider--left::before {
  display: none;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.section-heading .title--section {
  max-width: 17ch;
  margin-bottom: 0;
}

/* ---------- Captura ---------- */

.capture-section {
  background:
    linear-gradient(110deg, rgba(3, 8, 19, 0.97), rgba(5, 15, 28, 0.82)),
    url("../images/texture-marble.jpg") center / cover fixed;
}

.capture-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.capture-intro {
  position: sticky;
  top: 8.5rem;
}

.capture-intro .lead {
  max-width: 31rem;
}

.trust-list {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.trust-list > div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.trust-list > div > span {
  color: var(--accent);
  font-family: var(--serif);
}

.trust-list p {
  color: var(--text-muted);
  font-size: var(--text-xs);
  line-height: 1.55;
}

.trust-list strong {
  display: block;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
}

.form-card--elevated {
  padding: clamp(1.7rem, 3vw, 3.2rem);
  background: rgba(7, 20, 36, 0.86);
  border-color: rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow-deep);
}

.form-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}

.form-card__heading span {
  color: var(--accent);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-card__heading strong {
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 600;
}

.form-card--elevated .field input,
.form-card--elevated .field select {
  min-height: 3.25rem;
  background-color: rgba(2, 8, 16, 0.62);
}

.selection-section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.selection-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: linear-gradient(120deg, rgba(13, 29, 51, 0.78), rgba(6, 14, 26, 0.54));
}

.selection-banner__mark {
  width: clamp(5rem, 9vw, 8rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.75rem rgba(212, 175, 55, 0.025);
}

.selection-banner .eyebrow {
  margin-bottom: 0.65rem;
}

.selection-banner .title--section {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 1.35rem + 1.3vw, 2.75rem);
}

.selection-banner .prose p {
  margin-bottom: 0;
}

/* ---------- Manifesto, público e pilares ---------- */

.manifesto-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 90%, rgba(212, 175, 55, 0.06), transparent 22rem),
    var(--bg-ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 0.55fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.manifesto-copy {
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid rgba(212, 175, 55, 0.17);
}

.manifesto-signature {
  position: relative;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(13, 29, 51, 0.4);
}

.manifesto-signature::before {
  content: "◈";
  display: block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.manifesto-signature span {
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.manifesto-signature strong {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.35;
}

.audience-grid {
  gap: 1px;
  padding: 1px;
  background: rgba(212, 175, 55, 0.12);
}

.audience-card {
  min-height: 100%;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(12, 31, 52, 0.96), rgba(7, 18, 32, 0.96));
}

.audience-card:hover {
  transform: none;
}

.audience-card--not {
  background: linear-gradient(145deg, rgba(9, 23, 39, 0.96), rgba(4, 12, 22, 0.98));
}

.audience-card__label {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: var(--accent);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.pillar-card {
  grid-column: span 2;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(145deg, rgba(13, 33, 57, 0.76), rgba(5, 15, 27, 0.9));
}

.pillar-card--feature,
.pillar-card:nth-child(5) {
  grid-column: span 3;
}

.pillar-card .card__numeral {
  margin-bottom: auto;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  opacity: 0.82;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 2.25rem;
  height: 2.25rem;
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* ---------- Entregáveis e galeria ---------- */

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.deliverable-card {
  grid-column: span 4;
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: rgba(9, 24, 42, 0.78);
}

.deliverable-card--feature,
.deliverable-card--community {
  grid-column: span 6;
}

.deliverable-card .card__numeral {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.deliverable-card--feature {
  background:
    radial-gradient(circle at 82% 15%, rgba(212, 175, 55, 0.1), transparent 12rem),
    rgba(9, 24, 42, 0.86);
}

.deliverable-card--community {
  background:
    radial-gradient(circle at 15% 80%, rgba(31, 76, 113, 0.24), transparent 15rem),
    rgba(8, 21, 37, 0.9);
}

.experience-section {
  background:
    linear-gradient(180deg, rgba(3, 8, 19, 0.1), rgba(3, 8, 19, 0.72)),
    var(--bg-ink);
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(18rem, 27rem));
  gap: 1rem;
}

.experience-card {
  position: relative;
  min-width: 0;
}

.experience-card--wide {
  grid-row: 1 / span 2;
}

.experience-card .media-frame {
  border-radius: 1px;
}

.experience-card--wide .media-frame img {
  object-position: 50% 48%;
}

.experience-card figcaption {
  right: 1rem;
  bottom: 1rem;
}

/* ---------- Mentor e calendário ---------- */

.mentor-section {
  background:
    radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.055), transparent 24rem),
    var(--bg-ink);
}

.mentor-grid {
  display: grid;
  grid-template-columns: minmax(21rem, 0.74fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.mentor-portrait {
  position: relative;
  min-height: clamp(35rem, 68vw, 48rem);
}

.mentor-portrait .media-frame {
  border-radius: 13rem 13rem 0 0;
  box-shadow: var(--shadow-deep);
}

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

.mentor-portrait figcaption {
  right: -1.5rem;
  bottom: 2rem;
}

.mentor-copy .title--section {
  max-width: 12ch;
}

.mentor-copy .prose {
  max-width: 38rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.year-orbit {
  position: relative;
  width: min(100%, 27rem);
  aspect-ratio: 1;
  overflow: clip;
  display: grid;
  place-content: center;
  justify-items: center;
  margin-inline: auto;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4rem rgba(212, 175, 55, 0.012), 0 0 70px rgba(0, 0, 0, 0.22);
}

.year-orbit::before,
.year-orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: inherit;
}

.year-orbit::after {
  inset: 23%;
}

.year-orbit__label,
.year-orbit small {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.year-orbit strong {
  position: relative;
  z-index: 2;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 0.86;
}

.year-orbit__ticks,
.year-orbit__ticks i {
  position: absolute;
  inset: 0;
}

.year-orbit__ticks i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 1px;
  height: 9px;
  background: var(--accent);
}

.year-orbit__ticks i:nth-child(1) { transform: rotate(0deg); }
.year-orbit__ticks i:nth-child(2) { transform: rotate(30deg); }
.year-orbit__ticks i:nth-child(3) { transform: rotate(60deg); }
.year-orbit__ticks i:nth-child(4) { transform: rotate(90deg); }
.year-orbit__ticks i:nth-child(5) { transform: rotate(120deg); }
.year-orbit__ticks i:nth-child(6) { transform: rotate(150deg); }
.year-orbit__ticks i:nth-child(7) { transform: rotate(180deg); }
.year-orbit__ticks i:nth-child(8) { transform: rotate(210deg); }
.year-orbit__ticks i:nth-child(9) { transform: rotate(240deg); }
.year-orbit__ticks i:nth-child(10) { transform: rotate(270deg); }
.year-orbit__ticks i:nth-child(11) { transform: rotate(300deg); }
.year-orbit__ticks i:nth-child(12) { transform: rotate(330deg); }

/* ---------- Processo, FAQ e candidatura ---------- */

.process-steps {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: rgba(212, 175, 55, 0.14);
}

.process-steps li {
  min-height: 10.5rem;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--bg-navy);
}

.process-steps li::before {
  font-size: 1.7rem;
}

.process-note {
  margin-top: 1.4rem;
  max-width: none;
  text-align: right;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-intro {
  position: sticky;
  top: 8.5rem;
}

.faq {
  margin-top: 0;
  gap: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.17);
}

.faq__item {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: transparent;
}

.faq__item[open] {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(13, 29, 51, 0.26);
}

.faq__item summary {
  padding: 1.35rem 0.9rem;
  font-weight: 500;
}

.faq__item p {
  padding: 0 3.2rem 1.4rem 0.9rem;
  line-height: 1.75;
}

.application-section {
  background-attachment: fixed;
}

.application-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(212, 175, 55, 0.21);
  background: rgba(4, 12, 23, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-deep);
}

.application-copy .title--section {
  max-width: 14ch;
}

.application-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.application-action__number {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
}

.application-action > p:not(.microcopy) {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.finale-section {
  min-height: 42rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.finale-section__sculpture {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 8, 19, 0.98) 8%, rgba(3, 8, 19, 0.78) 52%, rgba(3, 8, 19, 0.36)),
    url("../images/hero-bg.jpg") 72% center / cover no-repeat;
  opacity: 0.68;
}

.finale-content {
  margin-left: max(1.25rem, calc((100vw - var(--container)) / 2));
  margin-right: auto;
  text-align: left;
}

.finale-content .eyebrow {
  justify-content: flex-start;
}

.finale-content .eyebrow::after {
  display: none;
}

.finale-content .prose {
  text-align: left;
}

.finale-action {
  margin-top: 2.2rem;
}

.mobile-cta {
  display: none;
}

/* ---------- Obrigado ---------- */

.hero--thank-you {
  min-height: clamp(36rem, 70svh, 44rem);
}

.thank-you-visual {
  position: relative;
  min-height: min(60vh, 39rem);
}

.thank-you-visual .media-frame {
  height: 100%;
  border-radius: 9rem 0 0 0;
  box-shadow: var(--shadow-deep);
}

.thank-you-visual .media-frame img {
  object-position: center 32%;
}

.thank-you-visual__seal {
  position: absolute;
  left: -2.6rem;
  top: 2rem;
  z-index: 3;
  width: 5.2rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--bg-darkest);
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
}

.thank-you-visual__seal span {
  font-size: 1.7rem;
}

.process-card-grid {
  gap: 1px;
  padding: 1px;
  background: rgba(212, 175, 55, 0.13);
}

.process-card {
  min-height: 15rem;
  border: 0;
  border-radius: 0;
  background: var(--bg-navy);
}

.process-card:hover {
  transform: none;
}

.preparation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.preparation-list {
  margin-top: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(9, 24, 42, 0.66);
}

/* ---------- Rodapé ---------- */

.site-footer {
  padding: 3.5rem 0;
}

.site-footer .container {
  display: grid;
  grid-template-columns: auto minmax(18rem, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.site-footer__brand {
  margin-bottom: 0;
}

.site-footer nav {
  justify-content: flex-end;
  margin-top: 0;
}

/* ---------- Movimento ---------- */

.reveal {
  transform: translateY(22px) scale(0.995);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ---------- Responsividade ---------- */

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
    gap: 2.5rem;
  }

  .hero-portrait {
    min-height: 35rem;
  }

  .editorial-split,
  .editorial-split--wide {
    grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1fr);
    gap: 3rem;
  }

  .manifesto-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .manifesto-signature {
    grid-column: 1 / -1;
  }

  .deliverable-card {
    grid-column: span 6;
  }

  .mentor-grid {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  :root {
    --space-section: clamp(4rem, 2.8rem + 6vw, 6rem);
  }

  .site-header__inner {
    gap: 0.8rem;
  }

  .header-credential {
    display: none;
  }

  .hero--capture,
  .hero--sales,
  .hero--thank-you {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .hero__grid,
  .editorial-split,
  .editorial-split--wide,
  .capture-layout,
  .mentor-grid,
  .calendar-grid,
  .faq-layout,
  .preparation-grid,
  .application-panel {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 42rem;
  }

  .title--hero {
    max-width: 13ch;
  }

  .hero-portrait {
    width: min(92%, 29rem);
    min-height: 34rem;
    margin-top: 1.4rem;
  }

  .hero-portrait__caption {
    right: -1rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .hero-metrics div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.13);
  }

  .hero-metrics div:nth-child(4) {
    border-top: 1px solid rgba(212, 175, 55, 0.13);
  }

  .scroll-cue {
    display: none;
  }

  .editorial-visual--offset {
    transform: none;
  }

  .editorial-visual {
    width: min(100%, 40rem);
    margin-inline: auto;
  }

  .capture-intro,
  .faq-intro {
    position: static;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

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

  .manifesto-copy {
    padding: 1.5rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.17);
  }

  .pillar-card,
  .pillar-card--feature,
  .pillar-card:nth-child(5) {
    grid-column: span 3;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(24rem, 35rem) minmax(22rem, 30rem);
  }

  .experience-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .mentor-portrait {
    width: min(100%, 31rem);
    margin-inline: auto;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-action {
    padding: 1.8rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    inset: auto 0.8rem 0.8rem;
    z-index: 70;
    display: flex;
    justify-content: center;
    padding: 0.9rem 1rem;
    color: var(--bg-darkest);
    font-size: var(--text-sm);
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0.65rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
  }

  .cookie-banner {
    padding-bottom: 5.4rem;
  }
}

@media (max-width: 600px) {
  :root {
    --text-4xl: clamp(2.7rem, 11.5vw, 4.2rem);
    --text-3xl: clamp(2rem, 8.5vw, 3rem);
  }

  .container,
  .container--narrow {
    width: min(calc(100% - 2rem), var(--container));
  }

  .site-header .btn {
    padding-inline: 0.95rem;
  }

  .brand__logo {
    height: 29px;
  }

  .hero--capture,
  .hero--sales,
  .hero--thank-you {
    padding-top: 6.8rem;
  }

  .hero__ctas,
  .hero__ctas .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(245, 241, 232, 0.08);
  }

  .hero-portrait {
    width: 100%;
    min-height: 32rem;
  }

  .hero-portrait__frame {
    left: 1rem;
  }

  .hero-portrait__caption {
    right: 0;
    min-width: 14rem;
  }

  .hero-portrait__edition {
    display: none;
  }

  .hero-metrics div {
    min-height: 6.2rem;
    padding: 1rem;
  }

  .hero-metrics strong {
    font-size: 1.65rem;
  }

  .editorial-visual .media-frame {
    border-radius: 0 4rem 0 0;
  }

  .editorial-visual figcaption,
  .experience-card figcaption,
  .mentor-portrait figcaption,
  .thank-you-visual figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    width: calc(100% - 1.3rem);
  }

  .selection-banner {
    grid-template-columns: 1fr;
  }

  .selection-banner__mark {
    width: 5rem;
  }

  .audience-grid,
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card--feature,
  .pillar-card:nth-child(5),
  .deliverable-card,
  .deliverable-card--feature,
  .deliverable-card--community {
    grid-column: 1;
    min-height: auto;
  }

  .pillar-card {
    min-height: 17rem;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(24rem, 34rem));
  }

  .experience-card--wide {
    grid-column: auto;
  }

  .mentor-portrait {
    min-height: 37rem;
  }

  .year-orbit {
    width: min(88vw, 24rem);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 8rem;
  }

  .application-panel {
    padding: 1.45rem;
  }

  .finale-content {
    margin-inline: auto;
  }

  .finale-section__sculpture {
    background-position: 64% center;
    opacity: 0.42;
  }

  .thank-you-visual {
    min-height: 34rem;
  }

  .thank-you-visual__seal {
    left: 0.8rem;
    top: 0.8rem;
  }
}

@media (min-width: 821px) and (max-height: 760px) {
  .hero--capture,
  .hero--sales,
  .hero--thank-you {
    padding-top: 5.75rem;
  }

  .hero--capture {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero--capture .title--hero,
  .hero--sales .title--hero,
  .hero--thank-you .title--hero {
    font-size: clamp(3.45rem, 5.7vw, 4.8rem);
  }

  .hero--capture .eyebrow,
  .hero--sales .eyebrow,
  .hero--thank-you .eyebrow {
    margin-bottom: 1rem;
  }

  .hero--capture .hero__content > .lead,
  .hero--sales .hero__content > .lead,
  .hero--thank-you .hero__content > .lead {
    margin-top: 1rem !important;
  }

  .hero--capture .hero__ctas,
  .hero--sales .hero__ctas {
    margin-top: 1.35rem;
  }

  .hero--capture .hero-facts {
    margin-top: 1.25rem;
    padding-top: 0.8rem;
  }

  .hero--capture .hero-portrait,
  .hero--sales .hero-portrait {
    min-height: 29rem;
  }

  .hero--sales .hero-proof {
    margin-top: 1.7rem;
  }

  .hero--sales .hero-metrics {
    margin-top: 2.5rem;
  }

  .scroll-cue {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transform: none !important;
  }

  .scroll-cue i::after {
    animation: none;
  }
}

/* ============================================================
   Direção editorial 2.1 — grids, cards e capítulos
   ============================================================ */

section[data-chapter] {
  overflow: clip;
}

section[data-chapter]::after {
  content: attr(data-chapter);
  position: absolute;
  z-index: 0;
  top: clamp(1.5rem, 3vw, 3rem);
  right: clamp(1rem, 3.6vw, 4rem);
  color: rgba(245, 230, 163, 0.035);
  font-family: var(--serif);
  font-size: clamp(5.5rem, 11vw, 10rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

section[data-chapter] > .container,
section[data-chapter] > .container--narrow {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.section-heading::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(3.5rem, 7vw, 7rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(212, 175, 55, 0));
}

.pillar-card,
.deliverable-card,
.process-card {
  border-radius: 2px;
  border-color: rgba(212, 175, 55, 0.13);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.018), 0 22px 60px rgba(0, 0, 0, 0.13);
}

.pillar-card::after,
.deliverable-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--accent), rgba(212, 175, 55, 0.08) 38%, transparent 78%);
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: transform 520ms var(--ease-out);
}

.pillar-card:hover::after,
.deliverable-card:hover::after,
.process-card:hover::after {
  transform: scaleX(1);
}

.card__meta {
  position: absolute;
  top: clamp(1.45rem, 2.6vw, 2.2rem);
  right: clamp(1.4rem, 2.6vw, 2.2rem);
  max-width: 48%;
  color: var(--text-muted);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

/* ---------- Seleção ---------- */

.audience-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 55, 0.1);
  background: rgba(212, 175, 55, 0.1);
}

.audience-card--fit {
  grid-column: span 7;
  background:
    radial-gradient(circle at 6% 100%, rgba(212, 175, 55, 0.08), transparent 17rem),
    linear-gradient(145deg, rgba(12, 31, 52, 0.98), rgba(7, 18, 32, 0.96));
}

.audience-card--not {
  grid-column: span 5;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 57, 43, 0.045), transparent 15rem),
    linear-gradient(145deg, rgba(9, 23, 39, 0.98), rgba(4, 12, 22, 0.98));
}

.audience-card__label {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.035);
}

.audience-card--not .audience-card__label {
  color: rgba(245, 241, 232, 0.58);
  border-color: rgba(245, 241, 232, 0.1);
  background: rgba(245, 241, 232, 0.02);
}

/* ---------- Manifesto ---------- */

.manifesto-signature {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.08), transparent 9rem),
    rgba(13, 29, 51, 0.4);
}

.manifesto-signature::before,
.manifesto-signature span,
.manifesto-signature strong {
  position: relative;
  z-index: 1;
}

.manifesto-signature::after {
  content: "12";
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(245, 230, 163, 0.035);
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

/* ---------- Cinco pilares ---------- */

.pillar-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card,
.pillar-card--feature,
.pillar-card:nth-child(5) {
  grid-column: span 4;
  min-height: 20rem;
}

.pillar-card:nth-child(1) {
  grid-column: span 7;
  min-height: 23rem;
  background:
    radial-gradient(circle at 86% 16%, rgba(212, 175, 55, 0.12), transparent 13rem),
    linear-gradient(145deg, rgba(14, 35, 59, 0.88), rgba(5, 15, 27, 0.94));
}

.pillar-card:nth-child(2) {
  grid-column: span 5;
  min-height: 23rem;
  background:
    radial-gradient(circle at 12% 88%, rgba(34, 78, 116, 0.22), transparent 14rem),
    linear-gradient(145deg, rgba(11, 29, 51, 0.9), rgba(5, 15, 27, 0.94));
}

.pillar-card:nth-child(3) {
  background: linear-gradient(155deg, rgba(15, 36, 61, 0.82), rgba(5, 14, 25, 0.94));
}

.pillar-card:nth-child(4) {
  background:
    radial-gradient(circle at 85% 82%, rgba(212, 175, 55, 0.065), transparent 11rem),
    linear-gradient(155deg, rgba(11, 29, 50, 0.86), rgba(5, 14, 25, 0.94));
}

.pillar-card:nth-child(5) {
  background:
    radial-gradient(circle at 12% 15%, rgba(33, 78, 117, 0.18), transparent 12rem),
    linear-gradient(155deg, rgba(10, 27, 47, 0.88), rgba(5, 14, 25, 0.94));
}

.pillar-card .card__numeral,
.deliverable-card .card__numeral,
.process-card .card__numeral {
  margin-bottom: auto;
  color: var(--accent-soft);
  font-weight: 500;
  opacity: 0.88;
}

.pillar-card .card__title,
.deliverable-card .card__title {
  max-width: 22ch;
}

/* ---------- Entregáveis ---------- */

.deliverable-grid {
  gap: 1rem;
}

.deliverable-card,
.deliverable-card--feature,
.deliverable-card--community {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
}

.deliverable-card:nth-child(1) {
  grid-column: span 7;
  min-height: 22rem;
}

.deliverable-card:nth-child(2) {
  grid-column: span 5;
  min-height: 22rem;
}

.deliverable-card:nth-child(3),
.deliverable-card:nth-child(4),
.deliverable-card:nth-child(5) {
  grid-column: span 4;
}

.deliverable-card:nth-child(6) {
  grid-column: span 5;
}

.deliverable-card:nth-child(7) {
  grid-column: span 7;
}

.deliverable-card:nth-child(2),
.deliverable-card:nth-child(4),
.deliverable-card:nth-child(6) {
  background:
    radial-gradient(circle at 92% 10%, rgba(34, 78, 116, 0.14), transparent 11rem),
    rgba(8, 22, 39, 0.84);
}

.deliverable-card p {
  max-width: 48rem;
}

/* ---------- Ritmo anual ---------- */

.cadence-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-block: 1px solid rgba(212, 175, 55, 0.13);
}

.cadence-strip div {
  padding: 1rem 1rem 1rem 0;
}

.cadence-strip div + div {
  padding-left: 1rem;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.cadence-strip dt {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: var(--text-lg);
  line-height: 1.2;
}

.cadence-strip dd {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.year-orbit {
  background:
    radial-gradient(circle, rgba(212, 175, 55, 0.055), transparent 48%),
    rgba(3, 8, 19, 0.18);
}

/* ---------- Processo seletivo ---------- */

.process-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  background: transparent;
}

.process-steps li {
  position: relative;
  min-height: 13rem;
  padding: 1.45rem 1rem;
  border-block: 1px solid rgba(212, 175, 55, 0.13);
  border-right: 1px solid rgba(212, 175, 55, 0.09);
  background: linear-gradient(155deg, rgba(11, 28, 48, 0.78), rgba(5, 14, 25, 0.9));
}

.process-steps li:first-child {
  border-left: 1px solid rgba(212, 175, 55, 0.09);
}

.process-steps li::before {
  position: relative;
  z-index: 1;
  width: 2.35rem;
  min-width: 2.35rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-size: 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  background: var(--bg-navy);
}

.process-steps li::after {
  content: "";
  position: absolute;
  top: 2.62rem;
  left: 3.7rem;
  right: -0.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.04));
}

.process-steps li:last-child::after {
  display: none;
}

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

.faq {
  counter-reset: faq-item;
}

.faq__item {
  counter-increment: faq-item;
}

.faq__item summary {
  justify-content: flex-start;
}

.faq__item summary::before {
  content: counter(faq-item, decimal-leading-zero);
  min-width: 2rem;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
}

.faq__item summary::after {
  margin-left: auto;
}

/* ---------- Captura e confirmação ---------- */

.trust-list {
  position: relative;
  border-top: 0;
}

.trust-list::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 1.05rem;
  width: 1px;
  background: linear-gradient(rgba(212, 175, 55, 0.32), rgba(212, 175, 55, 0.04));
}

.trust-list > div {
  position: relative;
  grid-template-columns: 2.15rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
}

.trust-list > div > span {
  position: relative;
  z-index: 1;
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-self: start;
  color: var(--accent-light);
  font-size: 0.67rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 50%;
  background: rgba(4, 12, 23, 0.96);
}

.form-card--elevated::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-right: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  pointer-events: none;
}

.selection-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 50%, rgba(212, 175, 55, 0.08), transparent 12rem),
    linear-gradient(120deg, rgba(13, 29, 51, 0.82), rgba(6, 14, 26, 0.58));
}

.selection-banner::after {
  content: "ELEGIBILIDADE";
  position: absolute;
  right: 1.2rem;
  bottom: -0.4rem;
  color: rgba(245, 230, 163, 0.035);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -0.04em;
  pointer-events: none;
}

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

.process-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(212, 175, 55, 0.13);
}

.process-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(32, 75, 112, 0.13), transparent 10rem),
    var(--bg-navy);
}

.process-card:nth-child(even) {
  background:
    radial-gradient(circle at 10% 92%, rgba(212, 175, 55, 0.055), transparent 10rem),
    #06111f;
}

.preparation-list {
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.preparation-list li {
  padding: 1.05rem 1.25rem 1.05rem 3.4rem;
}

.preparation-list li + li {
  border-top: 1px solid rgba(245, 241, 232, 0.06);
}

.preparation-list li::before {
  left: 1.35rem;
}

@media (max-width: 1080px) {
  .process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(212, 175, 55, 0.11);
  }

  .process-steps li,
  .process-steps li:first-child {
    border: 0;
  }

  .process-steps li::after {
    display: none;
  }

  .process-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  section[data-chapter]::after {
    top: 1.25rem;
    right: 1rem;
    font-size: 6.5rem;
  }

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

  .audience-card--fit,
  .audience-card--not {
    grid-column: 1;
  }

  .pillar-card,
  .pillar-card--feature,
  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2),
  .pillar-card:nth-child(5),
  .deliverable-card,
  .deliverable-card--feature,
  .deliverable-card--community,
  .deliverable-card:nth-child(n) {
    grid-column: span 6;
    min-height: 19rem;
  }

  .pillar-card:nth-child(5),
  .deliverable-card:nth-child(7) {
    grid-column: 2 / span 10;
  }

  .manifesto-signature {
    min-height: 15rem;
  }
}

@media (max-width: 600px) {
  section[data-chapter]::after {
    color: rgba(245, 230, 163, 0.026);
    font-size: 5rem;
  }

  .section-heading {
    padding-top: 1rem;
  }

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

  .pillar-card,
  .pillar-card--feature,
  .pillar-card:nth-child(n),
  .deliverable-card,
  .deliverable-card--feature,
  .deliverable-card--community,
  .deliverable-card:nth-child(n) {
    grid-column: 1;
    min-height: 17rem;
  }

  .card__meta {
    top: 1.45rem;
    right: 1.4rem;
    max-width: 52%;
  }

  .cadence-strip {
    grid-template-columns: 1fr;
  }

  .cadence-strip div,
  .cadence-strip div + div {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-left: 0;
  }

  .cadence-strip div + div {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
  }

  .process-steps,
  .process-card-grid {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 8.5rem;
  }

  .process-card {
    min-height: 15rem;
  }

  .faq__item summary::before {
    display: none;
  }

  .selection-banner::after {
    font-size: 3rem;
  }
}

/* ============================================================
   Direção editorial 2.2 — emblemas oficiais e páginas legais
   ============================================================ */

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

.page-legal {
  background:
    radial-gradient(circle at 82% 7%, rgba(24, 65, 100, 0.15), transparent 28rem),
    var(--bg-ink);
}

.hero--legal {
  min-height: 68svh;
  padding: 9.5rem 0 5.5rem;
  background:
    radial-gradient(circle at 78% 42%, rgba(20, 55, 88, 0.32), transparent 25rem),
    radial-gradient(circle at 18% 82%, rgba(212, 175, 55, 0.055), transparent 22rem),
    linear-gradient(135deg, #030813 0%, #071525 58%, #020711 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.13);
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.58fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.legal-hero-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.legal-hero-grid--single .hero__content {
  max-width: 61rem;
}

.hero--legal .hero__content {
  max-width: 50rem;
}

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

.legal-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.4rem;
  border-block: 1px solid rgba(212, 175, 55, 0.14);
}

.legal-hero-meta span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 0.9rem 0.85rem 0;
}

.legal-hero-meta span + span {
  padding-left: 0.9rem;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.legal-hero-meta small {
  color: var(--text-muted);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero-meta strong {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: var(--text-base);
  font-weight: 500;
}

.legal-hero-mark {
  position: relative;
  width: min(100%, 20rem);
  min-height: 27rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  justify-self: center;
  padding: 1.6rem 1.6rem 4.6rem;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 2px;
  background:
    radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.1), transparent 13rem),
    rgba(3, 8, 19, 0.5);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46), 0 0 0 1.4rem rgba(212, 175, 55, 0.018);
}

.legal-hero-mark::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(245, 230, 163, 0.14);
  border-radius: 1px;
  pointer-events: none;
}

.legal-hero-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.45));
}

.legal-hero-mark figcaption {
  position: absolute;
  inset: auto 12% 8%;
  z-index: 2;
  padding: 0.7rem 0.85rem;
  color: var(--accent-light);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(3, 8, 19, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(12px);
}

.legal-hero-mark--crest {
  isolation: isolate;
}

.legal-header-link {
  margin-left: auto;
  color: var(--text-secondary);
}

/* ---------- Documento legal ---------- */

.legal-section {
  background:
    linear-gradient(90deg, rgba(9, 25, 44, 0.62), transparent 28%),
    var(--bg-ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.legal-sidebar {
  position: sticky;
  top: 7.2rem;
  max-height: calc(100svh - 9rem);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(7, 19, 35, 0.72);
  backdrop-filter: blur(16px);
}

.legal-sidebar__eyebrow {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-sidebar > strong {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 600;
}

.legal-toc {
  display: grid;
  gap: 0;
  margin: 1.2rem -0.25rem 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.28) transparent;
}

.legal-toc a {
  position: relative;
  padding: 0.56rem 0.7rem 0.56rem 1rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  line-height: 1.45;
  border-left: 1px solid rgba(245, 241, 232, 0.08);
}

.legal-toc a::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 1px;
  transform: scaleY(0);
  background: var(--accent);
  transition: transform 240ms var(--ease-out);
}

.legal-toc a:hover,
.legal-toc a.is-active {
  color: var(--text-primary);
  background: rgba(212, 175, 55, 0.035);
}

.legal-toc a.is-active::before {
  transform: scaleY(1);
}

.legal-sidebar__related {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  white-space: normal;
}

.legal-doc {
  min-width: 0;
  padding: clamp(2rem, 5vw, 4.8rem);
  border: 1px solid rgba(212, 175, 55, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(28, 68, 104, 0.1), transparent 24rem),
    rgba(6, 17, 31, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.legal-doc h2 {
  position: relative;
  margin: clamp(3.6rem, 6vw, 5.5rem) 0 1.25rem;
  padding-top: 1.25rem;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.35rem + 0.7vw, 2.05rem);
  font-weight: 600;
  line-height: 1.25;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  scroll-margin-top: 7rem;
}

.legal-doc h2:first-child {
  margin-top: 0;
}

.legal-doc h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.legal-doc h3 {
  margin: 2rem 0 0.65rem;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: var(--text-lg);
  font-weight: 600;
}

.legal-doc p,
.legal-doc li {
  color: rgba(245, 241, 232, 0.7);
  font-size: var(--text-sm);
  line-height: 1.85;
}

.legal-doc p {
  max-width: 51rem;
}

.legal-doc ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 1.5rem;
  padding-left: 1.25rem;
}

.legal-doc li::marker {
  color: var(--accent);
}

.legal-doc code {
  padding: 0.12rem 0.34rem;
  color: var(--accent-light);
  font-family: var(--sans);
  font-size: 0.78em;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(212, 175, 55, 0.045);
}

.legal-doc table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  font-size: var(--text-sm);
}

.legal-doc th,
.legal-doc td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(245, 241, 232, 0.08);
}

.legal-doc th {
  color: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.045);
}

.legal-doc td {
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-back-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 55;
  width: 2.8rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--bg-darkest);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out);
}

.legal-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.legal-back-top:hover {
  color: var(--bg-darkest);
  transform: translateY(-2px);
}

.legal-cookie-control {
  appearance: none;
  padding: 0;
  color: var(--accent-light);
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.48fr);
    gap: 2.5rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
    max-height: none;
  }

  .legal-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 18rem;
  }
}

@media (max-width: 700px) {
  .brand__name {
    display: block;
    font-size: 0.88rem;
  }

  .brand__crest {
    height: 2.65rem;
  }

  .hero--legal {
    min-height: auto;
    padding: 7.4rem 0 4.5rem;
  }

  .legal-hero-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero-mark {
    width: min(76vw, 20rem);
    margin-top: 1rem;
  }

  .legal-header-link {
    font-size: 0.72rem;
  }

  .legal-doc {
    padding: 1.4rem;
  }

  .legal-doc table {
    display: block;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .legal-doc th,
  .legal-doc td {
    min-width: 11rem;
  }

  .legal-back-top {
    bottom: 0.9rem;
    right: 0.9rem;
  }
}

@media (max-width: 480px) {
  .legal-hero-meta {
    grid-template-columns: 1fr;
  }

  .legal-hero-meta span,
  .legal-hero-meta span + span {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: baseline;
    padding: 0.72rem 0;
    border-left: 0;
  }

  .legal-hero-meta span + span {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
  }

  .legal-toc {
    grid-template-columns: 1fr;
    max-height: 16rem;
  }

}
