/* =========================================================
   Mentoria HMZ Concept — Dra. Fabiane Ames
   Dark dourado, seguindo a identidade real da marca.
   Tokens em clientes/Dra. Fabiane Ames/DESIGN.md
   ========================================================= */

:root {
  /* Preto neutro de base + marrom nas faixas + dourado como acento.
     A base é quase neutra de propósito, pra o marrom das seções destacar
     (antes o "preto" era marrom e tudo colava). */
  --bg: #080807;           /* preto quase neutro, base */
  --surface: #1C130D;      /* card sobre o fundo */
  --surface-alt: #2E1809;  /* marrom mogno escuro, faixa de seção */
  --border: #58371E;       /* borda marrom quente, visível contra o preto neutro */
  --primary: #EFC072;      /* dourado do monograma, vivo e saturado */
  --primary-hover: #F7CE88;   /* dourado acima, hover sobe no escuro */
  --on-primary: #140F0B;   /* texto sobre o dourado */
  --text: #F4EFE7;
  --muted: #BCAB99;

  --r-btn: 6px;
  --r-card: 8px;

  --xs: 8px;
  --sm: 12px;
  --md: 20px;
  --lg: 36px;
  --xl: 64px;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--primary); color: var(--on-primary); }

/* ---------- estrutura ---------- */

.wrap {
  width: min(1080px, calc(100% - 2 * var(--md)));
  margin-inline: auto;
}
.wrap--narrow { width: min(660px, calc(100% - 2 * var(--md))); }
.nopad { width: 100%; margin-inline: 0; }

.sec { padding-block: clamp(56px, 9vw, 104px); }
/* faixa marrom com fio dourado sutil no topo, pra cravar a separação */
.sec--alt {
  background: var(--surface-alt);
  border-top: 1px solid color-mix(in srgb, var(--primary) 32%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--primary) 32%, transparent);
}
.sec + .sec:not(.sec--alt) { border-top: 1px solid var(--border); }

/* ---------- tipografia ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 var(--md);
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(2.15rem, 6.2vw, 3.5rem);
  line-height: 1.06;
  margin-bottom: var(--md);
}
.display em {
  font-style: italic;
  color: var(--primary);
}

h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  line-height: 1.18;
}
h3 {
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: var(--xs);
}

p { margin: 0 0 var(--md); }
.sec p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.18rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--md);
}

.strong-line {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--text);
}

/* ---------- faixa de demo ---------- */

.demo-bar {
  background: var(--surface-alt);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
  padding: 9px var(--md);
}
.demo-bar strong { color: var(--primary); font-weight: 600; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--md);
  padding-block: 14px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text);
  text-decoration: none;
}
.wordmark span { color: var(--primary); font-style: italic; font-weight: 400; }

/* ---------- botões ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 11px 18px;
  font-size: .88rem;
}
.btn--ghost:hover { background: var(--primary); color: var(--on-primary); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- hero ---------- */

.hero { padding-block: clamp(52px, 8vw, 96px) clamp(56px, 9vw, 104px); }
.hero__cta { margin-top: var(--lg); margin-bottom: var(--sm); }
.hero__sig {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

/* salto de preço */
.jump {
  margin: var(--lg) 0 0;
  padding: var(--md) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.jump__row {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 4vw, 34px);
  flex-wrap: wrap;
}
.jump__side { display: flex; flex-direction: column; gap: 2px; }
.jump__label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.jump__num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  font-variant-numeric: lining-nums;
}
.jump__num--old {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.jump__arrow {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  line-height: 1;
  padding-bottom: .12em;   /* alinha com a base dos numerais */
}
.jump figcaption {
  margin-top: var(--sm);
  font-size: .85rem;
  color: var(--muted);
}

/* ---------- listas ---------- */

.thoughts {
  list-style: none;
  margin: 0 0 var(--md);
  padding: 0;
  display: grid;
  gap: var(--xs);
}
.thoughts li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

.ticks, .crosses {
  list-style: none;
  margin: 0 0 var(--md);
  padding: 0;
  display: grid;
  gap: var(--sm);
}
.ticks li, .crosses li { padding-left: 28px; position: relative; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 4px; top: .62em;
  width: 10px; height: 5px;
  border-left: 1.5px solid var(--primary);
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-45deg);
}
.crosses li::before {
  content: "";
  position: absolute;
  left: 6px; top: .68em;
  width: 11px; height: 1.5px;
  background: var(--muted);
}

/* ---------- pilares ---------- */

/* Sem card e sem numeração: régua dourada no topo de cada coluna.
   Diferencia dos cards de prova, que vêm logo depois, e tira o
   scaffold "01 / 02 / 03" que o detector sinaliza como cara de IA. */
.pillars {
  list-style: none;
  margin: var(--lg) 0 0;
  padding: 0;
  display: grid;
  gap: var(--lg);
}
@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 52px); }
}
.pillar {
  padding-top: var(--md);
  border-top: 2px solid var(--primary);
}
.pillar h3 {
  font-size: 1.35rem;
  margin-bottom: var(--xs);
}
.pillar p { margin: 0; color: var(--muted); font-size: .95rem; }

.fourth { margin-top: var(--lg); }
.fourth strong { color: var(--primary); font-weight: 600; }

/* ---------- prova ---------- */

.proofs {
  margin: var(--lg) 0;
  display: grid;
  gap: var(--md);
}
@media (min-width: 720px) {
  .proofs { grid-template-columns: repeat(3, 1fr); }
  .proof--hero { grid-column: 1 / -1; }
}
.proof {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px;
}
.proof__num {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin: 0 0 6px;
}
.proof--hero .proof__num { font-size: clamp(2.4rem, 7vw, 3.6rem); }
.proof__was {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--sm);
  font-weight: 600;
}
.proof__txt { margin: 0; font-size: .95rem; color: var(--muted); }
.proof__txt em { color: var(--text); }
.proof--hero .proof__txt { font-size: 1.02rem; max-width: 62ch; }

.proof__more { font-size: .95rem; color: var(--muted); }
.disclaimer {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--sm);
  margin-bottom: 0;
}

/* ---------- autoridade ---------- */

.author {
  display: grid;
  gap: var(--lg);
  align-items: start;
}
@media (min-width: 800px) {
  .author { grid-template-columns: 300px 1fr; gap: clamp(36px, 5vw, 64px); }
}
.author__media img {
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  width: 100%;
}
.author__txt p { color: var(--muted); max-width: 60ch; }
.author__txt p:first-of-type { color: var(--text); font-size: 1.1rem; }

/* ---------- formato ---------- */

.format { margin: var(--lg) 0 var(--md); }
.format dt {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: var(--md);
  border-top: 1px solid var(--border);
}
.format dd {
  margin: 6px 0 var(--md);
  color: var(--muted);
}
.format dd:last-child { margin-bottom: 0; }

/* ---------- filtro ---------- */

.fit {
  display: grid;
  gap: var(--lg);
  margin-bottom: var(--lg);
}
@media (min-width: 760px) {
  .fit { grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); }
}
.fit__h { font-size: 1.4rem; margin-bottom: var(--md); }
.fit__col--no .fit__h { color: var(--muted); }
.fit__col--no li { color: var(--muted); }

.pull {
  position: relative;
  margin: 0;
  padding-left: 2.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  line-height: 1.45;
  color: var(--text);
}
.pull::before {
  content: "\201C";              /* aspa de abertura, em ouro, no lugar da tarja lateral */
  position: absolute;
  left: 0;
  top: 0.15em;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--primary);
}

/* ---------- faq ---------- */

.faq {
  border-top: 1px solid var(--border);
  padding: var(--md) 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1;
  flex: none;
}
.faq[open] summary::after { content: "\2212"; }
.faq p {
  margin: var(--sm) 0 0;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- aplicação ---------- */

.sec--apply { background: var(--surface-alt); }

.qual { margin: var(--lg) 0 var(--md); }
.qual__q {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
  padding: var(--md) 0 0;
}
/* espaçamento por fieldset, não por irmão adjacente: o resumo da triagem
   fica oculto entre eles e quebrava o seletor `+` */
.qual fieldset { margin-top: var(--lg); }
.qual fieldset:first-of-type { margin-top: 0; }
.qual__q legend {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0;
  margin-bottom: var(--sm);
}
.chips { display: flex; flex-wrap: wrap; gap: var(--xs); }
.chip { position: relative; }
.chip input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;          /* alvo de toque confortável no celular */
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: .9rem;
  line-height: 1.3;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}
.chip input:hover + span { border-color: var(--primary); }
.chip input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }
.chip input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.qual__summary {
  margin: var(--md) 0 0;
  padding: var(--sm) var(--md);
  background: color-mix(in srgb, var(--primary) 8%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 30%, var(--border));
  border-radius: var(--r-btn);
  font-size: .92rem;
  color: var(--muted);
}
.qual__summary strong { color: var(--text); font-weight: 600; }

.qual__cta { margin: var(--lg) 0 var(--xs); }
.btn.is-locked {
  background: var(--border);
  color: var(--muted);
  cursor: not-allowed;
  pointer-events: none;
}
.qual__hint { font-size: .85rem; color: var(--muted); margin: 0; }
.qual__hint.is-done { color: var(--primary); }

.closing {
  margin-top: var(--lg);
  padding-top: var(--md);
  border-top: 1px solid var(--border);
  font-size: .95rem;
  color: var(--muted);
}

/* marcador de pendência do protótipo */
.todo {
  font-size: .85rem;
  color: var(--muted);
  background: rgba(221, 171, 112, .07);
  border: 1px dashed rgba(221, 171, 112, .45);
  border-radius: var(--r-btn);
  padding: 10px 14px;
  margin-top: var(--md);
}

/* ---------- rodapé ---------- */

.foot {
  background: var(--surface-alt);
  color: var(--muted);
  padding-block: var(--xl);
}
.foot__mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sm);
}
.foot__mark span { font-style: italic; font-weight: 400; color: var(--primary); }
.foot__note { font-size: .8rem; line-height: 1.6; margin: 0; max-width: 62ch; }
.foot__note a { color: var(--primary); }

/* ---------- CTA flutuante ----------
   Leva para a triagem, não direto para o WhatsApp: mandar para o WhatsApp
   por aqui furaria a qualificação, que é o motivo da página existir. */

.cta-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}
.cta-float:hover { background: var(--primary-hover); transform: translateY(-2px); }
/* no desktop o CTA fixo da nav está sempre à vista, então o flutuante só
   aparece no mobile, onde o alcance do polegar justifica. */
@media (min-width: 720px) {
  .cta-float { display: none; }
}

/* ---------- medalhão do logo ---------- */

.medal {
  width: 84px;
  height: 84px;
  margin: 0 0 var(--md);
  border-radius: 999px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo img { width: 34px; height: 34px; border-radius: 999px; }

/* ---------- campos do formulário ---------- */

.fields {
  display: grid;
  gap: var(--md);
  margin-bottom: var(--md);
}
@media (min-width: 620px) {
  .fields { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.field__hint {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-btn);
  padding: 12px 14px;
  min-height: 48px;
  width: 100%;
  transition: border-color .16s ease;
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.5; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%),
                    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); opacity: .7; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--primary); }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible { border-color: var(--primary); }

/* campo com erro sinalizado pelo JS */
.field.is-erro input,
.field.is-erro select { border-color: #E2896F; }
.field__erro {
  font-size: .8rem;
  color: #E2896F;
  margin: 0;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--primary);
  flex: none;
}

/* honeypot: fora da tela, invisível para humano e para leitor de tela */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.qual__erro {
  margin: var(--md) 0 0;
  padding: var(--sm) var(--md);
  border: 1px solid #E2896F;
  border-radius: var(--r-btn);
  background: rgba(226, 137, 111, .08);
  color: #F0B4A2;
  font-size: .9rem;
}

button.btn {
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}
button.btn[disabled] { opacity: .55; cursor: progress; }

/* ---------- reveal no scroll (aplicado via JS, classe só) ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
