/* Resina em Renda — design system do funil quiz */
:root {
  --verde: #1f6b4a;
  --verde-deep: #134d35;
  --verde-soft: #e8f4ee;
  --gold: #c4a35a;
  --gold-soft: #f7f0de;
  --cream: #f6f1e8;
  --cream-deep: #ebe3d4;
  --ink: #1a1f1c;
  --ink-soft: #4a554e;
  --muted: #7a857e;
  --white: #ffffff;
  --line: rgba(26, 31, 28, 0.1);
  --red: #b42318;
  --shadow: 0 8px 24px rgba(19, 77, 53, 0.12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 430px;
  --pad: 14px;
  --touch: 48px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(196, 163, 90, 0.2), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(31, 107, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, #f3eee4 40%, var(--cream-deep) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.has-ctabar {
  padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
}

body.has-ctabar .q-footer {
  display: none;
}

.app {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.q-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad) calc(20px + env(safe-area-inset-bottom, 0px));
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

/* —— Topbar / progress —— */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: calc(10px + env(safe-area-inset-top, 0px)) var(--pad) 6px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--verde-deep);
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--verde-soft);
  border: 1px solid rgba(31, 107, 74, 0.15);
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.progress-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  padding: 0 var(--pad) 8px;
}

.progress-wrap .seg {
  height: 3px;
  border-radius: 99px;
  background: rgba(26, 31, 28, 0.1);
  overflow: hidden;
}

.progress-wrap .seg.on {
  background: linear-gradient(90deg, var(--verde), var(--gold));
}

.progress-wrap .seg.partial {
  background: linear-gradient(90deg, var(--verde) 55%, rgba(26, 31, 28, 0.1) 55%);
}

.back-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 0;
  min-height: var(--touch);
}

/* —— Screen —— */
.screen {
  padding: 6px var(--pad) 20px;
  animation: fadeUp 0.28s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
  background: var(--verde-soft);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 12px;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(22px, 6.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 10px;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(19px, 5.2vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 8px;
}

.lead {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* Landing hero visual */
.hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 16px;
  min-height: 180px;
  background:
    linear-gradient(145deg, rgba(19, 77, 53, 0.88), rgba(31, 107, 74, 0.55)),
    radial-gradient(circle at 70% 30%, rgba(196, 163, 90, 0.55), transparent 45%),
    linear-gradient(160deg, #2a7a56, #0f3d2a);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.hero-visual.has-photo {
  padding: 0;
  min-height: min(38vh, 200px);
  background: #123528;
}

.hero-visual.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-visual.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 30, 22, 0.72) 100%);
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-visual.has-photo::before { display: none; }

.hero-visual .chip {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 90%;
}

.hero-visual.has-photo .chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
}

/* Fotos das perguntas / depo / oferta — sem scroll */
.step-media {
  margin: 0 0 12px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #123528;
  aspect-ratio: 16 / 10;
  max-height: 200px;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.step-media-sm {
  aspect-ratio: 16 / 9;
  max-height: 150px;
}

.depo-shot,
.proof-thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  display: block;
  max-height: 160px;
  object-fit: cover;
  object-position: center top;
  background: #f3eee6;
}

.offer-hero {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 16px;
  aspect-ratio: 16 / 10;
  max-height: 200px;
  box-shadow: var(--shadow);
  background: #123528;
}

.offer-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.loading-photo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  max-height: 160px;
  box-shadow: var(--shadow);
}

.loading-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.emotional-visual.has-photo {
  padding: 0;
  overflow: hidden;
  min-height: 140px;
  max-height: 180px;
}

.emotional-visual.has-photo img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
}

.hero-bullets li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--verde-soft);
  color: var(--verde);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.authority {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.authority .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--verde));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex: 0 0 auto;
  overflow: hidden;
}

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

.authority strong { display: block; font-size: 13px; }
.authority span { font-size: 12px; color: var(--muted); }

/* Options */
.opts {
  display: grid;
  gap: 10px;
}

.opt {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 16px 14px;
  min-height: 54px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

.opt:hover { border-color: rgba(31, 107, 74, 0.35); }
.opt.selected {
  border-color: var(--verde);
  background: var(--verde-soft);
  box-shadow: inset 0 0 0 1px rgba(31, 107, 74, 0.15);
}

.opt .opt-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.zone-card {
  appearance: none;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 0 0 12px;
  text-align: center;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  min-height: 120px;
}

.zone-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  margin-bottom: 8px;
  background: #e8efe9;
}

.zone-card .emoji {
  font-size: 28px;
  display: block;
  margin: 14px 0 8px;
}

.zone-card .label {
  display: block;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.zone-card.selected {
  border-color: var(--verde);
  background: var(--verde-soft);
}

/* Big idea */
.bigidea-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.bigidea-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.bigidea-card.yes { border-color: rgba(31, 107, 74, 0.35); background: var(--verde-soft); }
.bigidea-card.no { opacity: 0.85; }
.bigidea-card h3 { font-size: 15px; margin-bottom: 6px; }
.bigidea-card p { font-size: 13px; color: var(--ink-soft); }

.bigidea-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Name input */
.name-wrap input {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
}

.name-wrap input:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(31, 107, 74, 0.12);
}

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-deep) 100%);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 18px;
  min-height: 56px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 8px 20px rgba(19, 77, 53, 0.28);
  transition: transform 0.12s, opacity 0.12s;
  letter-spacing: 0.01em;
}

.btn.btn-lg {
  font-size: 17px;
  min-height: 60px;
  padding: 18px 20px;
  border: 3px solid #0f3d2a;
}

.btn.btn-secondary {
  background: #fff;
  color: var(--verde-deep);
  border: 2px solid var(--verde);
  box-shadow: none;
  min-height: 52px;
  font-size: 15px;
}

.btn:active { transform: scale(0.98); }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--verde-deep);
  border: 1.5px solid rgba(31, 107, 74, 0.3);
  box-shadow: none;
}

.btn.pulse-soft {
  animation: pulseSoft 2.2s ease-in-out infinite;
}

@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 10px 24px rgba(19, 77, 53, 0.28); }
  50% { box-shadow: 0 14px 32px rgba(19, 77, 53, 0.45); }
}

.cta-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--max);
  padding: 10px var(--pad) calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(246, 241, 232, 0), rgba(246, 241, 232, 0.98) 22%, var(--cream));
  z-index: 40;
}

.cta-bar .hint,
.cta-bar .cta-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--verde-deep);
  margin-top: 8px;
}

/* Loading */
.loading-wrap {
  text-align: center;
  padding: 24px 8px 8px;
}

.ring {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  position: relative;
}

.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring .track { fill: none; stroke: rgba(26, 31, 28, 0.1); stroke-width: 8; }
.ring .bar {
  fill: none;
  stroke: url(#edaGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 0.2s linear;
}

.ring .pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--verde-deep);
}

.checklist {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
  opacity: 0.4;
  transition: opacity 0.25s;
}

.checklist li.on { opacity: 1; color: var(--ink); }
.checklist li .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex: 0 0 auto;
}
.checklist li.on .dot {
  border-color: var(--verde);
  background: var(--verde);
  box-shadow: inset 0 0 0 3px #fff;
}

.quote-carousel {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  min-height: 72px;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

/* Interstitial / enemy / mechanism */
.card-stack { display: grid; gap: 12px; margin: 16px 0; }

.info-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.info-card.enemy {
  border-left: 3px solid var(--red);
}

.info-card.good {
  border-left: 3px solid var(--verde);
}

.info-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13px;
  color: var(--ink-soft);
}

.margin-card {
  margin: 16px 0 8px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(19, 77, 53, 0.08);
}

.margin-piece {
  font-family: var(--font-display, Georgia, serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 12px;
}

.margin-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.margin-row span { color: var(--ink-soft); }
.margin-row strong { color: var(--ink); white-space: nowrap; }

.margin-row-gain {
  background: var(--verde-soft);
  margin: 4px -8px 0;
  padding: 12px 8px;
  border-radius: 12px;
  border-top: none;
}

.margin-row-gain strong {
  color: var(--verde);
  font-size: 16px;
}

.margin-note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Emotional */
.emotional-visual {
  border-radius: 18px;
  min-height: 140px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  font-size: 48px;
  background: linear-gradient(145deg, var(--gold-soft), var(--verde-soft));
  border: 1px solid var(--line);
}

.emotional-quote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 18px;
}

/* Diagnosis */
.gauge-wrap {
  text-align: center;
  margin: 12px 0 20px;
}

.gauge {
  width: 100%;
  height: 14px;
  border-radius: 99px;
  background: linear-gradient(90deg, #b42318, #c4a35a, #1f6b4a);
  position: relative;
  margin: 18px 0 8px;
  overflow: visible;
}

.gauge .needle {
  position: absolute;
  top: -8px;
  width: 4px;
  height: 30px;
  background: var(--ink);
  border-radius: 4px;
  transform: translateX(-50%);
  transition: left 0.5s ease;
}

.status-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--red);
  background: #fdecea;
  padding: 6px 12px;
  border-radius: 999px;
}

.findings {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.findings li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}

.benefits {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.benefits .b {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--verde-soft);
}

.benefits .b span { font-size: 18px; }

/* Future pacing */
.timeline {
  display: grid;
  gap: 0;
  margin: 16px 0;
  border-left: 2px solid rgba(31, 107, 74, 0.25);
  padding-left: 16px;
}

.timeline .t-item {
  position: relative;
  padding: 0 0 18px;
}

.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--verde);
  border: 2px solid var(--cream);
}

.timeline .when {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline .what {
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
}

/* Offer */
.offer-wrap { padding-bottom: 20px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0 8px;
}

.price-now {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--verde-deep);
}

.price-old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.offer-bullets {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 16px 0 20px;
}

.offer-bullets li {
  font-size: 14px;
  display: flex;
  gap: 8px;
}

.offer-bullets li::before {
  content: "✓";
  color: var(--verde);
  font-weight: 700;
}

.secure {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* Exit intent */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 28, 0.55);
  z-index: 100;
  display: grid;
  place-items: end center;
  padding: 18px;
}

.exit-modal {
  width: 100%;
  max-width: var(--max);
  background: var(--cream);
  border-radius: 20px 20px 16px 16px;
  padding: 22px 18px 18px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.25s ease;
}

.exit-modal h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}

.exit-modal p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.exit-actions {
  display: grid;
  gap: 8px;
}

/* Goal badge */
.goal-badge {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(196, 163, 90, 0.4);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.proof-marquee {
  margin: 14px -14px 8px;
  overflow: hidden;
  width: calc(100% + 28px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.proof-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: proofLoop 22s linear infinite;
  padding: 4px 14px 8px;
}

.proof-marquee:hover .proof-track,
.proof-marquee:focus-within .proof-track {
  animation-play-state: paused;
}

@keyframes proofLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.proof-item {
  flex: 0 0 78vw;
  max-width: 280px;
  padding: 12px 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(19, 77, 53, 0.08);
}

.proof-item .proof-thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  display: block;
  height: 140px;
  object-fit: cover;
  object-position: center center;
  background: #f3eee6;
}

.proof-item strong { display: block; margin-bottom: 4px; font-size: 14px; }
.proof-item span { color: var(--ink-soft); line-height: 1.4; }

.proof-hint {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .proof-track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    padding-bottom: 6px;
  }
  .proof-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

.offer-flag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--verde-deep);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.price-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.offer-alt {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed rgba(31, 107, 74, 0.35);
}

.offer-alt-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.offer-alt-text {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* Telas um pouco maiores (ainda mobile/tablet estreito) */
@media (min-width: 400px) {
  :root { --pad: 16px; --max: 430px; }
  .hero-visual.has-photo { min-height: 210px; }
  .step-media { max-height: 220px; }
}

/* Telas bem baixas (iPhone SE / landscape): prioriza pergunta + botões */
@media (max-height: 700px) {
  .step-media { max-height: 140px; }
  .hero-visual.has-photo { min-height: 140px; }
  h1, .h1 { font-size: clamp(20px, 5.8vw, 26px); }
  h2, .h2 { font-size: clamp(18px, 5vw, 22px); }
}

@media (min-width: 768px) {
  body {
    background-attachment: fixed;
  }
  .app {
    box-shadow: 0 0 0 1px var(--line), 0 20px 60px rgba(19, 77, 53, 0.08);
  }
}
