/* =========================================================
   ROTEIRO DE VENDAS OPCL · Quiz / Diagnóstico
   ========================================================= */

:root {
  --green: #739267;
  --green-deep: #556B3D;
  --green-darker: #3D5530;
  --green-soft: #D4DEC4;
  --green-tint: #EAF0E2;

  --cream: #F5F3EE;
  --cream-soft: #FAF8F3;
  --white: #FFFFFF;

  --ink: #1A1A1A;
  --ink-2: #2C2C2C;
  --grey: #5C5C5C;
  --grey-soft: #8A8A8A;
  --grey-muted: #B5B0A3;
  --line: #E5E2D8;
  --line-soft: rgba(0, 0, 0, 0.06);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --r-pill: 999px;

  --shadow-cta: 0 8px 20px rgba(85, 107, 61, 0.28), 0 2px 6px rgba(85, 107, 61, 0.12);
  --shadow-cta-hover: 0 12px 28px rgba(85, 107, 61, 0.36), 0 2px 6px rgba(85, 107, 61, 0.14);
  --shadow-option: 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 12px rgba(0, 0, 0, 0.04);

  --pad-x: 24px;
  --pad-y-top: 36px;
  --pad-y-bot: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

html, body {
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--cream);
  color: var(--ink);
  overscroll-behavior: none;
}

body { min-height: 100vh; min-height: 100dvh; }

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em { font-style: italic; font-weight: 800; }

/* =========================================================
   SCREEN BASE
   ========================================================= */
.screen {
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.screen.is-active {
  display: block;
  animation: fadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.screen-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    calc(var(--pad-y-top) + env(safe-area-inset-top))
    var(--pad-x)
    calc(var(--pad-y-bot) + env(safe-area-inset-bottom));
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

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

/* =========================================================
   WELCOME
   ========================================================= */
.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: settleIn 0.7s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo { width: auto; height: 96px; max-width: 70%; object-fit: contain; }

.brand-tag {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--grey-soft);
  text-transform: uppercase;
}

.content-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  animation: settleIn 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.headline {
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  max-width: 13ch;
  text-wrap: balance;
}
.headline em {
  color: var(--green-deep);
  position: relative;
  font-style: italic;
  font-weight: 800;
}
.headline em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--green-soft);
  border-radius: 2px;
}

.lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey);
  font-weight: 400;
  max-width: 34ch;
}

.action-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: settleIn 0.7s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow-cta);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform;
}
.cta:hover {
  background: var(--green-darker);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
}
.cta:active { transform: translateY(0); }

.micro {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--grey-soft);
  text-transform: uppercase;
}

/* =========================================================
   QUESTION SCREENS
   ========================================================= */
.screen-inner--question {
  justify-content: flex-start;
  padding-top: calc(16px + env(safe-area-inset-top));
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  gap: 22px;
  text-align: left;
}

/* ---------- TOP BAR ---------- */
.q-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  animation: settleIn 0.5s ease both;
}

.back {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.18s ease, transform 0.12s ease;
}
.back:hover { background: rgba(0, 0, 0, 0.10); }
.back:active { transform: scale(0.94); }

.q-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.q-counter {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-soft);
}

.progress {
  width: 100%;
  height: 5px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: var(--green-deep);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-chip {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(85, 107, 61, 0.24);
}

/* ---------- Q BODY ---------- */
.q-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  animation: settleIn 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.q-image {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--green-tint);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 4px;
}
.q-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.q-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--grey-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.question {
  font-size: clamp(22px, 6vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

/* compactar quando tem imagem */
.screen--with-image .question { font-size: clamp(20px, 5.2vw, 24px); }
.screen--with-image .options { margin-top: 4px; }
.screen--with-image .q-image { aspect-ratio: 16 / 8; }

/* ---------- OPTIONS ---------- */
.options {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow-option);
}
.option:hover {
  border-color: var(--green);
  background: var(--cream-soft);
}
.option:active { transform: scale(0.985); }

.option.is-selected {
  border-color: var(--green-deep);
  background: var(--green-tint);
  box-shadow: 0 6px 18px rgba(85, 107, 61, 0.18);
}

/* radio circle */
.option-radio {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.8px solid var(--grey-muted);
  background: var(--white);
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.option:hover .option-radio { border-color: var(--green); }

.option.is-selected .option-radio {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.option.is-selected .option-radio::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 9px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: popIn 0.18s ease;
}

@keyframes popIn {
  from { transform: translate(-50%, -50%) scale(0); }
  to   { transform: translate(-50%, -50%) scale(1); }
}

.option-text { flex: 1; line-height: 1.4; }

/* ---------- CHECKBOX (multi-select) ---------- */
.screen[data-selection="multi"] .option-radio {
  border-radius: 7px;
}

.screen[data-selection="multi"] .option.is-selected .option-radio::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 5px;
  border-left: 2.2px solid var(--white);
  border-bottom: 2.2px solid var(--white);
  background: transparent;
  border-radius: 0;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -65%) rotate(-45deg);
  animation: popIn 0.18s ease;
}

/* ---------- Q FOOT (Continuar button) ---------- */
.q-foot {
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
}

.q-foot .cta {
  letter-spacing: 0.14em;
}

.cta:disabled,
.cta[disabled] {
  background: var(--green-soft);
  color: var(--white);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes settleIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   PITCH SCREEN (transição)
   ========================================================= */
.screen-inner--pitch {
  justify-content: space-between;
  text-align: left;
  padding-top: calc(28px + env(safe-area-inset-top));
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  gap: 18px;
}

.pitch-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: settleIn 0.7s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pitch-headline {
  font-size: clamp(26px, 7vw, 32px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
.pitch-headline em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

.pitch-lead {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--grey);
  font-weight: 400;
}

.value-card {
  background: var(--green-tint);
  border-radius: 16px;
  padding: 16px 18px 18px;
  margin-top: 4px;
  border: 1px solid rgba(85, 107, 61, 0.10);
}

.value-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.value-card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-darker);
  line-height: 1.25;
  letter-spacing: -0.01em;
  padding-top: 4px;
}

.value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--green-darker);
  font-weight: 500;
}
.value-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--green-deep);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* =========================================================
   LOADING SCREEN
   ========================================================= */
.screen-inner--loading {
  justify-content: center;
  text-align: center;
  padding-top: calc(48px + env(safe-area-inset-top));
}

.loading-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 460px;
  margin: auto 0;
  animation: settleIn 0.7s ease both;
}

.loading-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.loading-label { color: var(--grey); }
.loading-percent { color: var(--green-deep); font-weight: 800; font-variant-numeric: tabular-nums; }

.loading-bar {
  width: 100%;
  height: 10px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.loading-fill {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: 999px;
  overflow: hidden;
}
.loading-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%);
  animation: shimmer 1.4s linear infinite;
}

/* animação dispara quando a tela vira active */
.screen--loading.is-active .loading-fill {
  animation: loadFill var(--load-duration, 5000ms) cubic-bezier(0.42, 0, 0.6, 1) forwards;
}

@keyframes loadFill {
  0%   { width: 0%; }
  20%  { width: 22%; }
  45%  { width: 48%; }
  70%  { width: 72%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.loading-title {
  font-size: clamp(22px, 5.8vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  text-wrap: balance;
  min-height: 1.25em;
  transition: opacity 0.2s ease;
}

.loading-desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 36ch;
}

/* =========================================================
   DIAGNOSIS SCREEN (resultado)
   ========================================================= */
.screen-inner--diagnosis {
  justify-content: flex-start;
  text-align: left;
  padding-top: calc(10px + env(safe-area-inset-top));
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.screen-inner--diagnosis .q-image {
  aspect-ratio: 16 / 5;
  border-radius: 12px;
  animation: settleIn 0.6s ease both;
}

.diag-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: settleIn 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.diag-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-darker);
  background: var(--green-tint);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
  border: 1px solid rgba(85, 107, 61, 0.18);
}
.diag-profile strong { font-weight: 800; color: var(--green-deep); }
.diag-profile[hidden] { display: none; }

.diag-headline {
  font-size: clamp(20px, 5.4vw, 24px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}
.diag-headline em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

.diag-lead {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--grey);
  font-weight: 400;
}

.diag-card {
  background: var(--cream-soft);
  border: 1.5px dashed rgba(85, 107, 61, 0.32);
  border-radius: 14px;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 0;
}

.diag-item h3 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.diag-item p {
  font-size: 13px;
  line-height: 1.38;
  color: var(--grey);
}

/* =========================================================
   OFFER SCREEN (sales page)
   ========================================================= */
.screen--offer {
  overflow: visible;
  min-height: auto;
}
.screen-inner--offer {
  display: block;
  padding: 0;
  max-width: 100%;
  min-height: auto;
  text-align: left;
}

.offer-head {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  padding-top: calc(14px + env(safe-area-inset-top));
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.offer-logo { height: 38px; width: auto; }
.offer-spacer { width: 38px; }
.back--ghost {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--line);
}

/* sections wrapper */
.offer-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px;
  border-bottom: 1px solid var(--line);
}
.offer-section:last-of-type { border-bottom: 0; }

.offer-section-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}

.offer-section-title {
  font-size: clamp(28px, 7.2vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 14px;
}
.offer-section-title em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

.offer-section-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--grey);
}
.offer-section-lead + .offer-section-lead { margin-top: 10px; }
.offer-section-lead em { color: var(--green-deep); font-style: italic; font-weight: 700; }

/* ---------- HERO ---------- */
.offer-hero {
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 24px 36px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  color: var(--green-darker);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.offer-badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(115, 146, 103, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(115, 146, 103, 0); }
}

.offer-hero-title {
  font-size: clamp(28px, 7.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  text-wrap: balance;
}
.offer-hero-title em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

.offer-hero-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 36ch;
  margin: 0 auto 32px;
}

.offer-hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 24px 48px -16px rgba(60,80,50,0.18);
  background: var(--green-tint);
  max-width: 280px;
  margin: 0 auto;
}
.offer-hero-visual img { width: 100%; height: auto; display: block; }

/* ---------- RECEIVE LIST ---------- */
.receive-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.receive-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.18s, transform 0.18s;
}
.receive-item:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}
.receive-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.receive-item p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.receive-item strong { font-weight: 800; color: var(--ink); }

/* ---------- ANTES VS DEPOIS ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.compare-col {
  border-radius: 18px;
  padding: 22px 22px 24px;
  border: 1.5px solid;
}
.compare-col--before {
  background: var(--cream-soft);
  border-color: var(--line);
}
.compare-col--after {
  background: var(--green-tint);
  border-color: rgba(85, 107, 61, 0.22);
}
.compare-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-col--before .compare-title { color: var(--grey-soft); }
.compare-col--after .compare-title { color: var(--green-deep); }

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-col li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}
.compare-col li::before {
  position: absolute;
  left: 0; top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.compare-col--before li {
  color: var(--grey-soft);
}
.compare-col--before li::before {
  content: "✕";
  background: var(--line);
  color: var(--grey-soft);
}
.compare-col--after li {
  color: var(--green-darker);
  font-weight: 500;
}
.compare-col--after li::before {
  content: "✓";
  background: var(--green-deep);
  color: var(--white);
}

/* ---------- BONUS SECTION ---------- */
.bonus-section {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.bonus-tag {
  display: inline-block;
  background: var(--green-darker);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.agents-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.agent-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.agent-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c, var(--green-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.agent-item p {
  font-size: 15.5px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
}
.agent-item p strong {
  font-weight: 800;
  color: var(--ink);
}

.bonus-visual {
  margin-top: 28px;
  margin-bottom: 8px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--green-tint);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 16px 32px -8px rgba(60,80,50,0.12);
}
.bonus-visual img { width: 100%; display: block; }

.bonus-visual--gif {
  background: linear-gradient(135deg, var(--green-tint) 0%, var(--cream-soft) 100%);
  padding: 20px;
}
.bonus-visual--gif img {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* ---------- PRICING ---------- */
.pricing-section {
  background: var(--cream-soft);
  text-align: center;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--green-deep);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 16px 40px -16px rgba(85, 107, 61, 0.32);
  position: relative;
}

.pricing-ribbon {
  background: var(--green-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
}

.pricing-body {
  padding: 26px 22px 22px;
  position: relative;
  text-align: center;
}

.pricing-old {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 4px;
}
.pricing-old s { color: var(--grey-soft); }

.pricing-current {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.pricing-currency {
  font-size: 22px;
  padding-top: 14px;
}
.pricing-value {
  font-size: 76px;
  line-height: 1;
}
.pricing-cents {
  font-size: 22px;
  padding-top: 14px;
}

.pricing-installments {
  font-size: 14.5px;
  color: var(--grey);
  margin-top: 4px;
}
.pricing-installments strong { color: var(--ink); font-weight: 800; }
.pricing-divider { margin: 0 6px; color: var(--grey-soft); }

.pricing-discount {
  display: inline-block;
  background: var(--green-tint);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: 14px;
}

.pricing-countdown {
  background: #FDF2F1;
  color: #B23E33;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  border-top: 1px solid rgba(178, 62, 51, 0.12);
}
.countdown-timer {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* PRICING RECAP (block 2) */
.pricing-section--compact {
  padding: 40px 24px;
}
.pricing-recap {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 500;
}
.pricing-recap s { color: var(--grey-soft); }
.pricing-recap strong { color: var(--green-deep); font-weight: 800; font-size: 22px; }
.pricing-recap-meta {
  display: block;
  font-size: 13px;
  color: var(--grey-soft);
  margin-top: 4px;
  font-weight: 500;
}

.cta--big {
  font-size: 15px;
  padding: 22px 24px;
  width: 100%;
}
.cta--final {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-darker) 100%);
}

/* ---------- CAROUSEL ---------- */
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 14px;
  padding: 28px 0 18px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-item {
  flex: 0 0 78%;
  scroll-snap-align: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- AUTHORITY ---------- */
.author-section { background: var(--white); }
.author-card {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.author-photo {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--green-tint);
}
.author-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.author-photo figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.author-bio p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
}
.author-bio strong { color: var(--ink); font-weight: 700; }

.author-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.author-stats > div {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
}
.author-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.author-stats span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-soft);
  margin-top: 2px;
  line-height: 1.3;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-item[open] {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(85,107,61,0.10);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--green-deep);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-body {
  padding: 0 18px 20px;
  animation: fadeUp 0.3s ease both;
}
.faq-body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}
.faq-body strong { color: var(--ink); font-weight: 700; }

/* ---------- GARANTIA ---------- */
.guarantee-section {
  text-align: center;
  background: var(--cream-soft);
}
.guarantee-seal {
  width: 130px;
  height: 130px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 8px 20px rgba(85,107,61,0.18));
  animation: settleIn 0.6s ease both;
}

.guarantee-title {
  font-size: clamp(24px, 6vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  text-wrap: balance;
}
.guarantee-title em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

.guarantee-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 12px;
}
.guarantee-text strong { color: var(--ink); font-weight: 800; }

.guarantee-simple {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-deep);
  margin-top: 10px;
  letter-spacing: -0.01em;
}

/* ---------- FINAL CTA ---------- */
.final-cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-tint) 100%);
  padding-bottom: 60px;
}
.final-pre {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.final-title {
  font-size: clamp(30px, 7.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 28px;
  text-wrap: balance;
}
.final-title em {
  color: var(--green-deep);
  font-style: italic;
  font-weight: 800;
}

/* ---------- FOOTER ---------- */
.offer-footer {
  text-align: center;
  padding: 32px 24px 40px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  background: var(--green-darker);
  color: rgba(255,255,255,0.7);
}
.offer-footer img {
  height: 32px;
  width: auto;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.offer-footer p {
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media (min-width: 640px) {
  .screen-inner { padding-top: 72px; padding-bottom: 56px; }
  .logo { height: 132px; }
  .headline { font-size: 46px; }
  .lead { font-size: 18px; }
  .cta { font-size: 17px; }
  .question { font-size: 34px; }
  .option { font-size: 17px; padding: 22px 24px; }
  .pitch-headline { font-size: 38px; }
  .value-list li { font-size: 16px; }
  .loading-title { font-size: 28px; }
  .diag-headline { font-size: 32px; }
  .diag-item h3 { font-size: 17px; }
  .diag-item p { font-size: 16px; }

  .offer-section, .offer-hero { max-width: 640px; padding-left: 32px; padding-right: 32px; }
  .offer-section-title { font-size: 40px; }
  .offer-hero-title { font-size: 44px; }
  .offer-hero-visual { max-width: 340px; }
  .agents-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
  .pricing-value { font-size: 92px; }
  .author-card { flex-direction: row; align-items: flex-start; gap: 28px; }
  .author-photo { flex: 0 0 240px; }
  .author-bio { flex: 1; }
}
