/* Detox do Ex — identidade violeta-madrugada */
:root {
  --bg: #171126;
  --bg-card: #221a36;
  --bg-elevated: #2a2140;
  --ink: #f0e8e2;
  --ink-dim: #a79bc0;
  --accent: #e5a48d;
  --accent-soft: #c98f7c;
  --hairline: #342a50;
  --sos: #ec8b84;
  --serif: "Libre Baskerville", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Outfit", "Avenir Next", Avenir, "Helvetica Neue", sans-serif;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  font-family: var(--serif);
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(229, 164, 141, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(52, 42, 80, 0.55), transparent 50%),
    var(--bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

a {
  color: var(--accent);
}

button,
input {
  font: inherit;
}

/* ----- layout ----- */
.shell {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: 0 auto;
  min-height: 100dvh;
  padding: 20px 18px calc(28px + var(--safe-bottom));
  display: flex;
  flex-direction: column;
}

.shell--wide {
  width: min(100%, 560px);
}

/* ----- type ----- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 5.5vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

h1 em {
  font-style: italic;
  color: var(--accent);
}

.lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 22px;
}

.lede strong {
  color: var(--ink);
  font-weight: 400;
}

.micro {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}

.micro-center {
  text-align: center;
}

/* ----- moon mark (foto assets/moon.png + fases) ----- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.moon-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: #05040a;
  box-shadow:
    0 0 0 1px rgba(229, 164, 141, 0.2),
    0 0 16px rgba(229, 164, 141, 0.35);
}

.moon-mark--lg {
  width: 48px;
  height: 48px;
  box-shadow:
    0 0 0 1px rgba(229, 164, 141, 0.25),
    0 0 22px rgba(229, 164, 141, 0.4);
}

.moon-mark--hero {
  width: 88px;
  height: 88px;
  box-shadow:
    0 0 0 1px rgba(229, 164, 141, 0.28),
    0 0 36px rgba(229, 164, 141, 0.45),
    0 0 60px rgba(229, 164, 141, 0.18);
}

.moon-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transform: scale(1.08);
}

/* sombra que “come” a lua — fases 0 (nova) → 4 (cheia) */
.moon-shade {
  position: absolute;
  top: -12%;
  bottom: -12%;
  width: 100%;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 40%, #1a1528 0%, #0a0812 70%, #05040a 100%);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.5s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.45);
}

.moon-mark[data-phase="0"] .moon-shade {
  left: 4%;
  opacity: 1;
}
.moon-mark[data-phase="1"] .moon-shade {
  left: -28%;
  opacity: 1;
}
.moon-mark[data-phase="2"] .moon-shade {
  left: -48%;
  opacity: 1;
}
.moon-mark[data-phase="3"] .moon-shade {
  left: -72%;
  opacity: 1;
}
.moon-mark[data-phase="4"] .moon-shade {
  left: -115%;
  opacity: 0;
}

.brand > span:not(.moon-mark) {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

/* ----- progress ----- */
.progress-wrap {
  margin-bottom: 22px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.progress-bar {
  height: 3px;
  background: var(--hairline);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar > i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  border-radius: 99px;
  transition: width 0.35s ease;
}

/* ----- cards / options ----- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 18px 16px;
  --card-pad-x: 16px; /* usado pelo .actions grudado na base */
  box-shadow: var(--shadow);
}

.q-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.q-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 18px;
  font-weight: 400;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: rgba(23, 17, 38, 0.45);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.4;
}

.opt:hover,
.opt:focus-visible {
  border-color: var(--accent-soft);
  background: var(--bg-elevated);
  outline: none;
}

.opt:active {
  transform: scale(0.99);
}

.opt.is-selected {
  border-color: var(--accent);
  background: rgba(229, 164, 141, 0.1);
}

.opt .mark {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-dim);
  position: relative;
}

.opt.is-multi .mark {
  border-radius: 4px;
}

.opt.is-selected .mark {
  border-color: var(--accent);
  background: var(--accent);
}

.opt.is-selected .mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--bg);
}

.opt.is-multi.is-selected .mark::after {
  content: "✓";
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  background: transparent;
  line-height: 1;
}

.opt .txt {
  flex: 1;
}

/* ----- buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.985);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: linear-gradient(180deg, #ecc0ad 0%, var(--accent) 55%, var(--accent-soft) 100%);
  color: #1a1228;
  box-shadow: 0 10px 28px rgba(229, 164, 141, 0.28);
}

.btn-primary:hover:not(:disabled) {
  filter: brightness(1.04);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-dim);
  border: 1px solid var(--hairline);
  letter-spacing: 0.06em;
}

.actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* Botão principal colado na base quando o conteúdo não cabe na tela
     (iPhone SE/8: 8 telas do quiz escondiam o "Continuar" abaixo da dobra).
     Quando tudo cabe, o sticky fica inerte e o botão aparece na posição normal. */
  position: sticky;
  bottom: var(--safe-bottom);
  z-index: 3;
  /* sangra sobre o padding lateral do card para o degradê cobrir a largura toda */
  margin-left: calc(-1 * var(--card-pad-x, 16px));
  margin-right: calc(-1 * var(--card-pad-x, 16px));
  padding: 16px var(--card-pad-x, 16px) calc(8px + var(--safe-bottom));
  background: linear-gradient(to top, var(--bg-card) 66%, rgba(34, 26, 54, 0));
}

/* ----- exit guard ----- */
.exit-guard[hidden] {
  display: none;
}

.exit-guard {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px 18px calc(18px + var(--safe-bottom));
  background: rgba(5, 4, 10, 0.72);
  backdrop-filter: blur(10px);
}

.exit-guard__panel {
  width: min(100%, 404px);
  padding: 22px 18px 18px;
  border: 1px solid rgba(229, 164, 141, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(229, 164, 141, 0.12), transparent 58%),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.exit-guard__panel h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.25;
}

.exit-guard__panel p:not(.eyebrow) {
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.55;
}

.exit-guard__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

/* ----- cover ----- */
.cover-visual {
  height: 140px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(circle at 70% 30%, rgba(229, 164, 141, 0.25), transparent 40%),
    linear-gradient(160deg, #2a1f45 0%, #171126 60%, #0f0b18 100%);
  position: relative;
  overflow: hidden;
}

.cover-visual::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 120px;
  right: 18%;
  bottom: -10px;
  border-radius: 40px 40px 8px 8px;
  background: linear-gradient(180deg, #3a2f55, #1c152e);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.cover-visual::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 58px;
  right: calc(18% + 18px);
  bottom: 42px;
  border-radius: 4px;
  background: linear-gradient(160deg, #f0e8e2 0%, #e5a48d 100%);
  box-shadow: 0 0 24px rgba(229, 164, 141, 0.55);
  opacity: 0.9;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 26, 54, 0.85);
  border: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 18px;
}

.proof-chip b {
  color: var(--ink);
  font-weight: 500;
}

/* ----- social proof screen ----- */
.proof-screen {
  text-align: center;
  padding: 12px 4px 4px;
}

.proof-screen .stat {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  margin: 8px 0 14px;
  font-style: italic;
}

.proof-screen p {
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.proof-screen p strong {
  color: var(--ink);
  font-weight: 400;
}

/* ----- name field ----- */
.field {
  margin-top: 4px;
}

.field label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: rgba(23, 17, 38, 0.55);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}

.field input::placeholder {
  color: rgba(167, 155, 192, 0.55);
}

.field input:focus {
  border-color: var(--accent);
}

/* ----- analyzing ----- */
.analyzing {
  text-align: center;
  padding: 28px 8px 8px;
  --card-pad-x: 8px;
}

.analyzing .spinner-moon {
  width: 88px;
  height: 88px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.analyzing .spinner-moon .moon-mark {
  animation: pulse 2.2s ease-in-out infinite;
}

#moon-phase-label {
  margin-bottom: 10px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes phase {
  from {
    transform: translateX(-22px);
  }
  to {
    transform: translateX(-8px);
  }
}

.check-list {
  list-style: none;
  text-align: left;
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-dim);
  opacity: 0.35;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.check-list li.done {
  opacity: 1;
  color: var(--ink);
}

.check-list li .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  flex-shrink: 0;
}

.check-list li.done .tick {
  border-color: var(--accent);
  background: rgba(229, 164, 141, 0.15);
  color: var(--accent);
}

.ready-block {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.ready-block.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.ready-block h2 {
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.ready-block p {
  color: var(--ink-dim);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.note-warn {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--accent-soft);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* ----- screens ----- */
.screen {
  display: none;
  flex: 1;
  flex-direction: column;
  animation: fadeIn 0.28s ease;
}

.screen.is-active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

/* ----- VSL page ----- */
.vsl-head {
  margin-bottom: 18px;
}

.player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(72dvh, 640px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: #0d0a14;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}

.player-wrap--landscape {
  aspect-ratio: auto;
  max-height: none;
  overflow: visible;
}

.player-wrap--landscape vturb-anchor-button {
  display: none !important;
}

body.vsl-offer-visible .player-wrap--landscape vturb-anchor-button {
  display: block !important;
}

.player-inner {
  width: 100%;
  height: auto;
}

.player-inner iframe,
.player-inner video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.player-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(229, 164, 141, 0.15), transparent 55%),
    #0d0a14;
}

.player-placeholder .play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 4px;
  background: rgba(229, 164, 141, 0.08);
}

.player-placeholder p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-dim);
  max-width: 240px;
  line-height: 1.45;
}

.offer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
}

.offer.is-visible {
  opacity: 1;
  max-height: 800px;
  transform: none;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
}

.offer-card--tight {
  padding: 22px 18px 18px;
}

.offer-card--tight h2 {
  margin-bottom: 6px;
}

.offer-card--tight .price {
  margin: 10px 0 2px;
}

.offer-card--tight .btn {
  margin-top: 14px;
}

.guarantee--minimal {
  margin: 14px 0 0 !important;
  padding: 8px 10px !important;
  text-align: center !important;
  font-size: 14px !important;
  color: var(--ink-dim) !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--hairline) !important;
  border-radius: 0 !important;
}

.offer-card .price {
  font-size: 2.1rem;
  color: var(--accent);
  margin: 6px 0 4px;
  font-style: italic;
}

.offer-card .price-note {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 14px;
}

.offer-card h2 {
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.offer-card .lede {
  text-align: left;
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--ink);
}

.offer-card .lede em {
  font-style: italic;
  color: var(--accent);
}

.offer-hook {
  font-family: var(--serif);
}

.offer-desire {
  text-align: left;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(23, 17, 38, 0.55);
  border: 1px solid var(--hairline);
  border-left: 2px solid var(--accent);
}

.offer-desire p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0 0 12px;
}

.offer-desire p:last-child {
  margin-bottom: 0;
}

.offer-desire strong {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.offer-promise {
  font-family: var(--serif);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
  text-align: left;
  margin: 0 0 18px;
  font-style: italic;
}

.offer-promise span[data-price] {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--sans);
}

.offer-card .guarantee {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 14px 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(229, 164, 141, 0.08);
  border: 1px solid rgba(229, 164, 141, 0.2);
  text-align: left;
}

.disclaimer {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-dim);
  text-align: center;
}

.disclaimer a {
  color: var(--ink-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.waiting-offer {
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-dim);
  padding: 8px 0 4px;
}

.waiting-offer.is-hidden {
  display: none;
}

/* ----- footer ethics ----- */
.site-foot {
  margin-top: auto;
  padding-top: 28px;
  text-align: center;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-dim);
}

.site-foot strong {
  color: var(--ink-dim);
  font-weight: 500;
}

/* ===== Lote BetterMe: entrada visual, INFO, porquê, barras ===== */

.brand--compact {
  margin-bottom: 16px;
}

.entry-kicker {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 10px;
  line-height: 1.4;
}

.entry-title {
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  margin-bottom: 18px;
}

.entry-legal {
  margin-top: 18px;
  line-height: 1.55;
}

.entry-legal strong {
  color: var(--ink-dim);
  font-weight: 500;
}

.card--flush {
  /* full card still */
}

.why-line {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-dim);
  margin: -8px 0 16px;
  line-height: 1.45;
}

.hint-line {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--accent-soft);
  margin: -6px 0 14px;
  letter-spacing: 0.02em;
}

/* options with trailing radio + leading icon */
.opt {
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
}

.opt .mark {
  margin-top: 0;
  margin-left: auto;
  order: 3;
}

.opt-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(229, 164, 141, 0.1);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.opt .txt {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
}

/* age cards — só a faixa etária (sem metáfora forçada) */
.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 12px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(229, 164, 141, 0.1), transparent 55%),
    rgba(23, 17, 38, 0.55);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--sans);
}

.vcard:hover,
.vcard:focus-visible {
  border-color: var(--accent-soft);
  outline: none;
}

.vcard:active {
  transform: scale(0.98);
}

.vcard.is-selected {
  border-color: var(--accent);
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(229, 164, 141, 0.18), transparent 55%),
    rgba(229, 164, 141, 0.08);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 28px rgba(229, 164, 141, 0.12);
}

.vcard-age {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.vcard-unit {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.vcard.is-selected .vcard-age {
  color: var(--accent);
}

.vcard.is-selected .vcard-unit {
  color: var(--accent-soft);
}

/* INFO intersticiais */
.info-card {
  text-align: center;
  padding: 28px 18px 20px;
}

.info-moon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.info-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 14px;
}

.info-echo {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  text-align: left;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(229, 164, 141, 0.08);
  border: 1px solid rgba(229, 164, 141, 0.18);
}

.info-echo strong {
  font-weight: 500;
  color: var(--accent);
}

.info-body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-dim);
  margin-bottom: 14px;
  text-align: left;
}

.stage-urgency {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--accent) !important;
  margin-bottom: 10px !important;
  line-height: 1.35;
}

.info-demo {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 12px;
  text-align: left;
}

.info-demo strong {
  color: var(--accent);
  font-weight: 500;
}

.info-proof {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--accent-soft);
  text-align: left;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(229, 164, 141, 0.07);
  border-left: 2px solid var(--accent);
  margin-bottom: 4px;
}

.info-card .stat {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  margin: 4px 0 12px;
  font-style: italic;
}

/* progress narrativo */
.progress-meta {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12.5px; /* deixou de ser caixa-alta aqui, então volta a ser texto de leitura */
}

.progress-meta #progress-phase {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.progress-meta #progress-label {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* analyzing bars + stage teaser */
.analyzing-title {
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.build-bars {
  text-align: left;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.build-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.build-row.is-done .build-meta {
  color: var(--ink);
}

.build-pct {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.build-track {
  height: 6px;
  border-radius: 99px;
  background: var(--hairline);
  overflow: hidden;
}

.build-track > i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
}

.stage-teaser-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px !important;
}

.stage-teaser-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink) !important;
  margin-bottom: 10px !important;
  font-style: italic;
}

.stage-teaser-msg {
  font-size: 0.95rem !important;
  line-height: 1.55;
  margin-bottom: 16px !important;
}

.stage-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(229, 164, 141, 0.1);
  border: 1px solid rgba(229, 164, 141, 0.28);
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--accent);
  margin-bottom: 14px;
}
