/* ============================================================
   CARLOS TELES — Teste de Arquétipos
   Design idêntico ao carlosteles.com.br
   Paleta: #1e2235 · #141726 · #C9A84C · #F7F4EF
   Tipografia: Playfair Display · Cormorant Garamond · Inter
   ============================================================ */

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

:root {
  /* — cores principais — */
  --navy:        #1e2235;
  --navy-deep:   #141726;
  --navy-mid:    #252a42;
  --navy-light:  #2e3450;
  --gold:        #C9A84C;
  --gold-light:  #E0BF72;
  --gold-dark:   #A88830;
  --gold-pale:   rgba(201,168,76,.10);
  --gold-glow:   rgba(201,168,76,.25);
  --off-white:   #F7F4EF;
  --white:       #FFFFFF;

  /* — texto — */
  --text-body:   rgba(255,255,255,.88);
  --text-dim:    rgba(255,255,255,.65);
  --text-muted:  rgba(255,255,255,.40);
  --text-dark:   #1e2235;
  --text-dark-dim: rgba(30,34,53,.65);

  /* — legados (compatibilidade com PHP) — */
  --black:       #141726;
  --graphite:    #252a42;
  --gray-mid:    #D8D3CA;
  --warm-white:  #F7F4EF;
  --text:        #1e2235;
  --text-light:  rgba(30,34,53,.50);
  --border:      rgba(30,34,53,.14);
  --border-dark: rgba(255,255,255,.08);
  --error:       #C53030;

  /* — tipografia — */
  --serif:  'Playfair Display', Georgia, serif;
  --ele:    'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  /* — geometria — */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* — sombras — */
  --shadow:      0 8px 32px rgba(0,0,0,.30);
  --shadow-lg:   0 24px 72px rgba(0,0,0,.45);
  --shadow-gold: 0 8px 40px rgba(201,168,76,.22);

  /* — animação — */
  --ease:       cubic-bezier(.4,0,.2,1);
  --transition: .22s cubic-bezier(.4,0,.2,1);

  /* — layout — */
  --brand:       #C9A84C;
  --brand-light: #E0BF72;
  --brand-bg:    rgba(201,168,76,.08);
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }
h1 { font-family: var(--serif); font-size: clamp(2rem,5.5vw,3.4rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-family: var(--serif); font-size: clamp(1.5rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-family: var(--serif); font-size: clamp(1rem,2.2vw,1.35rem); font-weight: 700; }
p  { line-height: 1.72; }
a  { color: var(--gold); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: .78; }

/* italic accent line — igual ao site */
em.accent { font-family: var(--ele); font-style: italic; color: var(--gold); font-weight: 400; }

.container       { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.hidden      { display: none !important; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  padding: 14px 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container,
.site-header .container--wide {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--sans);
  font-size: 1rem; font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: .01em;
}
.logo__monogram {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 800;
  color: var(--navy-deep);
  font-family: var(--serif);
  flex-shrink: 0;
}
.logo__sub {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-top: 2px;
  font-family: var(--sans); font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   BOTÕES — exatamente como o site
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: .9rem; font-weight: 700;
  padding: 15px 34px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover  { background: var(--gold-light); color: var(--navy-deep); box-shadow: 0 12px 48px rgba(201,168,76,.35); }

.btn--dark {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: var(--white);
}
.btn--dark:hover { border-color: rgba(255,255,255,.55); color: var(--white); }

.btn--outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold-pale); }

.btn--outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.22);
  color: var(--white);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.55); }

/* compatibilidade */
.btn--primary { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-light); color: var(--navy-deep); }

.btn--sm  { font-size: .8rem;  padding: 9px 20px; }
.btn--lg  { font-size: .97rem; padding: 17px 40px; }
.btn--xl  { font-size: 1.02rem; padding: 19px 46px; }
.btn--full { width: 100%; justify-content: center; }
.btn--danger { background: var(--error); color: white; }

/* link-arrow — "VER SOLUÇÃO →" */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; opacity: 1; }

/* ══════════════════════════════════════════════════════
   SEÇÃO — estrutura base
══════════════════════════════════════════════════════ */
.section { padding: clamp(60px,9vw,96px) 0; }

.section--dark  { background: var(--navy); }
.section--deep  { background: var(--navy-deep); }
.section--gray  { background: var(--navy-mid); }
.section--cream { background: var(--off-white); }
.section--mid   { background: #ede9e0; }

/* pill label — "● MENTORIA & CONSULTORIA · 22+ ANOS" */
.section__pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.section__pill--gold {
  border-color: rgba(201,168,76,.4);
  color: var(--gold);
}
.section__pill--dark {
  border: 1px solid rgba(30,34,53,.22);
  color: rgba(30,34,53,.55);
}
.section__pill--dot::before {
  content: '●'; font-size: .45rem;
  color: var(--gold); vertical-align: middle;
}

/* overline legado */
.section__overline {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}

.section__title--light { color: var(--white); }
.section__title--light em { font-family: var(--ele); font-style: italic; color: var(--gold-light); font-weight: 400; }

.section__sub  { max-width: 560px; margin: 12px auto 0; font-size: .95rem; }
.section__sub--light { color: var(--text-dim); }

.divider-gold { width: 36px; height: 1px; background: var(--gold); margin: 20px auto; opacity: .5; }

/* ══════════════════════════════════════════════════════
   HERO — INDEX
══════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px,12vw,130px) 24px clamp(90px,14vw,150px);
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(201,168,76,.18) 0%, transparent 55%);
  pointer-events: none;
}
/* textura sutil de pontos */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: .4;
}

.hero__overline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 100px;
  padding: 6px 18px;
  color: var(--gold);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 26px;
  position: relative; z-index: 1;
}
.hero__overline::before { content: '●'; font-size: .4rem; vertical-align: middle; }

.hero h1 {
  color: var(--white); margin-bottom: 14px;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-family: var(--ele); font-style: italic;
  color: var(--gold-light); font-weight: 400;
}
.hero__sub {
  font-size: clamp(.92rem,2.2vw,1.05rem);
  color: var(--text-dim);
  max-width: 520px; margin: 0 auto 36px;
  position: relative; z-index: 1;
}
.hero__sub strong { color: var(--white); }

.hero__stats {
  display: flex; gap: 6px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
  position: relative; z-index: 1;
}
.hero__stat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .8rem; color: var(--text-dim);
}
.hero__stat-pill .ico { color: var(--gold); font-size: .75rem; }

.hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* legado */
.hero__divider { width: 34px; height: 1px; background: var(--gold); margin: 22px auto; opacity: .4; }
.hero__meta { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 1; }
.hero__meta-item { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.hero__meta-item .val { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero__meta-item .lbl { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════ */
.card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}
.card--light {
  background: var(--white);
  border: 1px solid rgba(30,34,53,.1);
  color: var(--text-dark);
}
.card--dark { background: var(--navy-mid); border-color: rgba(255,255,255,.06); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 36px; }

/* feature card — como os cards "Sou empresa / Sou profissional" */
.feature-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 44px 36px 36px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.3); }
.feature-card__icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 20px; color: var(--gold);
}
.feature-card__title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.feature-card__desc  { font-size: .88rem; line-height: 1.7; color: var(--text-dim); margin-bottom: 18px; }

/* feature card na seção clara */
.feature-card--light {
  background: var(--white);
  border: 1px solid rgba(30,34,53,.1);
}
.feature-card--light .feature-card__title { color: var(--text-dark); }
.feature-card--light .feature-card__desc  { color: var(--text-dark-dim); }

/* ══════════════════════════════════════════════════════
   STEPS — passos do quiz
══════════════════════════════════════════════════════ */
.steps { max-width: 560px; margin: 36px auto 0; }
.step { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.step:last-child { border-bottom: none; }
.step--light { border-bottom-color: rgba(30,34,53,.1); }
.step__num {
  flex-shrink: 0; width: 38px; height: 38px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--gold);
}
.step__title { font-size: .95rem; font-weight: 700; margin-bottom: 3px; color: var(--white); }
.step__desc  { font-size: .86rem; color: var(--text-dim); }
.step--light .step__title { color: var(--text-dark); }
.step--light .step__desc  { color: var(--text-dark-dim); }

/* ══════════════════════════════════════════════════════
   FORM LEAD — index.php
══════════════════════════════════════════════════════ */
.lead-form {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: clamp(28px,5vw,48px);
  box-shadow: var(--shadow-lg);
  max-width: 540px; margin: 0 auto;
}
.lead-form--light {
  background: var(--white);
  border: 1px solid rgba(30,34,53,.1);
}
.lead-form__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; margin-bottom: 5px; color: var(--white); }
.lead-form--light .lead-form__title { color: var(--text-dark); }
.lead-form__sub { font-size: .88rem; color: var(--text-dim); margin-bottom: 26px; }
.lead-form--light .lead-form__sub { color: var(--text-dark-dim); }

.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-size: .73rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 7px; color: var(--text-dim);
}
.lead-form--light .form-group label { color: var(--text-dark); }
.form-group label .req { color: var(--gold); }
.form-group label .opt { font-weight: 400; text-transform: none; color: var(--text-muted); font-size: .75rem; }

.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  font-size: .93rem; font-family: var(--sans);
  color: var(--white); background: rgba(255,255,255,.05);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.14); }
.form-input.error { border-color: var(--error); }

.lead-form--light .form-input {
  color: var(--text-dark); background: var(--off-white);
  border-color: rgba(30,34,53,.18);
}
.lead-form--light .form-input::placeholder { color: rgba(30,34,53,.38); }
.lead-form--light .form-input:focus { border-color: var(--gold); background: white; }

.form-error { color: var(--error); font-size: .78rem; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-privacy { font-size: .74rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.lead-form--light .form-privacy { color: var(--text-light); }

/* ══════════════════════════════════════════════════════
   QUIZ
══════════════════════════════════════════════════════ */
body.page-quiz { background: var(--navy); }

/* garante fundo escuro no quiz independente da classe do body */
.quiz-wrap {
  max-width: 700px; margin: 0 auto; padding: 40px 24px 64px;
  background: var(--navy);
  min-height: calc(100vh - 60px);
}

.progress-bar-wrap { background: rgba(255,255,255,.08); border-radius: 100px; height: 3px; margin-bottom: 10px; }
.progress-bar-fill { height: 100%; border-radius: 100px; background: var(--gold); transition: width .5s var(--ease); }
.progress-label { display: flex; justify-content: space-between; font-size: .74rem; color: var(--text-muted); margin-bottom: 28px; letter-spacing: .04em; }

.quiz-block { display: none; }
.quiz-block.active { display: block; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.quiz-block__label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.35); border-radius: 100px;
  padding: 5px 16px;
  color: var(--gold); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}

.question-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px; margin-bottom: 12px;
  transition: border-color var(--transition);
}
.question-item.answered { border-color: rgba(201,168,76,.4); }
.question-item.error-unanswered { border-color: var(--error); background: rgba(197,48,48,.06); }

.question-item__num { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.question-item__text { font-size: .95rem; font-weight: 600; line-height: 1.5; margin-bottom: 16px; color: var(--white); }

.likert { display: flex; gap: 6px; flex-wrap: wrap; }
.likert-option { flex: 1; min-width: 52px; }
.likert-option input[type="radio"] { display: none; }
.likert-option label {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  padding: 9px 4px; cursor: pointer; font-size: .7rem; font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition); text-align: center; line-height: 1.3; user-select: none;
}
.likert-option label:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-pale); }
.likert-option input:checked + label { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-gold); }
.likert-option label .score-val { font-size: 1.1rem; font-weight: 800; }
.likert-option label .score-txt { font-size: .6rem; line-height: 1.2; }
.likert-legend { display: flex; justify-content: space-between; font-size: .67rem; color: var(--text-muted); margin-top: 8px; }

.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }

/* ══════════════════════════════════════════════════════
   RESULTADO — HERO
══════════════════════════════════════════════════════ */
.resultado-wrap { max-width: 860px; margin: 0 auto; padding-bottom: 0; }

.result-hero {
  background: var(--navy-deep);
  padding: clamp(56px,9vw,90px) 32px clamp(60px,10vw,100px);
  text-align: center; position: relative; overflow: hidden;
}
.result-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -5%, rgba(201,168,76,.22) 0%, transparent 58%);
  pointer-events: none;
}
.result-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none; opacity: .5;
}

.result-hero__overline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.35); border-radius: 100px;
  padding: 5px 16px;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.result-hero__nome {
  font-size: .8rem; color: var(--text-muted); letter-spacing: .06em; margin-bottom: 26px;
  position: relative; z-index: 1;
}
.result-hero__emoji { font-size: 3.8rem; display: block; margin-bottom: 10px; position: relative; z-index: 1; }
.result-hero__rank-label {
  font-size: .63rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 8px; display: block;
  position: relative; z-index: 1;
}
.result-hero__name {
  font-family: var(--serif); font-size: clamp(2.2rem,7vw,4rem); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 12px;
  position: relative; z-index: 1;
}
.result-hero__slogan {
  font-family: var(--ele); font-size: 1.1rem; font-style: italic;
  color: var(--text-dim); position: relative; z-index: 1;
}
.result-hero__divider {
  width: 36px; height: 1px; background: var(--gold);
  margin: 22px auto; opacity: .4; position: relative; z-index: 1;
}
.result-hero__desc {
  font-size: .93rem; color: var(--text-dim);
  max-width: 500px; margin: 0 auto;
  position: relative; z-index: 1; line-height: 1.72;
}

/* ══════════════════════════════════════════════════════
   TOP 3 — PREVIEW GRATUITO
══════════════════════════════════════════════════════ */
.top3-preview { background: var(--off-white); padding: 52px 32px 44px; }
.top3-preview > h2 { font-family: var(--serif); text-align: center; margin-bottom: 6px; color: var(--text-dark); }
.top3-preview > .sub { text-align: center; font-size: .9rem; color: var(--text-dark-dim); margin-bottom: 32px; }

.top3-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.top3-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px 16px; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.top3-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.top3-item--1 { border-top: 3px solid var(--gold); }
.top3-item--2 { border-top: 3px solid rgba(255,255,255,.2); }
.top3-item--3 { border-top: 3px solid rgba(255,255,255,.1); }
.top3-item__medal  { font-size: 1.2rem; margin-bottom: 6px; }
.top3-item__rank   { font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 6px; }
.top3-item__emoji  { font-size: 2rem; margin-bottom: 8px; display: block; }
.top3-item__name   { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.top3-item__slogan { font-family: var(--ele); font-size: .8rem; color: var(--text-muted); margin-top: 4px; font-style: italic; }

/* ══════════════════════════════════════════════════════
   PAYWALL
══════════════════════════════════════════════════════ */
.paywall-section { padding: 0 32px 52px; background: var(--off-white); }

.locked-preview {
  position: relative; overflow: hidden;
  border: 1px solid rgba(30,34,53,.1);
  border-radius: var(--radius);
  background: var(--navy-mid);
  margin-bottom: 0;
}
.locked-preview__inner {
  padding: 32px; filter: blur(6px);
  pointer-events: none; user-select: none; opacity: .65;
}
.locked-preview__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(247,244,239,.7) 35%, var(--off-white) 68%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 0 24px 36px; text-align: center;
}
.locked-preview__overlay h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 7px; color: var(--text-dark); }
.locked-preview__overlay p  { font-size: .86rem; max-width: 340px; color: var(--text-dark-dim); }

/* blocos placeholder — sem conteúdo real */
.lp-block { margin-bottom: 20px; }
.lp-label {
  height: 10px; width: 140px; border-radius: 100px;
  background: rgba(30,34,53,.12); margin-bottom: 12px;
}
.lp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lp-tag {
  height: 26px; border-radius: 6px;
  background: rgba(30,34,53,.09);
  display: inline-block;
}
.lp-tag--gold { background: rgba(201,168,76,.18); }
.lp-line {
  height: 12px; width: 100%; border-radius: 100px;
  background: rgba(30,34,53,.08); margin-bottom: 8px;
}
/* animação shimmer */
.lp-label, .lp-tag, .lp-line {
  background-size: 200% 100%;
  animation: lpShimmer 1.6s ease-in-out infinite;
}
@keyframes lpShimmer {
  0%   { opacity: .5; }
  50%  { opacity: .9; }
  100% { opacity: .5; }
}

/* purchase card — exatamente como o site */
.purchase-card {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: clamp(36px,5vw,56px); text-align: center;
  margin: 30px 0;
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
}
.purchase-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(201,168,76,.22) 0%, transparent 55%);
  pointer-events: none;
}
.purchase-card::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none; opacity: .5;
}
.purchase-card__overline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,.35); border-radius: 100px;
  padding: 5px 16px;
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.purchase-card h2 {
  font-family: var(--serif); color: var(--white);
  margin-bottom: 10px; position: relative; z-index: 1;
}
.purchase-card h2 em { font-family: var(--ele); font-style: italic; color: var(--gold-light); font-weight: 400; }
.purchase-card .sub {
  color: var(--text-dim); font-size: .92rem;
  max-width: 480px; margin: 0 auto 26px;
  position: relative; z-index: 1;
}

.price-display { margin: 24px 0; position: relative; z-index: 1; }
.price-display__value {
  font-family: var(--serif); font-size: clamp(2.8rem,7vw,4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
}
.price-display__once {
  font-size: .72rem; color: var(--text-muted); margin-top: 7px;
  letter-spacing: .1em; text-transform: uppercase;
}

.unlock-list {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 10px; margin: 24px 0 32px; text-align: left;
  position: relative; z-index: 1;
}
.unlock-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--text-body); line-height: 1.5;
}
.unlock-list li .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: .9rem; }
.purchase-guarantee { font-size: .73rem; color: var(--text-muted); margin-top: 14px; letter-spacing: .04em; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════
   RESULTADO COMPLETO (desbloqueado)
══════════════════════════════════════════════════════ */
.result-full { padding: 52px 32px; background: var(--off-white); }

.archetype-full-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.archetype-full-card__header { padding: 28px 28px 24px; color: white; position: relative; }
.archetype-full-card__header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.2) 0%, transparent 60%);
  pointer-events: none;
}
.archetype-full-card__rank   { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; opacity: .65; margin-bottom: 8px; font-weight: 700; }
.archetype-full-card__emoji  { font-size: 2.8rem; margin-bottom: 10px; display: block; }
.archetype-full-card__name   { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.archetype-full-card__slogan { font-family: var(--ele); font-size: .92rem; opacity: .75; margin-top: 5px; font-style: italic; }
.archetype-full-card__body   { padding: 26px 28px; background: var(--navy-mid); }
.archetype-full-card__desc   { font-size: .91rem; color: var(--text-dim); margin-bottom: 22px; line-height: 1.75; }

.info-block { margin-bottom: 18px; }
.info-block__title {
  font-size: .66rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.info-block__text { font-size: .9rem; color: var(--text-body); line-height: 1.65; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .74rem; font-weight: 600; padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  color: var(--text-dim); border: 1px solid rgba(255,255,255,.1);
}
.tag--gold  { background: rgba(201,168,76,.12); color: var(--gold-light); border-color: rgba(201,168,76,.25); }
.tag--green { background: rgba(16,185,129,.1); color: #6ee7b7; border-color: rgba(16,185,129,.2); }
.tag--red   { background: rgba(197,48,48,.1); color: #fca5a5; border-color: rgba(197,48,48,.2); }

/* scores */
.scores-section { padding: 44px 32px; background: var(--navy); }
.scores-section h3 { font-family: var(--serif); margin-bottom: 24px; color: var(--white); }
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.score-row__name { width: 130px; font-size: .82rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-dim); }
.score-row__bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
.score-row__bar { height: 100%; border-radius: 100px; transition: width 1.2s var(--ease); }
.score-row__val { width: 28px; text-align: right; font-size: .8rem; font-weight: 700; color: var(--text-muted); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   SEÇÃO MENTOR — CARLOS TELES
══════════════════════════════════════════════════════ */
.mentor-section {
  background: var(--navy-deep);
  padding: clamp(64px,10vw,100px) 24px;
  position: relative; overflow: hidden;
}
.mentor-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(201,168,76,.12) 0%, transparent 52%);
  pointer-events: none;
}
.mentor-section::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none; opacity: .4;
}

/* ── aviso honesto ── */
.mentor-aviso {
  max-width: 780px; margin: 0 auto 52px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: var(--radius); padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  position: relative; z-index: 1;
}
.mentor-aviso__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.mentor-aviso__body strong {
  display: block; font-size: .95rem; color: var(--white);
  font-family: var(--sans); font-weight: 700; margin-bottom: 8px; line-height: 1.4;
}
.mentor-aviso__body p { font-size: .88rem; color: var(--text-dim); line-height: 1.78; margin: 0; }

/* ── cabeçalho centralizado ── */
.mentor-header {
  max-width: 760px; margin: 0 auto 56px;
  text-align: center; position: relative; z-index: 1;
}
.mentor-header h2 {
  font-family: var(--serif); color: var(--white);
  font-size: clamp(1.6rem,4vw,2.4rem);
  line-height: 1.18; margin-bottom: 22px;
}
.mentor-header h2 em { font-family: var(--ele); font-style: italic; color: var(--gold-light); font-weight: 400; }

/* credentials grid */
.credentials { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 28px 0; }
@media (max-width: 620px) { .credentials { grid-template-columns: 1fr 1fr; } }
.credential-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm); padding: 16px 14px; text-align: center;
}
.credential-item .cred-val {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.credential-item .cred-lbl {
  font-size: .63rem; letter-spacing: .08em; color: var(--text-muted);
  margin-top: 4px; text-transform: uppercase;
}

/* ── grade de produtos ── */
.produtos-mentor {
  max-width: 980px; margin: 0 auto 48px;
  display: grid; grid-template-columns: 1fr;
  gap: 28px; align-items: start;
  position: relative; z-index: 1;
}
@media (min-width: 780px) { .produtos-mentor { grid-template-columns: 380px 1fr; gap: 36px; } }

/* card Bússola (destaque) */
.produto-card--destaque {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.30);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
}
.produto-card__badge {
  display: inline-flex; align-items: center;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); border-radius: 100px; padding: 4px 14px;
  font-size: .62rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 18px;
}
.produto-card__emoji { font-size: 2.4rem; margin-bottom: 10px; line-height: 1; }
.produto-card__nome {
  font-family: var(--serif); color: var(--white);
  font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; line-height: 1.1;
}
.produto-card__desc { font-size: .88rem; color: var(--text-dim); line-height: 1.78; margin-bottom: 22px; }
.produto-card__list { list-style: none; margin-bottom: 28px; flex: 1; }
.produto-card__list li {
  font-size: .86rem; color: var(--text-dim); padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; gap: 10px; align-items: flex-start;
}
.produto-card__list li:last-child { border-bottom: none; }
.produto-card__list li span { color: var(--gold); flex-shrink: 0; }

/* coluna outros produtos */
.produtos-outros { display: flex; flex-direction: column; gap: 12px; }
.produtos-outros__titulo {
  font-size: .64rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 700; margin-bottom: 4px;
}
.produto-chip-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 18px 20px;
  transition: border-color var(--transition), background var(--transition);
}
.produto-chip-card:hover { border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.04); }
.produto-chip-card__header { display: flex; align-items: baseline; gap: 10px; margin-bottom: 7px; }
.produto-chip-card__nome { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.produto-chip-card__prazo {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  border-radius: 100px; padding: 2px 10px; font-weight: 700;
}
.produto-chip-card__desc { font-size: .83rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 10px; }
.produto-chip-card__link {
  font-size: .78rem; color: var(--gold); text-decoration: none; font-weight: 600;
  transition: color var(--transition);
}
.produto-chip-card__link:hover { color: var(--gold-light); text-decoration: underline; }

/* botões de contato */
.mentor-contato {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center; text-align: center;
  position: relative; z-index: 1;
}
@media (min-width: 540px) { .mentor-contato { flex-direction: row; justify-content: center; } }

/* WhatsApp button */
.btn--whatsapp {
  background: #25D366; color: #fff;
  border: none; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.28);
}
.btn--whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.38); }

/* legados (compatibilidade com código antigo que ainda referencia) */
.mentor-grid { display: contents; }
.mentor-text h2 { font-family: var(--serif); color: var(--white); margin-bottom: 18px; }
.mentor-text h2 em { font-family: var(--ele); font-style: italic; color: var(--gold-light); font-weight: 400; }

/* ══════════════════════════════════════════════════════
   SHARE SECTION
══════════════════════════════════════════════════════ */
.share-section { background: var(--navy); padding: 52px 32px; text-align: center; }
.share-section h3 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 10px; color: var(--white); }
.share-section h3 em { font-family: var(--ele); font-style: italic; color: var(--gold-light); font-weight: 400; }
.share-section p { font-size: .92rem; color: var(--text-dim); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.social-handles { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.social-handle {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; border-radius: var(--radius-sm); padding: 10px 18px;
  transition: border-color var(--transition), background var(--transition);
}
.social-handle:hover { border-color: var(--gold); background: rgba(201,168,76,.08); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   ADMIN
══════════════════════════════════════════════════════ */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 30px 20px; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 26px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(30,34,53,.12);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card {
  background: white; border: 1px solid rgba(30,34,53,.1);
  border-radius: var(--radius); padding: 20px; text-align: center; box-shadow: var(--shadow);
}
.stat-card__value { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-card__label { font-size: .78rem; color: var(--text-light); margin-top: 5px; }

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(30,34,53,.12); }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
thead { background: var(--off-white); }
th {
  padding: 10px 16px; text-align: left; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em; color: var(--text-light);
  border-bottom: 1px solid rgba(30,34,53,.1); white-space: nowrap;
}
td { padding: 13px 16px; border-bottom: 1px solid rgba(30,34,53,.07); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f0ede6; }

.badge {
  display: inline-block; font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(201,168,76,.12); color: var(--gold-dark);
}
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 18px; }
.filter-bar label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 4px; }
.filter-bar input, .filter-bar select {
  border: 1.5px solid rgba(30,34,53,.15); border-radius: var(--radius-sm);
  padding: 9px 12px; font-size: .88rem; outline: none;
  font-family: var(--sans); background: white; color: var(--text-dark);
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--gold); }
.alert-error {
  background: rgba(197,48,48,.07); border: 1px solid rgba(197,48,48,.25);
  color: var(--error); font-size: .86rem;
  border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 14px;
}

.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy-deep); padding: 20px; }
.login-card {
  background: var(--navy-mid); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: clamp(32px,5vw,48px);
  width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); text-align: center;
}
.login-card__logo { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); letter-spacing: .04em; margin-bottom: 6px; }
.login-card h1 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 5px; color: var(--white); }
.login-card .sub { font-size: .83rem; color: var(--text-dim); margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: var(--navy-deep);
  padding: 30px 0; text-align: center;
}
.site-footer p { font-size: .74rem; color: var(--text-muted); line-height: 2; }
.site-footer a { color: var(--gold); }
.footer-logo { font-family: var(--serif); font-size: .97rem; color: var(--text-dim); margin-bottom: 6px; display: block; }

/* ══════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .top3-list { grid-template-columns: 1fr; }
  .top3-item { display: flex; align-items: center; gap: 14px; text-align: left; padding: 16px; }
  .top3-item__emoji { font-size: 1.6rem; margin-bottom: 0; }

  .result-hero, .result-full, .paywall-section, .top3-preview,
  .scores-section, .share-section { padding-left: 18px; padding-right: 18px; }
  .mentor-section { padding-left: 18px; padding-right: 18px; }

  .credentials { grid-template-columns: 1fr 1fr; }
  .purchase-card { padding: 28px 18px; }
  .unlock-list { grid-template-columns: 1fr; }
  .archetype-full-card__body, .archetype-full-card__header { padding: 18px 16px; }
  .bussola-card { padding: 20px 16px; }
  .produto-card--destaque { padding: 24px 18px; }
  .mentor-aviso { flex-direction: column; gap: 10px; padding: 18px 16px; }
  .mentor-contato { flex-direction: column; }
  .likert { gap: 4px; }
  .likert-option label { padding: 7px 2px; font-size: .62rem; }
  .quiz-nav { flex-direction: column; }
  .quiz-nav .btn { width: 100%; }
  .locked-preview__inner { padding: 16px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 340px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; align-items: center; }
}

@media print {
  .site-header, .site-footer, .paywall-section, .mentor-section,
  .share-section, .no-print, .btn, .scores-section { display: none !important; }
  .result-hero { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  body { background: white; }
}
