/* =====================================================================
   Numo — Funil de Quiz "Diagnóstico do Investidor Imobiliário"
   ---------------------------------------------------------------------
   Estilo exclusivo da página quiz-investidor.html. Usa SOMENTE os tokens
   de colors_and_type.css (paleta de 4 cores + Utendo). Não inventa cor.
   Mobile-first: a experiência é desenhada para o polegar.
   ===================================================================== */

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.quiz-body { min-height: 100vh; min-height: 100dvh; }

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Casca da aplicação -------------------------------------- */
.quiz {
  --quiz-max: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Topo fixo: logo + progresso */
.quiz-top {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.quiz-top__bar {
  width: 100%;
  max-width: var(--quiz-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
}
.quiz-back {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-elevated);
  color: var(--fg-muted);
  flex: none;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.quiz-back:hover { color: var(--fg); border-color: var(--accent); }
.quiz-back svg { width: 18px; height: 18px; }
.quiz--stepping .quiz-back { display: inline-flex; }

.quiz-logo { height: 22px; width: auto; flex: none; }
.quiz-progress {
  flex: 1;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--line-light);
  overflow: hidden;
}
.quiz-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: var(--r-pill);
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.quiz-progress__label {
  font-size: 12px;
  font-weight: var(--w-semibold);
  color: var(--fg-muted);
  flex: none;
  font-variant-numeric: tabular-nums;
}
.quiz--cover .quiz-progress,
.quiz--cover .quiz-progress__label { display: none; }

/* ---------- Palco (conteúdo que troca) ------------------------------ */
.quiz-stage {
  width: 100%;
  max-width: var(--quiz-max);
  padding: var(--sp-5) var(--sp-4) var(--sp-8);
  flex: 1;
}
.quiz-screen { animation: quizIn var(--dur) var(--ease) both; }
@keyframes quizIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-screen { animation: none; }
  .quiz-progress__fill { transition: none; }
}

/* ---------- Capa ---------------------------------------------------- */
.q-cover {
  border-radius: var(--r-2xl);
  background: var(--grad-hero);
  color: var(--fg-on-dark);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.q-cover__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-eyebrow); font-weight: var(--w-semibold);
  text-transform: uppercase; letter-spacing: var(--track-tag);
  color: var(--fg-on-dark-muted);
  margin: 0 0 var(--sp-4);
}
.q-cover__eyebrow svg { width: 16px; height: 16px; flex: none; color: #7ea8ff; }
.q-cover__title {
  font-size: var(--fs-h1); font-weight: var(--w-extrabold);
  line-height: var(--lh-tight); letter-spacing: var(--track-tight);
  margin: 0 0 var(--sp-4); text-wrap: balance;
}
.q-cover__title .accent { color: #7ea8ff; }
.q-cover__sub {
  font-size: var(--fs-lead); font-weight: var(--w-light);
  line-height: 1.5; color: var(--fg-on-dark-muted);
  margin: 0 0 var(--sp-6);
}
.q-cover__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  margin: var(--sp-6) 0 var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-on-dark);
}
.q-cover__meta span {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-small); color: var(--fg-on-dark-muted);
}
.q-cover__meta svg { width: 16px; height: 16px; color: #7ea8ff; }

/* ---------- Perguntas ----------------------------------------------- */
.q-kicker {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-eyebrow); font-weight: var(--w-semibold);
  text-transform: uppercase; letter-spacing: var(--track-tag);
  color: var(--accent); margin: 0 0 var(--sp-3);
}
.q-kicker svg { width: 15px; height: 15px; flex: none; }
.q-question {
  font-size: var(--fs-h2); font-weight: var(--w-bold);
  line-height: var(--lh-snug); letter-spacing: var(--track-tight);
  margin: 0 0 var(--sp-2); text-wrap: balance;
}
.q-help {
  font-size: var(--fs-small); color: var(--fg-muted);
  margin: 0 0 var(--sp-5);
}
.q-opts { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: var(--sp-5); }
.q-opt {
  display: flex; align-items: center; gap: var(--sp-4);
  width: 100%; text-align: left;
  padding: var(--sp-4) var(--sp-5);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  color: var(--fg);
  font-size: var(--fs-body); font-weight: var(--w-medium);
  line-height: 1.35;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.q-opt:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.q-opt:active { transform: translateY(0); }
.q-opt.is-picked { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg-elevated)); }
.q-opt__mark {
  flex: none; width: 26px; height: 26px; border-radius: var(--r-pill);
  border: 1.5px solid var(--border); display: inline-flex;
  align-items: center; justify-content: center; color: transparent;
  transition: all var(--dur-fast) var(--ease);
}
.q-opt.is-picked .q-opt__mark { background: var(--accent); border-color: var(--accent); color: var(--branco); }
.q-opt__mark svg { width: 15px; height: 15px; }

/* ---------- Interstitial -------------------------------------------- */
.q-inter {
  border-radius: var(--r-2xl);
  background: var(--grad-light);
  border: 1px solid var(--border);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.q-inter__icn {
  width: 56px; height: 56px; margin: 0 auto var(--sp-5);
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--accent) 10%, var(--bg-elevated));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.q-inter__icn svg { width: 28px; height: 28px; }
.q-inter__title {
  font-size: var(--fs-h3); font-weight: var(--w-bold);
  line-height: var(--lh-snug); margin: 0 0 var(--sp-3); text-wrap: balance;
}
.q-inter__text { font-size: var(--fs-body); color: var(--fg-muted); line-height: var(--lh-body); margin: 0 auto; max-width: 42ch; }

/* ---------- Captura ------------------------------------------------- */
.q-capture__lead { font-size: var(--fs-lead); font-weight: var(--w-light); color: var(--fg-muted); margin: 0 0 var(--sp-6); }
.q-field { margin-bottom: var(--sp-4); }
.q-field__label { display: block; font-size: var(--fs-small); font-weight: var(--w-semibold); margin: 0 0 var(--sp-2); }
.q-inputwrap { display: flex; gap: var(--sp-2); }
.q-input, .q-select {
  width: 100%;
  padding: var(--sp-4) var(--sp-4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  color: var(--fg);
  font-size: var(--fs-body);
  transition: border-color var(--dur-fast) var(--ease);
}
.q-input:focus, .q-select:focus { outline: none; border-color: var(--accent); }
.q-select { flex: none; width: auto; }
.q-field.is-err .q-input, .q-field.is-err .q-select { border-color: #b3261e; }
.q-field__err { display: none; color: #b3261e; font-size: var(--fs-small); margin: var(--sp-2) 0 0; }
.q-field.is-err .q-field__err { display: block; }
.q-consent {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 13px; color: var(--fg-muted); line-height: 1.45;
  margin: var(--sp-5) 0 var(--sp-6);
}
.q-consent input { margin-top: 3px; flex: none; width: 18px; height: 18px; accent-color: var(--accent); }
.q-consent a { color: var(--accent); }
.q-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Loading ------------------------------------------------- */
.q-loading { text-align: center; padding: var(--sp-9) var(--sp-4); }
.q-spinner {
  width: 54px; height: 54px; margin: 0 auto var(--sp-6);
  border-radius: var(--r-pill);
  border: 4px solid var(--line-light);
  border-top-color: var(--accent);
  animation: quizSpin 0.8s linear infinite;
}
@keyframes quizSpin { to { transform: rotate(360deg); } }
.q-loading__text { font-size: var(--fs-lead); font-weight: var(--w-medium); color: var(--fg); margin: 0; min-height: 1.5em; }

/* ---------- Resultado (editorial: dossiê premium, monocromático) ----- */
.q-result { display: flex; flex-direction: column; gap: var(--sp-8); padding-bottom: var(--sp-9); }
.q-score {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  background: var(--grad-hero);
  color: var(--fg-on-dark);
  padding: var(--sp-8) var(--sp-6) var(--sp-7);
  box-shadow: var(--shadow-lg);
}
.q-score__label { font-size: 12px; font-weight: var(--w-semibold); text-transform: uppercase; letter-spacing: var(--track-tag); color: var(--fg-on-dark-muted); margin: 0 0 var(--sp-5); }
.q-score__big { display: flex; align-items: baseline; gap: var(--sp-2); line-height: .85; }
.q-score__big b { font-weight: var(--w-black); font-size: clamp(5rem, 28vw, 8.5rem); letter-spacing: -0.04em; }
.q-score__big span { font-weight: var(--w-light); font-size: var(--fs-h2); color: var(--fg-on-dark-muted); }
.q-score__profile { font-size: var(--fs-h3); font-weight: var(--w-light); color: var(--fg-on-dark-muted); margin: var(--sp-5) 0 var(--sp-3); }
.q-score__profile b { display: block; font-weight: var(--w-extrabold); font-size: var(--fs-h1); color: var(--fg-on-dark); letter-spacing: var(--track-tight); line-height: 1.05; margin-top: 2px; }
.q-score__tag { font-size: var(--fs-body); font-weight: var(--w-light); color: var(--fg-on-dark-muted); margin: 0; line-height: 1.5; max-width: 42ch; }

/* ---------- Revelação da nota (antes do formulário) ------------------
   A nota sai de graça; o que fica travado é o detalhe dos 5 pilares. Os
   pilares aparecem nomeados e fechados: mostram o tamanho exato do que falta
   sem entregar o conteúdo. */
.q-scorereveal { display: flex; flex-direction: column; gap: var(--sp-5); padding-bottom: var(--sp-8); }
.q-scorereveal .q-score { padding: var(--sp-7) var(--sp-6) var(--sp-6); }
.q-scorereveal .q-score__profile { margin-bottom: 0; }
.q-lock__lead { margin: var(--sp-2) 0 0; font-size: var(--fs-body); line-height: 1.5; color: var(--fg-muted); }
.q-lock { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.q-lock__i {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); background: var(--bg-elevated);
  font-size: var(--fs-body); font-weight: var(--w-semibold); color: var(--fg-muted);
}
.q-lock__i span { flex: 1 1 auto; }
.q-lock__ic { width: 20px; height: 20px; flex: 0 0 auto; opacity: .5; }
.q-lock__lk { width: 16px; height: 16px; flex: 0 0 auto; opacity: .45; }
.q-scorereveal__re {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  margin: 0; font-size: 13px; line-height: 1.4; color: var(--fg-muted); text-align: center;
}
.q-scorereveal__re svg { width: 15px; height: 15px; flex: 0 0 auto; opacity: .7; }

/* Seções do resultado: card-less, editorial (eyebrow com fio + conteúdo) */
.q-card { background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.q-card h3 { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 12px; font-weight: var(--w-semibold);
  text-transform: uppercase; letter-spacing: var(--track-tag); color: var(--fg-muted); margin: 0 0 var(--sp-4); }
.q-card h3::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: .5; flex: none; }
.q-card p { font-size: var(--fs-body); line-height: var(--lh-body); color: var(--fg); margin: 0 0 var(--sp-4); max-width: 48ch; }
.q-good { font-size: var(--fs-lead); font-weight: var(--w-light); line-height: 1.5; color: var(--fg); }
.q-good svg { display: none; }

/* Linha personalizada pelo objetivo (Q1), abrindo os pontos de atenção */
.q-obj-line { font-size: var(--fs-body); color: var(--fg); font-weight: var(--w-semibold); margin: 0 0 var(--sp-3); }

/* Oferta — editorial clara, moldura imperial (NÃO outro herói escuro) */
.q-offer {
  border: 1.5px solid var(--imperial-blue); border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  background: linear-gradient(180deg, color-mix(in srgb, var(--imperial-blue) 5%, var(--bg-elevated)), var(--bg-elevated));
}
.q-offer__kicker { font-size: var(--fs-h3); font-weight: var(--w-extrabold); line-height: 1.15; letter-spacing: var(--track-tight); margin: 0 0 var(--sp-5); text-wrap: balance; }
.q-offer__title { font-size: 12px; font-weight: var(--w-semibold); text-transform: uppercase; letter-spacing: var(--track-tag); color: var(--accent); margin: 0 0 var(--sp-4); }
.q-offer__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); padding-bottom: var(--sp-5); margin: 0 0 var(--sp-5); border-bottom: 1px solid var(--border); }
.q-offer__meta span { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 12px; font-weight: var(--w-semibold); text-transform: uppercase; letter-spacing: .06em; color: var(--fg); }
.q-offer__meta svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.q-stack { list-style: none; margin: 0 0 var(--sp-5); padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.q-stack li { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: var(--fs-body); line-height: 1.45; }
.q-stack svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.q-scarcity { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 12px; font-weight: var(--w-bold); text-transform: uppercase; letter-spacing: .06em; color: var(--accent); margin: 0 0 var(--sp-5); }
.q-scarcity svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.q-price { display: flex; align-items: baseline; gap: var(--sp-3); margin: 0 0 var(--sp-2); }
.q-price__anchor { font-size: var(--fs-body); color: var(--fg-muted); text-decoration: line-through; margin: 0; }
.q-price__now { font-size: clamp(3rem, 13vw, 4rem); font-weight: var(--w-black); letter-spacing: -0.03em; line-height: .9; margin: 0; color: var(--fg); }
.q-price__terms { font-size: var(--fs-small); color: var(--fg-muted); margin: 0 0 var(--sp-5); }
.q-u { border-bottom: 4px solid currentColor; padding-bottom: 1px; }
.q-guarantee { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-small); color: var(--fg-muted); margin: var(--sp-5) 0 0; justify-content: center; text-align: center; }
.q-guarantee svg { width: 16px; height: 16px; color: var(--accent); flex: none; }

/* ---------- Botões -------------------------------------------------- */
.q-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  width: 100%;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  font-size: var(--fs-body); font-weight: var(--w-bold);
  line-height: 1; text-decoration: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.q-btn svg { width: 18px; height: 18px; }
.q-btn:hover { transform: translateY(-1px); }
.q-btn--primary { background: var(--accent); color: var(--branco); box-shadow: var(--shadow-md); }
.q-btn--primary:hover { box-shadow: var(--shadow-lg); }
.q-btn--white { background: var(--branco); color: var(--imperial-blue); box-shadow: var(--shadow-md); }
.q-btn--lg { padding: var(--sp-5) var(--sp-6); font-size: var(--fs-lead); }
.q-btn.is-loading { opacity: 0.7; pointer-events: none; }
.q-btn-row { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); }

/* ---------- Rodapé -------------------------------------------------- */
.quiz-foot { width: 100%; max-width: var(--quiz-max); margin: 0 auto; padding: var(--sp-6) var(--sp-4) var(--sp-7); text-align: center; }
.quiz-foot p { font-size: 12px; color: var(--fg-muted); line-height: 1.5; margin: 0; }
.quiz-foot a { color: var(--fg-muted); }

@media (min-width: 560px) {
  .quiz-stage { padding-top: var(--sp-7); }
  .q-btn-row { flex-direction: row; }
  .q-btn-row .q-btn { width: auto; flex: 1; }
}

/* ========================================================================
   M2 — componentes novos
   ======================================================================== */

/* Capa como 1ª pergunta */
.q-cover__q {
  margin: var(--sp-6) 0 var(--sp-4);
  font-size: var(--fs-h3); font-weight: var(--w-bold);
  color: var(--fg-on-dark); line-height: var(--lh-snug);
}
.q-cover__opts { margin-top: 0; }
.q-opt--cover { box-shadow: var(--shadow-md); }
.q-opt__emoji { flex: none; font-size: 22px; line-height: 1; }
.q-opt__go { margin-left: auto; color: var(--fg-muted); flex: none; display: inline-flex; }
.q-opt__go svg { width: 18px; height: 18px; }
.q-opt--cover:hover .q-opt__go { color: var(--accent); }

/* Botão fantasma (CTA secundário sobre claro) */
.q-btn--ghost { background: var(--bg-elevated); border-color: var(--border); color: var(--fg-muted); }
.q-btn--ghost:hover { border-color: var(--accent); color: var(--fg); }

/* Projeção da nota (dentro do score, sobre escuro) */
.q-proj { margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid var(--border-on-dark); }
.q-proj__ends { display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: var(--track-tag); color: var(--fg-on-dark-muted); margin-bottom: var(--sp-3); }
.q-proj__ends b { display: block; margin-top: 4px; color: var(--fg-on-dark); font-weight: var(--w-extrabold); font-size: 1.4rem; letter-spacing: -0.02em; }
.q-proj__ends span:last-child { text-align: right; }
.q-proj__bar { position: relative; height: 3px; border-radius: var(--r-pill); background: rgba(255,255,255,0.16); }
.q-proj__bar i { display: block; height: 100%; border-radius: var(--r-pill); background: var(--branco); }
.q-proj__bar u { position: absolute; top: -4px; width: 2px; height: 11px; background: var(--branco); transform: translateX(-50%); opacity: .7; }

/* Raio-x dos 5 pilares — barra contínua imperial, sem semáforo */
.q-pilares { list-style: none; margin: var(--sp-5) 0 0; padding: 0; }
.q-pilar { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: var(--sp-3) var(--sp-4); padding: var(--sp-5) 0; border-top: 1px solid var(--border); }
.q-pilar:first-child { border-top: none; }
.q-pilar__ic { color: var(--accent); display: inline-flex; }
.q-pilar__ic svg { width: 20px; height: 20px; }
.q-pilar__name { font-size: var(--fs-body); font-weight: var(--w-semibold); line-height: 1.2; }
.q-pilar__lvl { font-size: 11px; font-weight: var(--w-bold); text-transform: uppercase; letter-spacing: .08em; color: var(--fg-muted); white-space: nowrap; }
.q-pilar__meter { grid-column: 2 / 4; height: 3px; background: rgba(1,23,70,.10); border-radius: var(--r-pill); margin-top: var(--sp-3); }
.q-pilar__meter i { display: block; height: 100%; border-radius: var(--r-pill); background: var(--accent); }
.q-pilar.is-fraco .q-pilar__meter i { width: 22%; background: var(--imperial-300); }
.q-pilar.is-fraco .q-pilar__lvl { color: var(--imperial-300); }
.q-pilar.is-medio .q-pilar__meter i { width: 58%; }
.q-pilar.is-forte .q-pilar__meter i { width: 100%; }
.q-pilar.is-forte .q-pilar__lvl { color: var(--accent); }

/* Loader mais longo */
.q-loading__keep { font-size: var(--fs-body); font-weight: var(--w-bold); color: var(--fg); margin: 0 0 var(--sp-4); }
.q-loadbar { width: 100%; max-width: 320px; height: 8px; margin: 0 auto var(--sp-5); border-radius: var(--r-pill); background: var(--line-light); overflow: hidden; }
.q-loadbar i { display: block; height: 100%; width: 6%; border-radius: var(--r-pill); background: var(--accent); transition: width linear; }

/* Prova social do resultado — números grandes, editorial */
.q-proof__title { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 12px; font-weight: var(--w-semibold); text-transform: uppercase; letter-spacing: var(--track-tag); color: var(--fg-muted); margin: 0 0 var(--sp-5); }
.q-proof__title::before { content: ""; width: 24px; height: 1px; background: currentColor; opacity: .5; flex: none; }
.q-proof__stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.q-proof__stat { background: none; border: none; box-shadow: none; padding: 0; text-align: left; }
.q-proof__stat svg { display: none; }
.q-proof__stat b { display: block; font-size: clamp(2.25rem, 9vw, 3rem); font-weight: var(--w-black); color: var(--imperial-blue); line-height: 1; letter-spacing: -0.03em; }
.q-proof__stat span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-muted); margin-top: var(--sp-2); line-height: 1.3; }

/* Reframe de preço */
.q-price__reframe { text-align: center; font-size: var(--fs-small); color: var(--fg-muted); margin: var(--sp-4) 0 0; font-style: italic; line-height: 1.5; }
.q-trust { text-align: center; }
.q-trust__pay { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 13px; color: var(--fg-muted); margin: 0; }
.q-trust__pay svg { width: 15px; height: 15px; }

/* ========================================================================
   Auditoria — componentes novos (consent inline, agenda, FAQ, pessoas, contador)
   ======================================================================== */

/* Consent — erro inline (substitui o alert nativo) */
.q-consent__err { display: none; color: #b3261e; font-size: var(--fs-small); margin: calc(var(--sp-4) * -1) 0 var(--sp-5); }
.q-consent__err.is-show { display: block; }

/* Agenda do dia — numerada, editorial */
.q-agenda { list-style: none; margin: var(--sp-5) 0 0; padding: 0; }
.q-agenda__item { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-5); align-items: baseline; padding: var(--sp-5) 0; border-top: 1px solid var(--border); }
.q-agenda__item:first-child { border-top: none; }
.q-agenda__n { font-size: var(--fs-small); font-weight: var(--w-bold); color: var(--imperial-300); font-variant-numeric: tabular-nums; letter-spacing: .05em; }
.q-agenda__txt { display: block; }
.q-agenda__txt b { font-size: var(--fs-body); font-weight: var(--w-bold); line-height: 1.25; }
.q-agenda__txt span { display: block; font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.4; margin-top: 2px; }

/* FAQ — minimal, fios */
.q-faq { margin-top: var(--sp-5); }
.q-faq__item { border-top: 1px solid var(--border); background: none; border-radius: 0; }
.q-faq__item:last-child { border-bottom: 1px solid var(--border); }
.q-faq__item summary { cursor: pointer; list-style: none; padding: var(--sp-5) 0; font-size: var(--fs-body); font-weight: var(--w-semibold); display: flex; justify-content: space-between; gap: var(--sp-4); }
.q-faq__item summary::-webkit-details-marker { display: none; }
.q-faq__item summary::after { content: "+"; color: var(--accent); font-weight: var(--w-bold); flex: none; }
.q-faq__item[open] summary::after { content: "–"; }
.q-faq__item p { padding: 0 0 var(--sp-5); margin: 0; font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.55; max-width: 48ch; }

/* Palestrantes / depoimentos — fios + foto p&b */
.q-people { list-style: none; margin: var(--sp-5) 0 0; padding: 0; }
.q-person { display: grid; grid-template-columns: 48px 1fr; gap: var(--sp-4); align-items: center; padding: var(--sp-4) 0; border-top: 1px solid var(--border); }
.q-person:first-child { border-top: none; }
.q-person__img { width: 48px; height: 48px; border-radius: var(--r-pill); object-fit: cover; filter: grayscale(1) contrast(1.02); }
.q-person__img--ph { display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--imperial-blue) 8%, var(--bg-elevated)); color: var(--accent); filter: none; }
.q-person__img--ph svg { width: 22px; height: 22px; }
.q-person__txt { display: block; }
.q-person__txt b { font-size: var(--fs-small); font-weight: var(--w-bold); }
.q-person__txt span { display: block; font-size: 13px; color: var(--fg-muted); line-height: 1.4; }

/* Contador do lote (sobre a oferta escura) */
.q-countdown { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); background: rgba(0,0,0,0.22); border-radius: var(--r-md); padding: var(--sp-4); margin: 0 0 var(--sp-5); }
.q-countdown__label { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: 13px; color: var(--fg-on-dark-muted); }
.q-countdown__label svg { width: 15px; height: 15px; color: #ffb454; }
.q-countdown__clock { font-size: var(--fs-h3); font-weight: var(--w-extrabold); color: var(--fg-on-dark); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }

/* Título grande de seção (transição para a apresentação da imersão) */
.q-section-title { font-size: var(--fs-h2); font-weight: var(--w-extrabold); line-height: var(--lh-snug); letter-spacing: var(--track-tight); margin: var(--sp-4) 0 0; text-align: center; text-wrap: balance; }

/* Pontos de atenção — cards diretos com ícone (agrupados por fios) */
.q-risks { list-style: none; margin: var(--sp-4) 0 0; padding: 0; display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--r-md); overflow: hidden; }
.q-risk { display: grid; grid-template-columns: 20px 1fr; gap: var(--sp-4); align-items: start; padding: var(--sp-5); background: var(--bg-elevated); }
.q-risk__ic { color: var(--accent); margin-top: 2px; }
.q-risk__ic svg { width: 18px; height: 18px; }
.q-risk b { display: block; font-size: var(--fs-body); font-weight: var(--w-bold); }
.q-risk span { font-size: var(--fs-small); color: var(--fg-muted); line-height: 1.4; }

/* CTA fixo — aparece só depois que a oferta entra na tela */
.q-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--border); padding: var(--sp-3) var(--sp-4);
  transform: translateY(120%); transition: transform var(--dur) var(--ease); }
.q-sticky.is-visible { transform: none; }
.q-sticky__in { max-width: var(--quiz-max); margin: 0 auto; }
.q-sticky .q-btn { padding: var(--sp-4) var(--sp-6); }
.q-sticky small { display: block; text-align: center; font-size: 11px; color: var(--fg-muted); margin-top: 6px; letter-spacing: .03em; }
@media (prefers-reduced-motion: reduce) { .q-sticky { transition: none; } }
