/* =============================================================
   TIMES DIGITAIS — DIRETORIA DIGITAL
   Landing v1.0 — Tom Stratechery / Hampton / Sequoia
   Editorial, sóbrio, sem COPE, sem emoji, sem urgência artificial
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Núcleo — sempre estes */
  --coal-deep: #111110;       /* preto profundo (dark mode bg) */
  --coal: #1A1A18;            /* coal secundário */
  --graphite: #2C2C2A;        /* superfícies/cards no dark */
  --stone-dark: #444441;      /* bordas fortes */
  --stone: #4A4944;           /* texto secundário no light — contraste 6.5:1 */
  --silver: #B4B2A9;          /* texto secundário no dark */
  --sand: #E8E5DC;            /* sand sutil */
  --cream: #F1EFE8;           /* texto no dark; bg secundário no light */
  --cream-warm: #F6F4ED;      /* light bg principal — branco quente */
  --paper: #FAF7F2;           /* off-white quente (Stripe Press) */

  /* Accents */
  --amber: #EF9F27;           /* CTAs, ponto-assinatura — uso parcimonioso */
  --amber-hover: #BA7517;
  --amber-tint: rgba(239, 159, 39, 0.04);
  --vinho: #5A3A2A;           /* accent secundário (barras laterais) */
  --vinho-soft: #C28B7A;      /* tone soft (lista negativa) */

  /* Bordas / divisores — sub-pixel em retina */
  --hairline-dark: rgba(241, 239, 232, 0.08);
  --hairline-light: rgba(17, 17, 16, 0.10);
  --rule: #E8E3D8;            /* divisor em light bg */

  /* Sombras editoriais */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-amber: 0 4px 24px rgba(239, 159, 39, 0.12);

  /* Tipografia */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --measure: 720px;          /* max-width de blocos de texto editorial */
  --pad-x: clamp(20px, 5vw, 64px);
  --section-y: clamp(96px, 14vw, 180px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-edit: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-mask: cubic-bezier(0.7, 0, 0.3, 1);
  --dur: 380ms;
  --dur-fast: 220ms;
  --dur-slow: 700ms;
}

/* Selection editorial */
::selection { background: rgba(239, 159, 39, 0.25); color: var(--cream); }
.section--light ::selection { background: rgba(239, 159, 39, 0.30); color: var(--coal-deep); }

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--coal-deep);
  color: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  font-feature-settings: "ss01" 1, "cv11" 1, "calt" 1, "liga" 1;
  font-variant-numeric: oldstyle-nums proportional-nums;
  hanging-punctuation: first last;
  font-optical-sizing: auto;
}

/* Tabular nums em métricas, preços e tabelas */
.tabular { font-variant-numeric: tabular-nums lining-nums; }

/* Headings: ligaduras discricionárias e contextual alternates */
h1, h2, h3, h4 {
  font-feature-settings: "ss01" 1, "cv11" 1, "calt" 1, "liga" 1, "dlig" 1;
}

/* Hairline sub-pixel (retina) */
.hr-fine {
  border: none;
  height: 1px;
  background: var(--rule);
}
.section--dark .hr-fine { background: var(--hairline-dark); }
@media (-webkit-min-device-pixel-ratio: 2) {
  .hr-fine { height: 0.5px; }
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }

/* ---------- UTIL ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.measure {
  max-width: var(--measure);
}

/* Seções alternantes */
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--dark {
  background: var(--coal-deep);
  color: var(--cream);
}
.section--light {
  background: var(--cream-warm);
  color: var(--coal-deep);
}

/* Hairline divider entre seções */
.section--light + .section--dark::before,
.section--dark + .section--light::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 20vw, 200px);
  height: 1px;
  background: currentColor;
  opacity: 0.18;
}

/* Eyebrow — minissubtítulo */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 28px;
}
.section--light .eyebrow { color: var(--stone); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* Tipografia */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: inherit;
}
.h-display {
  font-size: clamp(48px, 8vw, 116px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 600;
  padding-right: 0.04em;
}
.h-1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.h-2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 600;
}
.h-3 {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 600;
}
.h-4 {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
}

p {
  font-size: 17px;
  line-height: 1.65;
  color: inherit;
}
.section--dark p { color: var(--silver); }
.section--light p { color: var(--stone); }
.lead {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.55;
  color: inherit;
}
.section--dark .lead { color: var(--cream); opacity: 0.84; }
.section--light .lead { color: var(--coal-deep); opacity: 0.86; }

.muted {
  color: var(--silver);
  opacity: 0.72;
}
.section--light .muted { color: var(--stone); opacity: 0.7; }

/* Ponto-assinatura âmbar — uso sob demanda */
.dot::after {
  content: ".";
  color: var(--amber);
  margin-left: 0.05em;
}

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 4px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn__arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--amber {
  background: var(--amber);
  color: var(--coal-deep);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  color: var(--cream);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(241, 239, 232, 0.18);
}
.btn--ghost-dark:hover {
  border-color: var(--cream);
  background: rgba(241, 239, 232, 0.04);
}
.btn--ghost-light {
  background: transparent;
  color: var(--coal-deep);
  border-color: rgba(17, 17, 16, 0.18);
}
.btn--ghost-light:hover {
  border-color: var(--coal-deep);
  background: rgba(17, 17, 16, 0.03);
}

.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  opacity: 0.72;
  transition: opacity var(--dur) var(--ease);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-quiet:hover { opacity: 1; }

/* =============================================================
   1. HEADER (FIXED)
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 16, 0);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(17, 17, 16, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--hairline-dark);
  padding: 12px var(--pad-x);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img { height: 28px; width: auto; }
.nav__divider {
  width: 1px;
  height: 18px;
  background: var(--hairline-dark);
}
.nav__diretoria {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--cream);
  opacity: 0.78;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  transition: color var(--dur) var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__cta {
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1;
  border-radius: 3px;
}

/* =============================================================
   2. HERO
   ============================================================= */
.hero {
  min-height: 88vh;
  position: relative;
  background: var(--coal-deep);
  color: var(--cream);
  padding-top: 140px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 2;
}
.hero__signature {
  position: absolute;
  bottom: 36px;
  left: var(--pad-x);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--silver);
  opacity: 0.55;
  text-transform: uppercase;
  z-index: 3;
}
.hero__signature span { color: var(--cream); opacity: 0.85; }
.hero__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.hero__top-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--silver);
  opacity: 0.5;
}
.hero h1 {
  margin-bottom: 32px;
  max-width: 13ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--silver);
  margin-bottom: 56px;
}
.hero__sub strong {
  color: var(--cream);
  font-weight: 500;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__meta {
  display: flex;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--silver);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__meta-item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}
.hero__bg-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__bg-glow {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239, 159, 39, 0.10), transparent 72%);
  bottom: -200px;
  right: -180px;
  filter: blur(20px);
}

/* =============================================================
   3. PREMISSA
   ============================================================= */
.premissa h2 {
  margin-bottom: 64px;
  max-width: 22ch;
}
.premissa__lead {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--coal-deep);
  margin-bottom: 48px;
  max-width: var(--measure);
}
.premissa__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
}
.premissa__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
}
@media (max-width: 800px) {
  .premissa__body { grid-template-columns: 1fr; gap: 28px; }
}

/* =============================================================
   4. PILARES — O QUE VOCÊ ENCONTRA
   ============================================================= */
.pilares__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 88px;
}
.pilares__head h2 { max-width: 14ch; }
.pilares__head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--silver);
  max-width: 44ch;
}
@media (max-width: 800px) {
  .pilares__head { grid-template-columns: 1fr; gap: 32px; }
}

.pilares__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
}
.pilar {
  padding: 56px 48px 56px 28px;
  border-bottom: 1px solid var(--hairline-dark);
  position: relative;
}
.pilar:nth-child(odd) { padding-right: 56px; padding-left: 28px; }
.pilar:nth-child(even) {
  padding-left: 56px;
  border-left: 1px solid var(--hairline-dark);
}
.pilar__num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--silver);
  opacity: 0.55;
  display: block;
  margin-bottom: 16px;
}
.pilar h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--cream);
}
.pilar p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--silver);
  max-width: 44ch;
}
.pilar__tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.85;
}
@media (max-width: 800px) {
  .pilares__grid { grid-template-columns: 1fr; }
  .pilar:nth-child(even) { padding-left: 0; border-left: none; }
  .pilar:nth-child(odd) { padding-right: 0; }
  .pilar { border-right: none; }
}

/* =============================================================
   5. MESA DO VICTOR (destaque)
   ============================================================= */
.mesa__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 88px;
}
.mesa__schedule {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 14px;
}
.mesa__schedule strong {
  color: var(--coal-deep);
  font-weight: 500;
}
.mesa__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 80px;
}
.mesa__story p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--stone);
}
.mesa__story p strong {
  color: var(--coal-deep);
  font-weight: 500;
}
.mesa__quote {
  border-left: 2px solid var(--amber);
  padding: 8px 0 8px 32px;
  max-width: 780px;
  margin-top: 32px;
}
.mesa__quote p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.42;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--coal-deep);
  margin-bottom: 16px;
}
.mesa__quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.mesa__metricas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  margin-top: 80px;
}
.mesa__metrica {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--hairline-light);
}
.mesa__metrica:last-child { border-right: none; padding-right: 0; }
.mesa__metrica:nth-child(2) { padding-left: 32px; }
.mesa__metrica:last-child { padding-left: 32px; }
.mesa__metrica-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coal-deep);
  margin-bottom: 12px;
}
.mesa__metrica-num em {
  font-style: normal;
  color: var(--amber);
}
.mesa__metrica-label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--stone);
  letter-spacing: 0.01em;
}
@media (max-width: 800px) {
  .mesa__head { grid-template-columns: 1fr; gap: 24px; }
  .mesa__story { grid-template-columns: 1fr; gap: 28px; }
  .mesa__metricas { grid-template-columns: 1fr; }
  .mesa__metrica { border-right: none; border-bottom: 1px solid var(--hairline-light); padding: 28px 0; }
  .mesa__metrica:last-child { border-bottom: none; padding-left: 0; }
  .mesa__metrica:nth-child(2) { padding-left: 0; }
}

/* =============================================================
   6. BIBLIOTECA
   ============================================================= */
.biblioteca__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 88px;
}
.biblioteca__head h2 { max-width: 14ch; color: var(--cream); }
.biblioteca__head p { color: var(--silver); max-width: 44ch; }
@media (max-width: 800px) {
  .biblioteca__head { grid-template-columns: 1fr; gap: 32px; }
}

.biblioteca__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
}
.cat {
  padding: 48px 40px 48px 0;
  border-bottom: 1px solid var(--hairline-dark);
  border-right: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
}
.cat:nth-child(3n) { border-right: none; padding-right: 0; }
.cat:nth-child(3n+2) { padding-left: 40px; }
.cat:nth-child(3n) { padding-left: 40px; }
.cat__num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--silver);
  opacity: 0.55;
  margin-bottom: 14px;
}
.cat h3 {
  font-size: 18px;
  letter-spacing: -0.012em;
  margin-bottom: 24px;
  color: var(--cream);
  font-weight: 600;
}
.cat ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--silver);
}
.cat li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--silver);
  opacity: 0.6;
}
.cat li.is-future {
  color: var(--silver);
  opacity: 0.55;
  font-style: italic;
}
.cat li.is-future::before { background: var(--amber); opacity: 0.7; }

@media (max-width: 1100px) {
  .biblioteca__grid { grid-template-columns: repeat(2, 1fr); }
  .cat { padding: 40px 32px 40px 0; border-right: 1px solid var(--hairline-dark); }
  .cat:nth-child(3n) { border-right: 1px solid var(--hairline-dark); padding-right: 32px; padding-left: 0; }
  .cat:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 32px; }
  .cat:nth-child(2n+1) { padding-left: 0; }
}
@media (max-width: 700px) {
  .biblioteca__grid { grid-template-columns: 1fr; }
  .cat { padding: 32px 0; border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }
}

.biblioteca__foot {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.biblioteca__foot p {
  font-size: 14px;
  color: var(--silver);
  max-width: 60ch;
}

/* =============================================================
   7. MESA REDONDA + FÓRUM
   ============================================================= */
.dois-blocos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.dois-blocos > div {
  padding: 64px 56px 64px 28px;
}
.dois-blocos > div + div {
  padding: 64px 28px 64px 56px;
  border-left: 1px solid var(--hairline-light);
}
.dois-blocos h2 {
  font-size: clamp(26px, 2.4vw, 36px);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.dois-blocos h2 .num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--stone);
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}
.dois-blocos p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 18px;
}
.dois-blocos p:last-child { margin-bottom: 0; }
.dois-blocos__rule {
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline-light);
  font-size: 14px;
  color: var(--coal-deep);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.dois-blocos__rule .label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
@media (max-width: 800px) {
  .dois-blocos { grid-template-columns: 1fr; }
  .dois-blocos > div { padding: 48px 0; }
  .dois-blocos > div + div { padding: 48px 0; border-left: none; border-top: 1px solid var(--hairline-light); }
}

/* =============================================================
   8. NÃO É / É PRA VOCÊ
   ============================================================= */
.fit__head {
  margin-bottom: 80px;
  max-width: var(--measure);
}
.fit__head h2 { margin-bottom: 16px; color: var(--cream); }
.fit__head p { color: var(--silver); }

.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.fit__col {
  padding: 48px;
  border: 1px solid var(--hairline-dark);
}
.fit__col + .fit__col { border-left: none; }
.fit__col h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  color: var(--cream);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fit__col h3::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.fit__col--no h3 { color: #C28B7A; }
.fit__col--yes h3 { color: var(--amber); }
.fit ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fit li {
  padding: 0 0 0 22px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--silver);
}
.fit li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px; height: 1px;
  background: var(--silver);
  opacity: 0.45;
}
.fit__col--yes li::before { background: var(--amber); opacity: 0.6; }

@media (max-width: 800px) {
  .fit { grid-template-columns: 1fr; }
  .fit__col + .fit__col { border-left: 1px solid var(--hairline-dark); border-top: none; }
}

/* =============================================================
   9. TERMOS / PRICING
   ============================================================= */
.termos__head {
  text-align: center;
  margin-bottom: 80px;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
}
.termos__head h2 { margin-bottom: 18px; }
.termos__head p { color: var(--stone); }

.termos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.plano {
  padding: 48px 44px;
  background: transparent;
  border: 1px solid rgba(17, 17, 16, 0.14);
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plano--featured {
  border-color: var(--coal-deep);
  background: var(--coal-deep);
  color: var(--cream);
}
.plano--featured .plano__head,
.plano--featured .plano__price,
.plano--featured .plano__terms,
.plano--featured .plano__includes li {
  color: var(--cream);
}
.plano--featured .plano__sub { color: var(--silver); }
.plano__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}
.plano__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--coal-deep);
}
.plano__hint {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.plano--featured .plano__hint { color: var(--amber); }
.plano__price {
  font-family: var(--font-heading);
  font-size: clamp(44px, 4.4vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--coal-deep);
  margin-bottom: 8px;
}
.plano__price small {
  display: inline-block;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--stone);
  margin-right: 8px;
}
.plano__sub {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 32px;
}
.plano__includes {
  list-style: none;
  padding: 24px 0 0;
  border-top: 1px solid rgba(17, 17, 16, 0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.plano--featured .plano__includes { border-top-color: rgba(241, 239, 232, 0.14); }
.plano__includes li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--stone);
}
.plano__includes li::before {
  content: "";
  position: absolute;
  top: 8px; left: 0;
  width: 6px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.plano .btn {
  width: 100%;
}
@media (max-width: 800px) {
  .termos__grid { grid-template-columns: 1fr; }
}

.termos__foot {
  max-width: var(--measure);
  margin: 64px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--hairline-light);
  text-align: center;
}
.termos__foot p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

/* =============================================================
   10. APLICAÇÃO (FORM)
   ============================================================= */
.form__head {
  text-align: center;
  margin-bottom: 64px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.form__head h2 { margin-bottom: 18px; color: var(--cream); }
.form__head p { color: var(--silver); }

form.aplicacao {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) { .field--row { grid-template-columns: 1fr; } }
.field label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
}
.field label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  color: var(--silver);
  opacity: 0.6;
  margin-left: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(241, 239, 232, 0.18);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--cream);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--amber);
  background: rgba(239, 159, 39, 0.04);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23B4B2A9' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(241, 239, 232, 0.14);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.radio:hover { border-color: rgba(241, 239, 232, 0.28); }
.radio input { display: none; }
.radio__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--silver);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all var(--dur) var(--ease);
  position: relative;
}
.radio input:checked + .radio__dot {
  border-color: var(--amber);
}
.radio input:checked + .radio__dot::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
.radio__label {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--cream);
}
.radio__label small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--silver);
}
.radio input:checked ~ .radio__label,
.radio input:checked ~ .radio__dot {
  color: var(--cream);
}
.radio:has(input:checked) {
  border-color: var(--amber);
  background: rgba(239, 159, 39, 0.04);
}
.field--inline-radio {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.field--inline-radio label:first-child {
  flex: 1;
}
.field--inline-radio .radio-group {
  flex-direction: row;
  gap: 12px;
}
.field--inline-radio .radio {
  padding: 12px 18px;
}

.form__legal {
  font-size: 12.5px;
  color: var(--silver);
  opacity: 0.7;
  line-height: 1.6;
  margin-top: 12px;
}
.form__success {
  display: none;
  padding: 40px 32px;
  border: 1px solid rgba(239, 159, 39, 0.4);
  border-radius: 4px;
  text-align: center;
}
.form__success.is-visible { display: block; }
.form__success h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 14px;
}
.form__success p {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 400px;
}

/* =============================================================
   11. FAQ
   ============================================================= */
.faq__head {
  margin-bottom: 64px;
  max-width: var(--measure);
}
.faq__head h2 { color: var(--coal-deep); margin-bottom: 16px; }
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline-light);
}
.faq__item {
  border-bottom: 1px solid var(--hairline-light);
}
.faq__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 28px 4px;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--coal-deep);
  text-align: left;
  cursor: pointer;
  line-height: 1.4;
}
.faq__btn:hover { opacity: 0.78; }
.faq__sign {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
  margin-top: 6px;
  opacity: 0.6;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__item.is-open .faq__sign::after { transform: rotate(0); }
.faq__item.is-open .faq__sign { opacity: 1; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__answer-inner {
  padding: 0 4px 32px;
  max-width: 720px;
}
.faq__answer p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--stone);
}
.faq__answer p + p { margin-top: 14px; }

/* =============================================================
   12. FOOTER
   ============================================================= */
footer.footer {
  background: var(--coal-deep);
  color: var(--silver);
  padding: 96px var(--pad-x) 56px;
  border-top: 1px solid var(--hairline-dark);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hairline-dark);
  margin-bottom: 32px;
}
.footer__brand img {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
}
.footer__tag {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--cream);
  opacity: 0.86;
  max-width: 28ch;
  line-height: 1.5;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-size: 14px;
  color: var(--silver);
  transition: color var(--dur) var(--ease);
  opacity: 0.86;
}
.footer__col a:hover { color: var(--cream); opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--silver);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.footer__bottom span em {
  font-style: normal;
  color: var(--amber);
}
@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   ANIMAÇÕES (entrada simples, sem bounce)
   ============================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.08s; }
.fade-up[data-delay="2"] { transition-delay: 0.16s; }
.fade-up[data-delay="3"] { transition-delay: 0.24s; }
.fade-up[data-delay="4"] { transition-delay: 0.32s; }

/* =============================================================
   RESPONSIVE GLOBAL
   ============================================================= */
@media (max-width: 900px) {
  .nav__menu { display: none; }
}

@media (max-width: 600px) {
  .hero { padding-top: 120px; min-height: 88vh; }
  .hero__signature { display: none; }
  .nav__diretoria { display: none; }
  .nav__divider { display: none; }
}

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

/* =============================================================
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ULTRA-PREMIUM REFINEMENTS  —  v1.1
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ============================================================= */

/* ---------- SCROLL PROGRESS (topo da página) ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1.5px;
  width: 0%;
  background: var(--amber);
  z-index: 200;
  transition: width 60ms linear;
  pointer-events: none;
}

/* ---------- ISSUE METADATA (topo do hero) ---------- */
.issue-meta {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}
.issue-meta__sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}
.issue-meta__line {
  display: inline-block;
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.issue-meta strong {
  color: var(--cream);
  font-weight: 500;
}
.section--light .issue-meta strong { color: var(--coal-deep); }

/* ---------- HERO § MARKER GIGANTE ---------- */
.hero__marker {
  position: absolute;
  top: 14%;
  right: clamp(40px, 10vw, 160px);
  font-family: var(--font-heading);
  font-size: clamp(200px, 28vw, 480px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.75;
  color: rgba(239, 159, 39, 0.05);
  pointer-events: none;
  z-index: 1;
  user-select: none;
  font-feature-settings: "lnum" 1;
}
@media (max-width: 600px) {
  .hero__marker { display: none; }
  .hero__marker--monogram { display: none; }
}
.hero__marker--monogram {
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 720px;
  height: 720px;
  opacity: 0.025;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-12deg);
  user-select: none;
}
.hero__marker--monogram img { width: 100%; height: 100%; }

/* ---------- HERO MASK TEXT REVEAL ---------- */
.line-mask {
  display: block;
  overflow: hidden;
  padding: 0 0.06em 0.08em;
  margin: 0 -0.06em;
}
.line-mask__inner {
  display: block;
  transform: translateY(102%);
  transition: transform 800ms var(--ease-mask);
}
.is-revealed .line-mask__inner { transform: translateY(0); }
.line-mask:nth-child(1) .line-mask__inner { transition-delay: 80ms; }
.line-mask:nth-child(2) .line-mask__inner { transition-delay: 200ms; }
.line-mask:nth-child(3) .line-mask__inner { transition-delay: 320ms; }

/* ---------- HERO PULL QUOTE TEASER ---------- */
.hero__teaser {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--silver);
  max-width: 52ch;
  margin: 8px 0 40px;
  padding-left: 20px;
  border-left: 1px solid var(--hairline-dark);
}

/* ---------- LIVE METRICS (entre Premissa e Pilares) ---------- */
.live-metrics {
  background: var(--coal);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  border-bottom: 1px solid var(--hairline-dark);
}
.live-metrics .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.live-metrics__head .eyebrow { color: var(--silver); }
.live-metrics__head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.028em;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 20px;
}
.live-metrics__head p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--silver);
  max-width: 38ch;
}
.live-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--hairline-dark);
}
.live-metric {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline-dark);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.live-metric__num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 12px;
}
.live-metric__num em {
  font-style: normal;
  color: var(--amber);
  display: inline-block;
  font-variant-numeric: tabular-nums lining-nums;
  min-width: 1.4em;
  text-align: left;
}
.live-metric__num small {
  display: inline;
  font-size: 0.45em;
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: 0.5em;
}
.live-metric__label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--silver);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 900px) {
  .live-metrics .container { grid-template-columns: 1fr; gap: 48px; }
  .live-metrics__grid { grid-template-columns: 1fr; border-left: none; }
  .live-metric { border-right: none; border-top: 1px solid var(--hairline-dark); border-bottom: none; }
  .live-metric:last-child { border-bottom: 1px solid var(--hairline-dark); }
}

/* ---------- MARQUEE DE VERTICAIS ---------- */
.marquee-section {
  background: var(--cream-warm);
  padding: clamp(64px, 9vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.marquee-section .container { padding: 0; max-width: 100%; }
.marquee-section__head {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 var(--pad-x);
}
.marquee-section__head .eyebrow {
  justify-content: center;
}
.marquee-section__head .eyebrow::before {
  display: none;
}
.marquee-section__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.6vw, 26px);
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--stone);
  max-width: 50ch;
  margin: 0 auto;
  font-style: italic;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee-scroll 56s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--coal-deep);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}
.marquee__item::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- DROP CAP ---------- */
.has-dropcap > p:first-of-type::first-letter,
.dropcap::first-letter,
.has-dropcap > div:first-of-type p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 4.4em;
  line-height: 0.86;
  font-weight: 600;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--amber);
  letter-spacing: -0.04em;
  /* Garantir que drop cap não pisca com fade-up do pai */
  opacity: 1;
}

/* ---------- BLOCKQUOTE 2.0 ---------- */
.mesa__quote {
  position: relative;
  padding: 48px 56px 40px;
  margin: 64px 0 0;
  background: linear-gradient(135deg, rgba(239, 159, 39, 0.04), transparent 70%);
  border-left: 2px solid var(--amber);
  max-width: 880px;
  overflow: hidden;
  isolation: isolate;
}
.mesa__quote::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  right: 32px;
  font-family: var(--font-heading);
  font-size: 280px;
  font-weight: 600;
  line-height: 1;
  color: var(--amber);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.mesa__quote p {
  position: relative;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.42;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--coal-deep);
  margin-bottom: 20px;
  font-feature-settings: "liga" 1, "dlig" 1;
}
.mesa__quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-variant: small-caps;
  font-feature-settings: "smcp" 1;
  font-weight: 500;
}

/* ---------- PILARES — § MARKER + HOVER DINÂMICO ---------- */
.pilar {
  cursor: default;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.pilar:hover {
  background: rgba(241, 239, 232, 0.018);
  transform: translateX(4px);
}
.pilar:hover h3 { color: var(--amber); }
.pilar h3 {
  transition: color var(--dur) var(--ease);
}
.pilar__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--silver);
  opacity: 0.65;
  font-weight: 500;
}
.pilar__num::before {
  content: "§";
  font-size: 14px;
  color: var(--amber);
  opacity: 0.75;
}

/* ---------- BIBLIOTECA — § MARKER ---------- */
.cat__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--silver);
  opacity: 0.65;
  font-weight: 500;
}
.cat__num::before {
  content: "§";
  font-size: 13px;
  color: var(--amber);
  opacity: 0.75;
}
.cat {
  transition: opacity var(--dur) var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .biblioteca__grid:hover .cat { opacity: 0.45; }
  .biblioteca__grid:hover .cat:hover { opacity: 1; }
}

/* ---------- FAQ § MARKERS + REFINEMENT ---------- */
.faq__list { counter-reset: faq-counter; }
.faq__item { counter-increment: faq-counter; }
.faq__btn {
  position: relative;
  padding-left: 56px;
}
.faq__marker {
  position: absolute;
  left: 0;
  top: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--amber);
  opacity: 0.6;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.faq__marker::before {
  content: "§ " counter(faq-counter, decimal-leading-zero);
}

/* ---------- LINK UNDERLINE ANIMADO (timing sincronizado) ---------- */
.link-anim {
  display: inline-block;
  position: relative;
  color: inherit;
  font-weight: 500;
  padding-bottom: 2px;
}
.link-anim::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 280ms var(--ease-edit);
}
.link-anim:hover::after { transform: scaleX(0); transform-origin: right center; }
.link-anim::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 320ms var(--ease-edit) 120ms;
}
.link-anim:hover::before { transform: scaleX(1); transform-origin: left center; }

/* ---------- BTN MAGNETIC (sem conflito de transform) ---------- */
.btn--magnetic {
  --mag-x: 0px;
  --mag-y: 0px;
  --hover-y: 0px;
  transform: translate(var(--mag-x), var(--mag-y)) translateY(var(--hover-y));
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform 220ms var(--ease-edit),
              box-shadow var(--dur) var(--ease);
  will-change: transform;
}
.btn--magnetic:hover { --hover-y: -1px; }

/* ---------- BTN AMBER REFINADO (sombra editorial) ---------- */
.btn--amber {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 12px rgba(239, 159, 39, 0.18);
}
.btn--amber:hover {
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 8px 22px rgba(239, 159, 39, 0.32);
}
.btn--amber:not(.btn--magnetic):hover { transform: translateY(-1px); }

/* ---------- PRICING — RIBBON RECOMENDADO ---------- */
.plano--featured {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--amber);
}
.plano__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 159, 39, 0.12);
  padding: 4px 10px;
  border-radius: 2px;
}
.plano__hint::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- FORM — PLACEHOLDER ANIMADO + FOCUS ---------- */
.field input::placeholder,
.field textarea::placeholder { color: var(--silver); opacity: 0.45; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--amber);
  background: rgba(239, 159, 39, 0.04);
  box-shadow: 0 0 0 3px rgba(239, 159, 39, 0.08);
}

/* ---------- FOOTER — ASSINATURA VISUAL DISTINTIVA ---------- */
footer.footer {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  isolation: isolate;
}
.footer__cta-strip {
  background: var(--coal);
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  padding: clamp(56px, 8vw, 96px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.footer__cta-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}
.footer__cta-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--cream);
  max-width: 22ch;
}
.footer__cta-strip h3 em {
  font-style: normal;
  color: var(--amber);
}
.footer__cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer__cta-strip-actions p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  max-width: 36ch;
}
@media (max-width: 800px) {
  .footer__cta-strip-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer__monogram {
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: clamp(280px, 36vw, 520px);
  height: clamp(280px, 36vw, 520px);
  opacity: 0.028;
  pointer-events: none;
  z-index: -1;
  transform: rotate(-8deg);
  user-select: none;
}
.footer__monogram img { width: 100%; height: 100%; }
.footer__inner { position: relative; z-index: 1; }
footer.footer .footer__main {
  padding: 96px var(--pad-x) 56px;
}

/* Reorganizando footer__top */
.footer__top {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
}
.footer__brand p { font-style: italic; }
@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- SECTION KICKER (subtítulo opcional ao h2) ---------- */
.section-deck {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
  color: var(--stone);
  margin-top: 16px;
  max-width: 50ch;
  font-weight: 400;
}
.section--dark .section-deck { color: var(--silver); }

/* ---------- MEMBER WALL (anonimizado) — DARK pra alternar com Termos ---------- */
.members-section {
  padding: var(--section-y) 0;
  background: var(--coal-deep);
  color: var(--cream);
  position: relative;
}
.members-section .eyebrow { color: var(--silver); }
.members-section h2 { color: var(--cream); }
.members-section .section-deck { color: var(--silver); }
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
  margin-top: 64px;
}
.member-card {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--dur) var(--ease);
}
.member-card:hover { background: rgba(239, 159, 39, 0.025); }
.member-mark {
  width: 32px; height: 32px;
  border: 1px solid var(--hairline-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--silver);
  background: var(--graphite);
}
.member-card h4 {
  font-size: 15px;
  letter-spacing: -0.012em;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.member-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--silver);
}
@media (max-width: 1100px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .members-grid { grid-template-columns: 1fr; }
}

/* ---------- AJUSTE NA NAVBAR — issue style ---------- */
.nav__brand-mark {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-left: 4px;
}

/* ---------- HOVER LIST DIM (Sequoia / Vercel) ---------- */
.dim-list:hover > * { opacity: 0.42; transition: opacity 200ms var(--ease); }
.dim-list:hover > *:hover { opacity: 1; }

/* ---------- MISC: SETAS COM SEMÂNTICA (span inline, não ::after pra não conflitar com link-anim) ---------- */
.arrow {
  display: inline-block;
  margin-left: 4px;
  opacity: 0.72;
  transition: transform 220ms var(--ease-edit);
}
.link-anim:hover .arrow { transform: translate(2px, -2px); }

/* =============================================================
   CROSS-NAVIGATION  —  Diretoria ↔ Home
   ============================================================= */

/* Link cruzado na nav (Times Digitais ↗) — mesmo tamanho do .nav__cta */
.nav__cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.005em;
  padding: 10px 18px;
  line-height: 1;
  border: 1px solid var(--hairline-dark);
  border-radius: 3px;
  margin-right: 12px;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.nav__cross:hover {
  color: var(--cream);
  border-color: rgba(241, 239, 232, 0.18);
  background: rgba(241, 239, 232, 0.03);
}
.nav__cross .arrow {
  font-size: 11px;
  opacity: 0.6;
  margin-left: 0;
}
.nav__cross:hover .arrow { opacity: 1; transform: translate(2px, -2px); }

/* Brand clicável (volta pra home) */
.nav__brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand:hover img {
  opacity: 0.85;
}
.nav__brand img { transition: opacity var(--dur) var(--ease); }

/* Esconde cross link em mobile <600px (espaço apertado) */
@media (max-width: 600px) {
  .nav__cross { display: none; }
}

/* ---------- SEÇÃO CROSS-LINK (antes do footer) ---------- */
.cross-link-section {
  background: var(--cream-warm);
  color: var(--coal-deep);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cross-link-section .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.cross-link-section .eyebrow { color: var(--stone); }
.cross-link-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--coal-deep);
  margin-bottom: 20px;
}
.cross-link-section h2 em {
  font-style: normal;
  color: var(--amber);
}
.cross-link-section__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cross-link-section__body p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--stone);
  max-width: 56ch;
}
.cross-link-section__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline-light);
  margin-top: 24px;
}
.cross-card {
  padding: 32px 28px 32px 28px;
  border-bottom: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cross-card:nth-child(2) {
  padding-left: 32px;
  border-left: 1px solid var(--hairline-light);
}
.cross-card.is-current::before {
  right: 16px;
}
.cross-card.is-current {
  background: rgba(239, 159, 39, 0.025);
  position: relative;
}
.cross-card.is-current::before {
  content: "Você está aqui";
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.85;
}
.cross-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.cross-card__name {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--coal-deep);
  line-height: 1.2;
}
.cross-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--stone);
  flex: 1;
}
.cross-card__link {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--coal-deep);
  border-bottom: 1px solid var(--coal-deep);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cross-card__link:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.cross-card.is-current .cross-card__link {
  color: var(--silver);
  border-color: transparent;
  pointer-events: none;
}

@media (max-width: 900px) {
  .cross-link-section .container { grid-template-columns: 1fr; gap: 40px; }
  .cross-link-section__compare { grid-template-columns: 1fr; }
  .cross-card { padding: 24px 0; }
  .cross-card:nth-child(2) { padding-left: 0; border-left: none; border-top: 1px solid var(--hairline-light); }
}

/* Variação dark da cross-link-section (pra Diretoria, alterna com footer) */
.cross-link-section--dark {
  background: var(--coal-deep);
  color: var(--cream);
}
.cross-link-section--dark h2 { color: var(--cream); }
.cross-link-section--dark p { color: var(--silver); }
.cross-link-section--dark .cross-link-section__compare,
.cross-link-section--dark .cross-card,
.cross-link-section--dark .cross-card:nth-child(2) {
  border-color: var(--hairline-dark);
}
.cross-link-section--dark .cross-card__name { color: var(--cream); }
.cross-link-section--dark .cross-card__desc { color: var(--silver); }
.cross-link-section--dark .cross-card__link {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.cross-link-section--dark .cross-card__link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* =============================================================
   MOBILE EXPERIENCE — OVERRIDES & POLISH
   Aplicado para garantir UX perfeita em mobile (320–768px)
   ============================================================= */

/* Touch action global — remove 300ms tap delay */
a, button, .btn, .nav__link, .faq__btn, .radio, label, input[type="radio"] {
  touch-action: manipulation;
}

/* Prevent overflow horizontal mascarado */
html { overflow-x: clip; }

/* Hero — usa dvh quando suportado pra evitar bug iOS Safari URL bar */
@supports (height: 100dvh) {
  .hero { min-height: 88dvh; }
}

/* Section padding mobile mais enxuto */
@media (max-width: 480px) {
  :root {
    --section-y: clamp(72px, 12vw, 120px);
    --pad-x: clamp(20px, 5vw, 32px);
  }
}

/* ---------- HAMBURGER NAV MOBILE ---------- */
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(241,239,232,0.14);
  border-radius: 8px;
  background: rgba(241,239,232,0.04);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.nav__hamburger:hover { background: rgba(241,239,232,0.08); }
.nav__hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh; height: 100dvh;
  background: rgba(17,17,16,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99;
  padding-top: calc(env(safe-area-inset-top, 0) + 78px);
  padding-bottom: env(safe-area-inset-bottom, 0);
  overflow-y: auto;
}
.nav__mobile-drawer.is-open { display: block; animation: drawerIn 280ms var(--ease); }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px var(--pad-x) 32px;
}
.nav__mobile-link {
  display: flex; align-items: center;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--cream);
  border-bottom: 1px solid var(--hairline-dark);
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}
.nav__mobile-link:active { color: var(--amber); }
.nav__mobile-link--cross {
  color: var(--silver);
  font-size: 16px;
  font-weight: 500;
}
.nav__mobile-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  min-height: 56px;
  font-size: 16px;
}

/* Mostrar hamburger e esconder menu desktop em <900px */
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cross,
  .nav__divider,
  .nav__diretoria { display: none; }
}

/* Em <600px, esconder até o CTA do nav (drawer cobre tudo) */
@media (max-width: 600px) {
  .nav__cta { display: none; }
}

/* ---------- HERO MOBILE ---------- */
@media (max-width: 600px) {
  .hero {
    padding-top: 96px;
    padding-bottom: 64px;
    min-height: auto;
  }
  .hero__signature { display: none; }
  .issue-meta { margin-bottom: 28px; gap: 8px; font-size: 10px; flex-wrap: wrap; }
  .hero h1 { margin-bottom: 24px; max-width: 100%; }
  .hero__sub { margin-bottom: 28px; font-size: 16px; line-height: 1.55; }
  .hero__teaser {
    padding-left: 14px;
    margin: 4px 0 28px;
    font-size: 14px;
    line-height: 1.5;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    min-height: 52px;
    font-size: 15px;
  }
  .hero__meta {
    flex-direction: column;
    gap: 10px;
    font-size: 12.5px;
  }
  .hero__marker { font-size: 60px; left: 16px; top: 88px; }
  .hero__marker--monogram { right: -120px; bottom: -120px; }
}

/* h-display mais protegido: garante que descenders (g) não cortam */
.line-mask { padding: 0 0.06em 0.18em; margin: 0 -0.06em; }
@media (max-width: 380px) {
  .h-display { font-size: 44px; letter-spacing: -0.04em; }
}

/* ---------- PREMISSA MOBILE ---------- */
@media (max-width: 600px) {
  .premissa h2 { margin-bottom: 32px; }
  .premissa__lead { margin-top: 32px !important; margin-bottom: 32px; font-size: 18px; }
  .premissa__body { gap: 20px; }
  .has-dropcap > p:first-of-type::first-letter,
  .has-dropcap > div:first-of-type p:first-of-type::first-letter {
    font-size: 3.6em; padding: 0.08em 0.1em 0 0;
  }
}

/* ---------- LIVE METRICS ---------- */
@media (max-width: 1100px) {
  .live-metrics .container { grid-template-columns: 1fr !important; gap: 32px !important; }
  .live-metrics__grid { grid-template-columns: 1fr !important; border-left: none !important; }
  .live-metric {
    border-right: none !important;
    border-top: 1px solid var(--hairline-dark);
    border-bottom: none;
    padding: 24px 0;
  }
  .live-metric:last-child { border-bottom: 1px solid var(--hairline-dark); }
}
@media (max-width: 600px) {
  .live-metric__num { font-size: 40px; }
  .live-metric__label { font-size: 11px; }
}

/* ---------- PILARES MOBILE ---------- */
@media (max-width: 800px) {
  .pilar,
  .pilar:nth-child(odd),
  .pilar:nth-child(even) {
    padding: 36px 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
  .pilares__head { margin-bottom: 48px; }
}
@media (hover: none) {
  .pilar:hover { transform: none; background: transparent; }
  .pilar:hover h3 { color: var(--cream); }
}

/* ---------- MARQUEE MOBILE ---------- */
.marquee-section { overflow: hidden; }
@media (max-width: 600px) {
  .marquee__item { font-size: 36px; gap: 40px; }
  .marquee__track { gap: 40px; }
}

/* ---------- MESA DO VICTOR ---------- */
@media (max-width: 600px) {
  .mesa__quote {
    padding: 28px 20px 24px;
    margin: 32px 0 0;
  }
  .mesa__quote p { font-size: 18px; line-height: 1.5; }
  .mesa__story p { font-size: 16px; }
  .mesa__metricas { margin-top: 48px; }
  .mesa__metrica { padding: 24px 0; }
}

/* ---------- BIBLIOTECA — proteger hover em touch devices ---------- */
.dim-list:hover > * { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .dim-list:hover > * { opacity: 0.42; transition: opacity 200ms var(--ease); }
  .dim-list:hover > *:hover { opacity: 1; }
}
@media (max-width: 900px) {
  .biblioteca__grid { grid-template-columns: 1fr !important; }
  .cat {
    padding: 32px 0 !important;
    border-right: none !important;
  }
}

/* ---------- DOIS BLOCOS (Mesa Redonda + Fórum) ---------- */
@media (max-width: 800px) {
  .dois-blocos > div,
  .dois-blocos > div + div {
    padding: 40px 0 !important;
    border-left: none !important;
  }
}

/* ---------- FIT (Não é / É) ---------- */
@media (max-width: 800px) {
  .fit__col { padding: 32px 22px; border: 1px solid var(--hairline-dark); }
  .fit__col + .fit__col { border-top: none; border-left: 1px solid var(--hairline-dark); }
}
@media (max-width: 380px) {
  .fit__col { padding: 24px 18px; }
  .fit__head { margin-bottom: 48px; }
}

/* ---------- MEMBROS ---------- */
@media (max-width: 900px) {
  .member-card { padding: 24px 20px; }
}
@media (hover: hover) {
  .member-card:hover { background: rgba(239, 159, 39, 0.025); }
}

/* ---------- TERMOS / PRICING ---------- */
@media (max-width: 600px) {
  .plano { padding: 32px 22px; }
  .plano__price { font-size: 38px; }
  .plano .btn { width: 100%; justify-content: center; min-height: 52px; }
}
@media (max-width: 380px) {
  .plano { padding: 28px 18px; }
}

/* ---------- APLICAÇÃO / FORM — INPUTS 16px (evita zoom iOS) ---------- */
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  font-size: 16px;
}
@media (min-width: 768px) {
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="url"],
  .field select,
  .field textarea { font-size: 15px; }
}
.field input,
.field select,
.field textarea {
  min-height: 48px;
}
.field textarea { min-height: 96px; }
@media (min-width: 768px) {
  .field textarea { min-height: 120px; }
}
@media (max-width: 700px) {
  .field--row { grid-template-columns: 1fr; gap: 18px; }
}

/* iOS: desliga seta custom do select (que duplica com nativa) */
@supports (-webkit-touch-callout: none) {
  .field select {
    background-image: none;
    padding-right: 16px;
  }
}

.aplicacao__submit {
  margin-top: 16px;
  padding: 18px 32px;
  min-height: 56px;
}
@media (max-width: 600px) {
  .aplicacao__submit { width: 100%; padding: 18px 24px; }
}

/* Form invalid feedback */
[aria-invalid="true"] {
  border-color: rgba(226, 75, 74, 0.6) !important;
}

/* ---------- FAQ MOBILE ---------- */
@media (max-width: 600px) {
  .faq__btn {
    padding-left: 36px;
    padding-right: 28px;
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 16px;
    line-height: 1.4;
    min-height: 64px;
  }
  .faq__marker { left: 0; top: 24px; font-size: 10px; }
  .faq__sign { margin-top: 4px; width: 14px; height: 14px; }
}

/* ---------- CROSS-LINK ---------- */
@media (max-width: 600px) {
  .cross-card { padding-top: 36px; }
  .cross-card.is-current::before { top: 8px; right: 0; }
}

/* ---------- FOOTER CTA STRIP ---------- */
@media (max-width: 600px) {
  .footer__cta-strip-actions { width: 100%; }
  .footer__cta-strip-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .footer__monogram {
    width: clamp(200px, 50vw, 280px);
    height: clamp(200px, 50vw, 280px);
  }
}

/* ---------- BACKDROP-FILTER MENOS PESADO MOBILE ---------- */
@media (max-width: 768px) {
  .nav.is-scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav__mobile-drawer {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* ---------- PREFERS REDUCED MOTION (acessibilidade) ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none !important; }
  .line-mask__inner { transform: translateY(0) !important; }
}
