/* Selo Zero Odor Canino — premium forest + gold */
:root {
  --bg: oklch(0.14 0.018 155);
  --bg-deep: oklch(0.1 0.015 155);
  --surface: oklch(0.18 0.022 155);
  --surface-lift: oklch(0.22 0.024 155);
  --ink: oklch(0.96 0.01 95);
  --muted: oklch(0.78 0.02 145);
  --gold: oklch(0.78 0.12 85);
  --gold-soft: oklch(0.88 0.08 90);
  --gold-deep: oklch(0.62 0.12 78);
  --gold-ink: oklch(0.18 0.03 85);
  --forest: oklch(0.32 0.06 155);
  --light: oklch(0.985 0.004 95);
  --light-ink: oklch(0.22 0.03 155);
  --light-muted: oklch(0.42 0.025 155);
  --border-dark: oklch(0.3 0.03 155);
  --border-light: oklch(0.9 0.012 155);
  --danger: oklch(0.72 0.15 25);
  --radius: 12px;
  --radius-pill: 999px;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --quiz-max: 26.5rem;
  --sales-max: 42rem;
  --z-sticky: 40;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.15;
  margin: 0 0 0.55em;
}

p {
  text-wrap: pretty;
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    filter 0.18s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--primary {
  width: 100%;
  background: var(--gold);
  color: var(--gold-ink);
}

.btn--primary:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  width: 100%;
  background: transparent;
  color: var(--muted);
  min-height: 46px;
  font-weight: 600;
}

.btn--ghost:hover {
  color: var(--ink);
}

.btn--compact {
  width: auto;
  min-height: 42px;
  padding: 0.55rem 1.05rem;
  font-size: 0.9rem;
}

/* ——— Logo ——— */
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px oklch(0.78 0.12 85 / 0.35);
}

.logo--lg img {
  width: 5.5rem;
  height: 5.5rem;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--gold-soft);
}

.logo__text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ——— QUIZ ——— */
.quiz-body {
  min-height: 100dvh;
  background:
    radial-gradient(90% 55% at 50% -5%, oklch(0.35 0.06 85 / 0.28), transparent 60%),
    radial-gradient(70% 50% at 100% 100%, oklch(0.25 0.05 155 / 0.5), transparent 55%),
    var(--bg-deep);
}

.quiz-app {
  width: min(100%, var(--quiz-max));
  margin: 0 auto;
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: calc(0.55rem + var(--safe-t)) 1.05rem calc(0.85rem + var(--safe-b));
  overflow: hidden;
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  flex-shrink: 0;
}

.progress-wrap {
  flex: 1;
  max-width: 10rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.progress-track {
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--surface-lift);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width 0.35s var(--ease);
}

.quiz-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.screen {
  display: none;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  animation: rise 0.34s var(--ease) both;
}

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

/* Intro: densa, emocional, CTA fixo na dobra */
.screen--intro .screen__body--intro {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 0.7rem;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.intro-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid oklch(0.78 0.12 85 / 0.28);
  min-height: 9.5rem;
  max-height: min(32vh, 13.5rem);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px oklch(0.1 0.02 155 / 0.4), 0 8px 24px oklch(0.05 0.02 155 / 0.35);
}

.intro-hero__img {
  width: 100%;
  height: 100%;
  min-height: 9.5rem;
  max-height: min(32vh, 13.5rem);
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.intro-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, oklch(0.1 0.02 155 / 0.96) 0%, oklch(0.1 0.02 155 / 0.55) 45%, oklch(0.1 0.02 155 / 0.15) 100%),
    radial-gradient(80% 60% at 50% 100%, oklch(0.45 0.08 85 / 0.25), transparent 70%);
  pointer-events: none;
}

.intro-hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.95rem 0.95rem;
  z-index: 1;
}

.intro-hero__tag {
  display: inline-flex;
  margin: 0 0 0.4rem;
  padding: 0.28rem 0.6rem;
  border-radius: var(--radius-pill);
  background: oklch(0.78 0.12 85 / 0.95);
  color: var(--gold-ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-title {
  font-size: clamp(1.35rem, 5.8vw, 1.7rem) !important;
  margin: 0 !important;
  color: var(--ink);
  text-shadow: 0 2px 12px oklch(0.05 0.02 155 / 0.6);
  line-height: 1.18 !important;
}

.intro-hook {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--muted);
}

.intro-hook strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.intro-pain {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.intro-pain li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.5rem;
  align-items: start;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.intro-pain li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 85 / 0.18);
}

.intro-promise {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: linear-gradient(145deg, oklch(0.22 0.035 120), var(--surface));
  border: 1px solid oklch(0.78 0.12 85 / 0.28);
}

.intro-promise__title {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.intro-promise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.intro-promise__grid span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.intro-promise__grid span::before {
  content: "→";
  color: var(--gold);
  font-weight: 800;
}

.intro-breeds {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.15rem 0.1rem 0;
}

.intro-breeds__faces {
  display: flex;
  flex-shrink: 0;
}

.intro-breeds__faces img {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-deep);
  margin-left: -0.45rem;
  box-shadow: 0 0 0 1px oklch(0.78 0.12 85 / 0.25);
}

.intro-breeds__faces img:first-child {
  margin-left: 0;
}

.intro-breeds__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--muted);
}

.intro-breeds__text strong {
  color: var(--ink);
  font-weight: 700;
}

.screen__footer--pinned {
  flex-shrink: 0;
  margin-top: 0.35rem;
  padding-top: 0.7rem;
  border-top: 1px solid oklch(0.3 0.03 155 / 0.55);
  background: linear-gradient(to top, var(--bg-deep) 75%, oklch(0.1 0.015 155 / 0.92));
}

.btn--cta-pulse {
  animation: ctaPulse 2.2s var(--ease) infinite;
  box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.45);
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.4);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 0 10px oklch(0.78 0.12 85 / 0);
    filter: brightness(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--cta-pulse {
    animation: none;
  }
}

@media (max-height: 720px) {
  .intro-hero {
    max-height: min(26vh, 10.5rem);
    min-height: 8rem;
  }

  .intro-hero__img {
    max-height: min(26vh, 10.5rem);
    min-height: 8rem;
  }

  .intro-pain li:nth-child(3) {
    display: none;
  }
}

@media (max-height: 620px) {
  .intro-promise {
    display: none;
  }

  .intro-title {
    font-size: clamp(1.2rem, 5.2vw, 1.45rem) !important;
  }
}

@media (max-height: 540px) {
  .intro-breeds {
    display: none;
  }

  .intro-pain {
    display: none;
  }
}

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

.screen__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 0.35rem;
  min-height: 0;
}

/* Telas longas rolam; o intro fixa o CTA na dobra */
.screen:not(.screen--intro) .screen__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.screen__footer {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.screen h1 {
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background: var(--surface);
  aspect-ratio: 4 / 3;
}

.photo-frame--portrait {
  aspect-ratio: 3 / 4;
  max-height: 16rem;
  margin-inline: auto;
  width: min(100%, 16rem);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.85rem;
  background: linear-gradient(to top, oklch(0.1 0.02 155 / 0.92), transparent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--surface-lift);
  border: 1px solid var(--border-dark);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.chip--gold {
  color: var(--gold-ink);
  background: var(--gold);
  border-color: transparent;
}

.option-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.option {
  width: 100%;
  text-align: left;
  min-height: 58px;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.option:hover {
  border-color: oklch(0.45 0.05 155);
}

.option:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.option.is-selected {
  border-color: var(--gold);
  background: oklch(0.24 0.035 120);
}

.option__radio {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  border: 2px solid oklch(0.5 0.03 155);
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.option.is-selected .option__radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--surface);
}

.option__text {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
}

.question-title {
  font-size: clamp(1.4rem, 5.5vw, 1.7rem);
  margin-bottom: 0.15rem;
}

/* Form */
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  background: var(--surface);
  color: var(--ink);
}

.field input::placeholder {
  color: oklch(0.6 0.02 145);
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 85 / 0.18);
}

.field input.is-invalid {
  border-color: var(--danger);
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.field-error.is-visible {
  display: block;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

/* Result */
.result-hero {
  text-align: center;
}

.result-card {
  background: linear-gradient(165deg, var(--surface-lift), var(--surface));
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 1.35rem 1.1rem 1.25rem;
  text-align: center;
}

.score-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 0.15rem auto 1rem;
}

.score-ring {
  width: 10rem;
  height: 10rem;
  position: relative;
  border-radius: 50%;
}

.score-ring.is-pulsing {
  animation: ringPulse 1.6s var(--ease) infinite;
}

.score-ring[data-level="high"].is-pulsing {
  animation-duration: 1.05s;
}

.score-ring[data-level="elevated"].is-pulsing {
  animation-duration: 1.35s;
}

.score-ring[data-level="low"].is-pulsing {
  animation: ringPulseSoft 2.4s var(--ease) infinite;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.score-ring__track {
  fill: none;
  stroke: oklch(0.28 0.03 155);
  stroke-width: 8;
}

.score-ring__value {
  fill: none;
  stroke: var(--gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 0.9s var(--ease);
  filter: drop-shadow(0 0 6px oklch(0.78 0.12 85 / 0.45));
}

.score-ring__label {
  position: absolute;
  inset: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.score-ring__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 8vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-soft);
}

.score-ring__unit {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Urgency label lives OUTSIDE the ring — never clipped */
.score-urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  background: oklch(0.2 0.03 120);
  border: 1px solid oklch(0.78 0.12 85 / 0.45);
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.score-urgency__text {
  overflow: visible;
  text-overflow: clip;
}

.score-urgency__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.55);
}

.score-urgency.is-pulsing .score-urgency__dot {
  animation: urgencyBlink 1.2s ease-in-out infinite;
}

.score-urgency.is-high {
  border-color: oklch(0.72 0.15 35 / 0.65);
  color: oklch(0.9 0.08 75);
  background: oklch(0.22 0.04 40);
}

.score-urgency.is-high .score-urgency__dot {
  background: oklch(0.72 0.16 35);
  animation-duration: 0.85s;
}

.score-urgency.is-elevated .score-urgency__dot {
  animation-duration: 1.1s;
}

.score-urgency.is-high.is-pulsing,
.score-urgency.is-elevated.is-pulsing {
  animation: urgencyGlow 1.4s ease-in-out infinite;
}

.score-urgency.is-low {
  border-color: oklch(0.5 0.04 155);
  color: var(--muted);
}

.score-urgency.is-low .score-urgency__dot {
  background: oklch(0.55 0.05 155);
  animation: none;
}

@keyframes ringPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px oklch(0.78 0.12 85 / 0);
    transform: scale(1.02);
  }
}

@keyframes ringPulseSoft {
  0%,
  100% {
    box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px oklch(0.78 0.12 85 / 0);
  }
}

@keyframes urgencyBlink {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 oklch(0.78 0.12 85 / 0.5);
  }
  50% {
    opacity: 0.35;
    box-shadow: 0 0 0 8px oklch(0.78 0.12 85 / 0);
  }
}

@keyframes urgencyGlow {
  0%,
  100% {
    filter: brightness(1);
    border-color: oklch(0.78 0.12 85 / 0.4);
  }
  50% {
    filter: brightness(1.12);
    border-color: oklch(0.88 0.12 85 / 0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  .score-ring.is-pulsing,
  .score-urgency.is-pulsing,
  .score-urgency.is-pulsing .score-urgency__dot,
  .score-urgency.is-high.is-pulsing,
  .score-urgency.is-elevated.is-pulsing {
    animation: none !important;
  }
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.profile-mirror {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.result-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.result-points li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 0.95rem;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border-dark);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.result-points li span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ——— SALES ——— */
.sales-body {
  background: var(--bg);
  color: var(--ink);
}

.sales-top {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: oklch(0.1 0.015 155 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.55rem 1rem;
  padding-top: calc(0.55rem + var(--safe-t));
}

.sales-top__inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.personal-banner {
  display: none;
  width: 100%;
  background: oklch(0.2 0.035 120);
  border-bottom: 1px solid oklch(0.4 0.06 90 / 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.personal-banner.is-visible {
  display: block;
}

.personal-banner__inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 0.85rem 1.15rem;
}

.personal-banner strong {
  color: var(--gold-soft);
}

.section {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 2.75rem 1.15rem;
}

.section--tight {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.section--light {
  width: 100%;
  max-width: none;
  background: var(--light);
  color: var(--light-ink);
}

.section--light > .inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 2.75rem 1.15rem;
}

.section--light .lede,
.section--light .muted {
  color: var(--light-muted);
}

.section--light h2,
.section--light h3 {
  color: var(--light-ink);
}

.section--mid {
  width: 100%;
  max-width: none;
  background: var(--surface);
  border-block: 1px solid var(--border-dark);
}

.section--mid > .inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 2.75rem 1.15rem;
}

.section--deep {
  width: 100%;
  max-width: none;
  background: var(--bg-deep);
}

.section--deep > .inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 2.75rem 1.15rem;
}

.hero-sales {
  padding-top: 1.5rem;
}

.hero-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.35rem;
  border: 1px solid var(--border-dark);
  aspect-ratio: 3 / 4;
  max-height: 22rem;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual__badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: oklch(0.1 0.02 155 / 0.88);
  border: 1px solid oklch(0.78 0.12 85 / 0.35);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.hero-visual__badge img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  object-fit: cover;
}

.hero-sales h1 {
  font-size: clamp(1.95rem, 7.2vw, 2.55rem);
  margin-bottom: 0.75rem;
}

.hero-sales .lede {
  font-size: 1.08rem;
  margin-bottom: 1.15rem;
}

.split-title {
  font-size: clamp(1.55rem, 5.2vw, 2rem);
}

.media-block {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  margin: 1.15rem 0 1.35rem;
  aspect-ratio: 16 / 9;
}

.section--light .media-block {
  border-color: var(--border-light);
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-block--square {
  aspect-ratio: 1;
  max-width: 18rem;
  margin-inline: auto;
}

.media-block--4x3 {
  aspect-ratio: 4 / 3;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-weight: 600;
}

.bullet-list li::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px oklch(0.78 0.12 85 / 0.2);
}

.section--light .bullet-list li::before {
  box-shadow: 0 0 0 3px oklch(0.78 0.12 85 / 0.18);
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.feature {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-dark);
}

.section--light .feature {
  background: oklch(1 0 0);
  border-color: var(--border-light);
}

.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.section--light .feature p {
  color: var(--light-muted);
}

.chapter {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: center;
}

.chapter:last-child {
  border-bottom: none;
}

.chapter__thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.chapter__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chapter h3 {
  font-size: 1.08rem;
  margin: 0 0 0.25rem;
}

.chapter p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0.85rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-dark);
  margin: 0;
}

.quote:last-of-type {
  border-bottom: none;
}

.quote img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-dark);
}

.quote p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.quote footer {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

.offer-card {
  border-radius: 14px;
  border: 1px solid oklch(0.78 0.12 85 / 0.45);
  background:
    radial-gradient(80% 60% at 50% 0%, oklch(0.35 0.06 85 / 0.25), transparent 65%),
    var(--surface);
  padding: 1.4rem 1.15rem 1.3rem;
}

.offer-card__logo {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px oklch(0.78 0.12 85 / 0.25);
}

.offer-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 0.75rem;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.offer-card h2 {
  text-align: center;
  font-size: 1.75rem;
}

.offer-card > .muted {
  text-align: center;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 1rem 0 0.25rem;
}

.price-old {
  font-size: 1.15rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}

.price-now {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
  line-height: 1;
}

.price-installments {
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.bonus {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-dark);
}

.bonus h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.bonus p {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--muted);
}

.bonus__value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
}

.guarantee {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-dark);
}

.guarantee img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.guarantee h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.faq details {
  border-bottom: 1px solid var(--border-dark);
  padding: 0.95rem 0;
}

.faq summary {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0.65rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.closing {
  text-align: center;
}

.closing h2 {
  font-size: clamp(1.65rem, 5.8vw, 2.15rem);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: var(--z-sticky);
  padding: 0.75rem 1rem calc(0.75rem + var(--safe-b));
  background: linear-gradient(to top, var(--bg-deep) 65%, transparent);
}

.sticky-cta__inner {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
}

.footer-mini {
  text-align: center;
  padding: 1.25rem 1rem 2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1-5 {
  margin-top: 1.5rem;
}

@media (min-width: 720px) {
  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .hero-visual {
    max-height: 26rem;
    aspect-ratio: 16 / 10;
  }

  .section,
  .section--light > .inner,
  .section--mid > .inner,
  .section--deep > .inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ——— Funil: upsell / downsell / obrigado ——— */
.funnel-bar {
  width: min(100%, var(--sales-max));
  margin: 0 auto;
  padding: 0.85rem 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.funnel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: oklch(0.22 0.04 120);
  border: 1px solid oklch(0.78 0.12 85 / 0.4);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funnel-pill--ok {
  background: oklch(0.28 0.05 155);
  border-color: oklch(0.55 0.08 155);
  color: oklch(0.9 0.03 145);
}

.funnel-pill--soft {
  background: var(--surface);
  border-color: var(--border-dark);
  color: var(--muted);
}

.decline-link {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0.85rem;
  padding: 0.85rem 0.5rem;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.decline-link:hover {
  color: var(--ink);
}

.decline-link--quiet {
  font-size: 0.85rem;
  opacity: 0.85;
}

.stack-yes {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
}

.include-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.include-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.65rem;
  align-items: start;
  font-weight: 600;
  font-size: 0.98rem;
}

.include-list li::before {
  content: "✓";
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.timer-note {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.75rem 0 0;
}

.compare-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.compare-card {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--surface);
}

.compare-card--highlight {
  border-color: oklch(0.78 0.12 85 / 0.5);
  background: linear-gradient(165deg, oklch(0.22 0.035 120), var(--surface));
}

.compare-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.compare-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.steps-access {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  counter-reset: access;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.steps-access li {
  counter-increment: access;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-dark);
}

.steps-access li::before {
  content: counter(access);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.steps-access strong {
  display: block;
  margin-bottom: 0.2rem;
}

.steps-access span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.success-hero {
  text-align: center;
  padding-top: 1.5rem;
}

.success-hero img.logo-xl {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  box-shadow: 0 0 28px oklch(0.78 0.12 85 / 0.3);
}

.success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: oklch(0.35 0.07 155);
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.no-sticky {
  padding-bottom: 2rem;
}
