/* ==========================================================================
   Mentoria Nascida para Brilhar — Vet Empreenda
   Paleta: vinho maduro derivado do rosa da marca, tom mais sóbrio/premium.
   ========================================================================== */

:root {
  /* cores base */
  --cream: #FBF3ED;
  --cream-soft: #F3E4DA;
  --wine-900: #3A0E1D;
  --wine-800: #4F1428;
  --wine-700: #74203E;
  --wine-600: #932A4E;
  --rose-400: #C1567A;
  --rose-300: #D888A0;
  --gold-500: #C79A48;
  --gold-300: #E4C784;
  --ink-900: #2B1219;
  --ink-700: #4A2A33;
  --ink-500: #7A5B63;
  --white: #FFFFFF;

  /* tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* layout */
  --container-w: 1120px;
  --container-narrow-w: 760px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 50px -25px rgba(58, 14, 29, 0.45);
  --shadow-card: 0 10px 30px -15px rgba(58, 14, 29, 0.25);
}

/* ---------- reset básico ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--wine-900); }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--wine-900);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow-w); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wine-600);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--gold-300); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: normal;
}
.btn-primary {
  background: var(--wine-700);
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--wine-600); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  border-color: var(--wine-700);
  color: var(--wine-700);
}
.btn-ghost:hover { background: var(--wine-700); color: var(--white); }
.btn-large { padding: 16px 34px; font-size: 17px; }
.btn-small { padding: 9px 18px; font-size: 14px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 237, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58, 14, 29, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-kicker { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-500); }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--wine-900); }
.header-cta { flex-shrink: 0; }

/* ---------- gate (hero + quiz travam o scroll até acabar o quiz) ---------- */
.gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.gate-locked {
  overflow: hidden;
}
html.gate-locked, body.gate-locked {
  height: 100%;
}
body.gate-locked .gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--cream);
}
body.gate-locked .site-header,
body.gate-locked #reveal-content,
body.gate-locked .site-footer {
  display: none;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-title {
  font-size: clamp(30px, 5vw, 48px);
  margin-bottom: 20px;
}
.hero-title .hl {
  color: var(--gold-500);
  font-style: italic;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-700);
  max-width: 620px;
}
.hero-actions { margin-top: 28px; }
.hero-note { margin-top: 12px; font-size: 14px; color: var(--ink-500); }
.hero-glow {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,154,72,0.28) 0%, rgba(199,154,72,0) 70%);
  pointer-events: none;
}

/* ---------- quiz ---------- */
.quiz-section { padding: 12px 0 72px; }
.quiz-container { display: flex; justify-content: center; }
.quiz-card {
  width: 100%;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px 32px;
  position: relative;
}
.quiz-state h2 { font-size: 26px; }
.quiz-intro-text { color: var(--ink-700); margin-bottom: 24px; }

.quiz-progress-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--cream-soft);
  overflow: hidden;
  margin-bottom: 22px;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--wine-700), var(--gold-500));
  border-radius: var(--radius-pill);
  transition: width .35s ease;
}
.quiz-step-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 10px;
}
.quiz-question {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--wine-900);
  margin-bottom: 22px;
}
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--cream-soft);
  background: var(--cream);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
  transition: border-color .15s ease, background-color .15s ease, transform .1s ease;
}
.quiz-option:hover { border-color: var(--rose-300); background: var(--white); }
.quiz-option.is-selected {
  border-color: var(--wine-700);
  background: var(--wine-700);
  color: var(--white);
  transform: scale(0.99);
}
.quiz-option-bullet {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--wine-700);
}
.quiz-option.is-selected .quiz-option-bullet { background: var(--gold-300); border-color: var(--gold-300); }

.quiz-back {
  background: none;
  border: none;
  color: var(--ink-500);
  font-weight: 700;
  font-size: 14px;
  padding: 0;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.quiz-back:hover { color: var(--wine-700); }
.quiz-back:disabled { opacity: 0; pointer-events: none; }

.quiz-loading { text-align: center; padding: 30px 0; }
.quiz-spinner {
  width: 46px;
  height: 46px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 4px solid var(--cream-soft);
  border-top-color: var(--wine-700);
  animation: quiz-spin 0.9s linear infinite;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }
.quiz-loading-text { font-weight: 700; color: var(--wine-800); }

.quiz-result { text-align: left; }
.quiz-result-badge {
  display: inline-block;
  background: var(--cream-soft);
  color: var(--wine-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.quiz-result h2 { font-size: 25px; }
.quiz-result-text { color: var(--ink-700); font-size: 16.5px; }
.quiz-result .btn { margin-top: 8px; }
.quiz-result-hint { margin-top: 14px; font-size: 13.5px; color: var(--ink-500); }

/* ---------- seções genéricas ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream-soft); }
.section-title { font-size: clamp(26px, 4vw, 36px); max-width: 720px; }
.section-lead { font-size: 18px; color: var(--ink-700); max-width: 680px; }

/* ---------- faixa de credibilidade ---------- */
.credibility-strip {
  background: var(--wine-900);
  padding: 18px 0;
}
.credibility-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.credibility-item {
  margin: 0;
  color: rgba(251, 243, 237, 0.85);
  font-size: 14px;
}
.credibility-item strong { color: var(--gold-300); }

/* ---------- contraste (o que não é) ---------- */
.contrast-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
}
.contrast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.contrast-item p { margin: 0; color: var(--ink-700); font-size: 15.5px; }
.contrast-closing {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--wine-900);
  max-width: 640px;
}

/* ---------- roteiro dos 3 meses ---------- */
.roadmap {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.roadmap-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold-500);
}
.roadmap-number {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wine-700);
  background: var(--cream-soft);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.roadmap-item h3 { font-size: 19px; margin-bottom: 8px; }
.roadmap-item p { color: var(--ink-700); font-size: 15.5px; margin: 0; }

/* ---------- feature grid ---------- */
.feature-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--wine-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 18px; margin-bottom: 8px; }
.feature-item p { color: var(--ink-700); font-size: 15.5px; margin: 0; }

/* ---------- chaar ---------- */
.chaar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.chaar-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--wine-900);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.placeholder-copy {
  border: 1px dashed var(--rose-300);
  background: rgba(193, 86, 122, 0.06);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  font-size: 15px;
}
.chaar-avatar--placeholder {
  background: var(--cream-soft);
  color: var(--wine-600);
  border: 1px dashed var(--rose-300);
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}
.chaar-avatar-icon { width: 34px; height: 34px; }
.chaar-avatar-label {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .02em;
}

/* ---------- pra quem é ---------- */
.for-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.for-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.for-card h3 { font-size: 19px; margin-bottom: 16px; }
.for-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 13px;
  font-size: 15.5px;
  color: var(--ink-700);
}
.for-card li:last-child { margin-bottom: 0; }
.for-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 800;
}
.for-card--yes {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(116, 32, 62, 0.12);
}
.for-card--yes li::before { content: "✓"; color: var(--wine-700); }
.for-card--no {
  background: var(--wine-900);
  color: var(--cream);
}
.for-card--no h3 { color: var(--white); }
.for-card--no li { color: rgba(251, 243, 237, 0.82); }
.for-card--no li::before { content: "×"; color: var(--gold-300); }

/* ---------- prova social ---------- */
.proof-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.proof-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.proof-card.placeholder-card { border: 1px dashed var(--rose-300); box-shadow: none; }
.proof-shot {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  object-fit: contain;
  background: var(--cream);
}
.proof-shot.placeholder-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed var(--rose-300);
  background: rgba(193, 86, 122, 0.06);
  color: var(--wine-600);
  padding: 20px;
}
.proof-shot-icon { width: 30px; height: 30px; }
.proof-shot-label { font-size: 12px; font-weight: 700; text-align: center; }
.proof-quote { font-style: italic; color: var(--ink-700); }
.proof-name { font-weight: 700; font-size: 14px; color: var(--wine-800); margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 30px; }
.faq-item {
  border-bottom: 1px solid rgba(58, 14, 29, 0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--wine-900);
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--wine-700);
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--wine-700);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { padding-bottom: 20px; color: var(--ink-700); margin: 0; }
.faq-item.is-open .faq-answer { max-height: 240px; }

/* ---------- preço final ---------- */
.price-section {
  background: var(--wine-900);
  color: var(--cream);
}
.price-inner { text-align: center; }
.price-title { color: var(--white); }
.price-lead { color: rgba(251, 243, 237, 0.82); font-size: 17px; margin: 0 auto 30px; }
.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 26px;
}
.price-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 58px);
  color: var(--gold-300);
  font-weight: 600;
}
.price-note { font-size: 13.5px; color: rgba(251, 243, 237, 0.65); margin-top: 4px; }
.price-soft { margin-top: 18px; font-size: 14px; color: rgba(251, 243, 237, 0.65); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--wine-900);
  border-top: 1px solid rgba(251, 243, 237, 0.12);
  padding: 26px 0 34px;
}
.footer-inner {
  color: rgba(251, 243, 237, 0.55);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (min-width: 640px) {
  .quiz-card { padding: 48px 44px; }
  .for-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .contrast-grid { grid-template-columns: 1fr 1fr; }
  .credibility-inner { flex-direction: row; justify-content: center; gap: 28px; }
}

@media (min-width: 780px) {
  .chaar-grid { grid-template-columns: 140px 1fr; }
}

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .roadmap { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
