/* =========================================================================
   DIETA ANTI-LIPEDEMA — Quiz funnel
   Design system (clonado dos prints de referência)
   ========================================================================= */

:root {
  /* Cores principais */
  --coral: #e8556a;          /* acento primário (botões, progresso, destaques) */
  --coral-dark: #d8415a;
  --coral-soft: #fbe9ec;
  --coral-disabled: #f1b9c2;

  --green: #34b37a;          /* "vitória fácil", destaques, zona saudável */
  --green-soft: #e7f6ee;
  --blue: #56b6e6;           /* zona "abaixo do peso" */
  --amber: #f4b53f;          /* proteínas, estrelas, sobrepeso */
  --orange: #f08a4b;
  --purple: #7c5cd6;         /* dots "dieta", scratch card */
  --purple-deep: #6a3fc0;

  --ink: #16181d;            /* texto principal */
  --ink-2: #3a3d44;
  --muted: #8a8f99;          /* texto secundário */
  --muted-2: #aab0ba;

  --card: #f4f4f5;           /* fundo dos cards de opção */
  --card-hover: #ececee;
  --card-active: #fdecef;    /* opção selecionada (coral suave) */
  --line: #e7e8ea;

  --bg: #ffffff;

  /* cards informativos */
  --warn-bg: #fdf6d8;
  --warn-border: #f4e7a8;
  --ok-bg: #e7f6ee;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(20, 22, 28, .05);
  --shadow-md: 0 8px 30px rgba(20, 22, 28, .08);
  --shadow-card: 0 10px 40px rgba(20, 22, 28, .06);

  --maxw: 460px;             /* largura da coluna do quiz */
  --footer-h: 96px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }   /* garante que o atributo hidden vença regras display:flex */

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100dvh; display: flex; flex-direction: column; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----------------------------------------------------------------- TOPBAR */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px 12px;
  background: var(--bg);
  max-width: 620px; margin: 0 auto; width: 100%;
}
.backbtn {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-2);
  transition: background .15s;
}
.backbtn:hover { background: var(--card); }
.backbtn:disabled { opacity: 0; pointer-events: none; }
.topbar-spacer { flex: 0 0 34px; }

.stepper { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; gap: 7px; }
.stepper .stage-label { font-size: 13px; font-weight: 600; color: var(--coral); letter-spacing: .2px; }
.stepper .track { position: relative; width: 100%; max-width: 340px; height: 14px; display: flex; align-items: center; }
.stepper .track .rail { position: absolute; left: 0; right: 0; height: 4px; background: var(--line); border-radius: 999px; }
.stepper .track .fill { position: absolute; left: 0; height: 4px; background: var(--coral); border-radius: 999px; transition: width .4s ease; }
.stepper .track .node {
  position: relative; z-index: 2; width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--line); margin: 0 auto;
  transition: all .3s;
}
.stepper .track .nodes { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; }
.stepper .track .node.done { background: var(--coral); border-color: var(--coral); }
.stepper .track .node.current { background: var(--coral); border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-soft); }

/* --------------------------------------------------------------- COUNTDOWN */
.countdown {
  position: sticky; top: 0; z-index: 45;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px; background: var(--coral-soft); color: var(--coral-dark);
  font-size: 14px; font-weight: 500; width: 100%;
}
.countdown strong { font-weight: 800; font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------------- STAGE */
.stage {
  flex: 1 1 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 20px 40px;
}
.screen {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  animation: fadeUp .35s ease both;
}
.screen.wide { max-width: 720px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.has-footer .stage { padding-bottom: calc(var(--footer-h) + 20px); }

/* Títulos / textos */
.q-title { font-size: 27px; line-height: 1.18; font-weight: 800; text-align: center; letter-spacing: -.4px; margin: 8px 0 0; }
.q-sub { text-align: center; color: var(--muted); font-size: 15px; margin: 12px 0 0; line-height: 1.4; }
.q-title .hl { color: var(--coral); }
.q-title .hl-green { color: var(--green); }
.screen-pad { margin-top: 26px; }

/* ------------------------------------------------------------ AGE GATE (1) */
.pill-badge {
  display: inline-flex; align-items: center; gap: 6px; margin: 6px auto 0;
  padding: 7px 14px; background: var(--card); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.age-head { text-align: center; }
.age-head h1 { font-size: 30px; font-weight: 800; margin: 14px 0 6px; letter-spacing: -.5px; }
.age-head p { color: var(--muted); margin: 0; font-size: 15px; }
.age-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.age-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/3.4;
  background: linear-gradient(160deg, #eef0f2, #e3e6ea); display: flex; align-items: flex-end;
  transition: transform .15s, box-shadow .15s;
}
.age-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.age-card .ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 54px; opacity: .55; }
.age-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.age-card .age-btn {
  position: relative; z-index: 2; margin: 12px; width: calc(100% - 24px);
  background: var(--coral); color: #fff; border-radius: var(--radius-pill);
  padding: 12px 16px; font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: space-between;
}
.age-card .age-btn svg { width: 18px; height: 18px; }
.age-skip { display: block; text-align: center; margin: 26px auto 0; font-weight: 700; color: var(--ink); font-size: 16px; padding: 8px; }
.age-skip svg { width: 14px; height: 14px; vertical-align: -1px; margin-left: 4px; }

/* ------------------------------------------------------------- OPTION LIST */
.options { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--card); border-radius: var(--radius); padding: 18px 18px;
  font-size: 16px; font-weight: 500; color: var(--ink); position: relative;
  transition: background .12s, transform .08s, box-shadow .12s; border: 2px solid transparent;
}
.opt:hover { background: var(--card-hover); }
.opt:active { transform: scale(.99); }
.opt.selected { background: var(--card-active); border-color: var(--coral); }
.opt .emoji { font-size: 22px; line-height: 1; flex: 0 0 auto; }
.opt .opt-main { flex: 1 1 auto; }
.opt .opt-main .opt-label { font-weight: 600; }
.opt .opt-main .opt-desc { color: var(--muted); font-size: 13.5px; font-weight: 400; margin-top: 2px; }
.opt .plus {
  flex: 0 0 auto; width: 22px; height: 22px; color: var(--muted-2);
  display: grid; place-items: center; transition: transform .15s, color .15s;
}
.opt.selected .plus { color: var(--coral); transform: rotate(45deg); }
.opt .plus svg { width: 20px; height: 20px; }

/* opção com foto (tipo de corpo / zonas) */
.opt.photo { padding: 0; overflow: hidden; align-items: stretch; gap: 0; }
.opt.photo .thumb { flex: 0 0 92px; background: linear-gradient(150deg,#e9ebee,#dfe2e6); display: grid; place-items: center; font-size: 30px; color: #b9bec6; min-height: 78px; }
.opt.photo .thumb img { width: 100%; height: 100%; object-fit: cover; }
.opt.photo .opt-main { display: flex; align-items: center; padding: 0 18px; font-size: 17px; font-weight: 600; }
.opt.photo .plus { margin-right: 16px; }

/* banner de imagem (comida / sono / etc.) acima das opções */
.media-banner { width: 100%; border-radius: var(--radius); overflow: hidden; margin-top: 22px; aspect-ratio: 16/8.5; background: linear-gradient(150deg,#eef0f2,#e2e5ea); display: grid; place-items: center; color: #b7bcc4; font-size: 40px; }
.media-banner img { width: 100%; height: 100%; object-fit: cover; }
.media-banner + .options { margin-top: 14px; }
.statement-icon { width: 76px; height: 76px; margin: 18px auto 4px; border-radius: 20px; background: var(--card); display: grid; place-items: center; font-size: 40px; overflow: hidden; }
.statement-icon img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------- NUMBER / INPUT */
.unit-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.unit-toggle button { font-size: 15px; font-weight: 700; color: var(--ink-2); padding: 9px 18px; border-radius: var(--radius-pill); transition: all .15s; }
.unit-toggle button.active { background: var(--coral); color: #fff; }

.num-wrap { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 54px 0 8px; }
.num-input {
  font-size: 52px; font-weight: 800; color: var(--ink); text-align: right;
  border: none; outline: none; background: transparent; width: 150px;
  border-bottom: 2px solid var(--line); padding-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.num-input::placeholder { color: var(--muted-2); }
.num-unit { font-size: 30px; font-weight: 500; color: var(--muted); }

.feedback {
  margin: 26px auto 0; max-width: 420px; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px; text-align: center;
  font-size: 15px; line-height: 1.45; color: var(--ink-2); background: #fff;
  box-shadow: var(--shadow-sm);
}
.feedback b { color: var(--amber); }
.feedback.ok b { color: var(--green); }
.feedback.warn b { color: var(--coral); }

.text-input-wrap { margin: 60px 0 0; text-align: center; }
.text-input {
  font-size: 34px; font-weight: 800; text-align: center; color: var(--ink);
  border: none; outline: none; background: transparent; width: 100%; max-width: 340px;
  border-bottom: 2px solid var(--line); padding: 6px 0;
}
.text-input::placeholder { color: var(--muted-2); font-weight: 600; }

.email-field {
  width: 100%; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 17px 18px; font-size: 16px; outline: none; transition: border-color .15s;
}
.email-field:focus { border-color: var(--coral); }
.privacy { display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.privacy a { color: var(--muted); }
.privacy svg { flex: 0 0 auto; width: 14px; height: 14px; margin-top: 1px; }

/* -------------------------------------------------------- INTERSTITIALS */
.inter { padding-top: 12px; }
.inter .badge-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--card);
  display: grid; place-items: center; font-size: 24px; margin-bottom: 18px;
}
.inter h2 { font-size: 26px; font-weight: 800; line-height: 1.2; margin: 0 0 16px; letter-spacing: -.3px; }
.inter h2 .hl-green { color: var(--green); }
.inter p { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin: 0 0 14px; }
.inter p b { font-weight: 700; color: var(--ink); }
.inter .inter-photo { width: 100%; border-radius: var(--radius); margin-top: 8px; aspect-ratio: 16/10; background: linear-gradient(150deg,#eef0f2,#e2e5ea); display: grid; place-items: center; color: #b7bcc4; font-size: 40px; overflow: hidden; }
.inter .inter-photo img { width: 100%; height: 100%; object-fit: cover; }

/* donut de macros (tela 7) */
.macro-wrap { display: grid; place-items: center; margin-top: 18px; }
.macro-legend { display: flex; gap: 26px; justify-content: center; margin-top: 6px; }

/* ----------------------------------------------------------- BMI / GAUGE */
.bmi-block { margin-top: 30px; }
.bmi-head { display: flex; align-items: center; justify-content: center; gap: 14px; }
.bmi-head .bmi-num { font-size: 44px; font-weight: 800; letter-spacing: -1px; }
.bmi-head .bmi-cap b { display: block; font-size: 16px; font-weight: 700; }
.bmi-head .bmi-cap span { font-size: 14px; color: var(--muted); }
.gauge { margin: 22px auto 0; max-width: 360px; }
.gauge .ticks-top, .gauge .ticks-bot { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; }
.gauge .ticks-bot { color: var(--ink-2); font-weight: 600; margin-top: 6px; }
.bmi-text { text-align: center; color: var(--ink-2); font-size: 15px; line-height: 1.5; margin: 22px auto 0; max-width: 430px; }

/* ----------------------------------------------------- RESULT / PROFILE */
.result-title { text-align: center; font-size: 24px; font-weight: 800; margin: 6px 0 0; }
.rcard { border-radius: var(--radius-lg); padding: 18px; margin-top: 16px; background: #fff; box-shadow: var(--shadow-card); }
.rcard.gray { background: var(--card); box-shadow: none; }
.rcard.warn { background: var(--warn-bg); box-shadow: none; }
.rcard.ok { background: var(--ok-bg); box-shadow: none; }
.rcard h4 { margin: 0 0 4px; font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.rcard p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.rcard .tiny { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.bmi-mini-head { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.bmi-mini-head .muted { color: var(--muted); }
.zone-labels { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); margin-top: 7px; }
.stats-row { display: flex; gap: 14px; align-items: stretch; }
.stats-list { flex: 1 1 auto; display: flex; flex-direction: column; gap: 14px; }
.stat .lbl { font-size: 12px; color: var(--muted); }
.stat .val { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.stats-photo { flex: 0 0 110px; border-radius: 14px; background: linear-gradient(150deg,#e6e9ed,#dde0e5); display: grid; place-items: center; color: #b7bcc4; font-size: 30px; overflow: hidden; }
.stats-photo img { width: 100%; height: 100%; object-fit: cover; }
.nih-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.nih-badge .nih { background: #1b2a5b; color: #fff; font-weight: 800; font-size: 10px; padding: 3px 6px; border-radius: 5px; letter-spacing: .5px; }

/* projeção (gráfico de linha) */
.proj-disclaimer { text-align: center; color: var(--muted-2); font-size: 12.5px; margin-top: 16px; line-height: 1.4; }
.what-say { text-align: center; font-weight: 800; font-size: 18px; margin: 26px 0 14px; }

/* testimonial */
.testi { background: var(--card); border-radius: var(--radius); padding: 20px; }
.testi.white { background: #fff; box-shadow: var(--shadow-card); text-align: center; }
.stars { color: var(--amber); font-size: 15px; letter-spacing: 1px; margin: 4px 0 10px; }
.testi .name { font-weight: 700; }
.testi .name span { color: var(--muted); font-weight: 500; }
.testi .quote { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin-top: 8px; }
.testi-head { font-weight: 800; }
.carousel-dots { display: flex; gap: 7px; justify-content: center; margin-top: 14px; }
.carousel-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2); opacity: .4; transition: opacity .2s; }
.carousel-dots i.on { opacity: 1; background: var(--ink-2); }

/* ----------------------------------------------------------- LOADING */
.loading-screen { text-align: center; padding-top: 20px; }
.loading-screen h2 { font-size: 24px; font-weight: 800; }
.loading-screen .sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.load-rows { margin: 28px auto 0; max-width: 380px; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.load-row .lr-top { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 7px; }
.load-row .lr-top .lr-name { font-weight: 600; color: var(--muted); }
.load-row.active .lr-name, .load-row.done .lr-name { color: var(--ink); }
.load-row .lr-bar { height: 7px; background: var(--line); border-radius: 999px; overflow: hidden; }
.load-row .lr-bar i { display: block; height: 100%; width: 0; background: var(--coral); border-radius: 999px; transition: width .3s linear; }
.load-row .lr-pct { font-variant-numeric: tabular-nums; color: var(--muted); font-weight: 600; }
.load-row .check { color: var(--green); }
.single-progress { margin: 30px auto 0; max-width: 420px; }
.single-progress .sp-top { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; font-weight: 600; }
.single-progress .sp-bar { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.single-progress .sp-bar i { display: block; height: 100%; background: var(--coral); border-radius: 999px; width: 0; transition: width .25s linear; }

/* modal de interrupção */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,17,22,.55); z-index: 60; display: grid; place-items: center; padding: 24px; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: #fff; border-radius: var(--radius-lg); padding: 26px 22px; width: 100%; max-width: 400px; box-shadow: var(--shadow-md); animation: pop .25s ease; }
@keyframes pop { from { transform: scale(.94); opacity: .6; } to { transform: none; opacity: 1; } }
.modal h3 { text-align: center; font-size: 20px; font-weight: 800; margin: 0 0 18px; line-height: 1.25; }
.modal .modal-opts { display: flex; flex-direction: column; gap: 11px; }
.modal .modal-opts button { background: var(--card); border-radius: 14px; padding: 16px; font-size: 16px; font-weight: 600; color: var(--ink); transition: background .12s; }
.modal .modal-opts button:hover { background: var(--card-hover); }

/* ------------------------------------------------------ PLANO PRONTO (61) */
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 16px; }
.metric .m-top { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.metric .m-top .m-val { color: var(--ink); }
.metric .m-bar { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; }
.metric .m-bar i { display: block; height: 100%; border-radius: 999px; }
.benefits { background: linear-gradient(160deg,#fff6ee,#fdefe6); border-radius: var(--radius); padding: 16px 18px; margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.benefit { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.benefit .be { font-size: 18px; flex: 0 0 auto; }
.benefit b { color: var(--ink); }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.photo-grid .pg { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; position: relative; background: linear-gradient(150deg,#e6e9ed,#d7dbe0); display: flex; align-items: flex-end; }
.photo-grid .pg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-grid .pg span { position: relative; z-index: 2; color: #fff; font-weight: 700; font-size: 15px; padding: 14px; text-shadow: 0 1px 6px rgba(0,0,0,.5); background: linear-gradient(transparent, rgba(0,0,0,.45)); width: 100%; }
.section-h { text-align: center; font-size: 21px; font-weight: 800; margin: 28px 0 4px; }

/* stepper de transformação (pernas) */
.transform-steps { display: flex; gap: 6px; margin-top: 12px; }
.transform-steps .ts { flex: 1; text-align: center; padding: 9px 6px; font-size: 14px; font-weight: 700; color: var(--coral-dark); background: var(--coral-soft); clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 12% 50%); }
.transform-steps .ts:first-child { clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%); }
.transform-steps .ts.active { background: var(--coral); color: #fff; }
.legs-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.legs-triptych { border-radius: var(--radius); overflow: hidden; }
.legs-triptych img { width: 100%; height: auto; display: block; }
.legs-grid .lg { aspect-ratio: 3/4; border-radius: 12px; background: linear-gradient(150deg,#e6e9ed,#d7dbe0); display: grid; place-items: center; color: #b7bcc4; font-size: 26px; overflow: hidden; }
.legs-grid .lg img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------- SCRATCH CARD */
.scratch-wrap { display: grid; place-items: center; margin-top: 34px; }
.scratch {
  position: relative; width: 240px; height: 240px; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scratch .reveal {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 40%, #8a63e6, #6a3fc0);
  color: #fff;
}
.scratch .reveal .pct { font-size: 56px; font-weight: 900; line-height: 1; }
.scratch .reveal .lbl { font-size: 15px; font-weight: 600; margin-top: 6px; opacity: .95; }
.scratch canvas { position: absolute; inset: 0; touch-action: none; }
.scratch-hint { color: var(--muted); font-size: 13px; margin-top: 16px; text-align: center; }

/* --------------------------------------------------------------- OFFER */
.offer { max-width: 480px; }
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.cmp .col { padding: 0 0 16px; }
.cmp .col .hd { text-align: center; font-weight: 700; padding: 12px; font-size: 15px; }
.cmp .col.before .hd { color: var(--ink); }
.cmp .col.after .hd { color: var(--coral); }
.cmp .col .ph { aspect-ratio: 1/1.4; background: linear-gradient(150deg,#eef0f2,#e3e6ea); display: grid; place-items: center; color: #b7bcc4; font-size: 34px; overflow: hidden; }
.cmp .col .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.cmp .col .stat-line { padding: 10px 14px 0; font-size: 13px; }
.cmp .col .stat-line .k { color: var(--muted); }
.cmp .col .stat-line .v { font-weight: 700; }
.cmp .bar { height: 6px; border-radius: 999px; margin: 8px 14px 0; background: var(--line); overflow: hidden; }
.cmp .seg-bar { display: flex; gap: 6px; margin: 12px 14px 2px; }
.cmp .seg-bar i { flex: 1; height: 7px; border-radius: 999px; background: var(--line); }
.cmp .bar i { display: block; height: 100%; border-radius: 999px; }

.plan-panel { background: linear-gradient(160deg,#7c5cd6,#6336bd); border-radius: var(--radius-lg); padding: 22px 20px; margin-top: 18px; color: #fff; text-align: center; }
.plan-panel .email-chip { display: inline-block; background: rgba(255,255,255,.2); padding: 6px 14px; border-radius: 999px; font-size: 13px; margin-bottom: 12px; }
.plan-panel h3 { font-size: 19px; font-weight: 800; margin: 0 0 16px; }
.plan-panel ul { list-style: none; padding: 0; margin: 0; text-align: left; display: inline-flex; flex-direction: column; gap: 11px; }
.plan-panel li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.plan-panel li svg { flex: 0 0 auto; width: 18px; height: 18px; color: #b6f0c4; }

.plans-h { text-align: center; font-size: 22px; font-weight: 800; margin: 28px 0 16px; }
.plan { position: relative; display: flex; align-items: center; gap: 14px; border: 2px solid var(--line); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; transition: border-color .15s, background .15s; }
.plan:hover { border-color: var(--muted-2); }
.plan.selected { border-color: var(--coral); background: var(--coral-soft); }
.plan .radio { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--muted-2); display: grid; place-items: center; }
.plan.selected .radio { border-color: var(--coral); }
.plan.selected .radio::after { content: ''; width: 11px; height: 11px; border-radius: 50%; background: var(--coral); }
.plan .p-main { flex: 1 1 auto; }
.plan .p-name { font-weight: 700; font-size: 16px; }
.plan .p-old { color: var(--muted-2); font-size: 13px; text-decoration: line-through; margin-top: 2px; }
.plan .p-price { text-align: right; }
.plan .p-price .big { font-size: 24px; font-weight: 800; }
.plan .p-price .per { font-size: 12px; color: var(--muted); }
.plan .p-price .old { font-size: 12px; color: var(--muted-2); text-decoration: line-through; }
.badge-pop { position: absolute; top: -10px; left: 54px; background: var(--coral); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .4px; padding: 3px 9px; border-radius: 999px; }

.featured { text-align: center; margin-top: 30px; }
.featured .ft-h { font-size: 12px; letter-spacing: 1px; color: var(--muted); font-weight: 700; }
.featured .logos { display: flex; gap: 22px; justify-content: center; align-items: center; margin-top: 12px; opacity: .55; font-weight: 800; font-size: 18px; flex-wrap: wrap; }

/* checkout */
.checkout-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; margin-top: 16px; }
.checkout-box h4 { margin: 0 0 14px; font-size: 17px; font-weight: 800; }
.ck-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: 15px; }
.ck-line.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 800; font-size: 17px; }
.ck-line .disc { color: var(--green); }
.pay-methods { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.pay { display: flex; align-items: center; gap: 12px; border: 2px solid var(--line); border-radius: 14px; padding: 14px 16px; font-weight: 600; }
.pay.selected { border-color: var(--coral); background: var(--coral-soft); }
.pay .radio { flex: 0 0 20px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--muted-2); display: grid; place-items: center; }
.pay.selected .radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--coral); }
.pay .pm-name { flex: 1; }
.pay .pm-logo { font-weight: 800; color: var(--ink-2); }
.guarantee { background: var(--card); border-radius: var(--radius); padding: 18px; margin-top: 18px; display: flex; gap: 14px; }
.guarantee .seal { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; color: var(--green); font-size: 26px; }
.guarantee h5 { margin: 0 0 6px; font-size: 15px; font-weight: 800; }
.guarantee p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.trust-stats { display: flex; justify-content: center; gap: 28px; margin-top: 22px; text-align: center; }
.trust-stats .ts-v { font-size: 20px; font-weight: 800; }
.trust-stats .ts-l { font-size: 12px; color: var(--muted); }

.reviews { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.review { display: flex; gap: 12px; }
.review .av { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg,#e6e9ed,#d7dbe0); display: grid; place-items: center; color: #b7bcc4; overflow: hidden; }
.review .av img { width: 100%; height: 100%; object-fit: cover; }
.review .r-name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.review .r-name .vf { color: var(--blue); }
.review .r-rec { color: var(--muted); font-size: 12px; }
.review .r-text { font-size: 13.5px; color: var(--ink-2); margin-top: 4px; line-height: 1.45; }

/* ------------------------------------------------------------- FOOTER CTA */
.footer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(transparent, #fff 22%);
  display: flex; justify-content: center;
}
.btn { border-radius: var(--radius-pill); font-weight: 700; font-size: 17px; padding: 17px 28px; transition: transform .1s, background .15s, opacity .15s; }
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--coral); color: #fff; width: 100%; max-width: var(--maxw); box-shadow: 0 8px 24px rgba(232,85,106,.32); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-primary:disabled { background: var(--coral-disabled); box-shadow: none; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn-dark { background: #16181d; color: #fff; }
.btn-ghost { background: transparent; color: var(--coral); font-weight: 700; }

.inline-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 50px; }

/* utilidades */
.center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.hidden { display: none !important; }

/* responsivo */
@media (max-width: 420px) {
  .q-title { font-size: 24px; }
  .age-head h1 { font-size: 26px; }
  .num-input { font-size: 44px; width: 130px; }
}
@media (min-width: 640px) {
  .stage { padding-top: 18px; }
}

/* ---- oferta/checkout: melhorias de fidelidade ---- */
.seal-img { flex: 0 0 60px; width: 60px; height: 60px; display: grid; place-items: center; }
.seal-img img { width: 100%; height: 100%; object-fit: contain; }
.pm-logo { display: inline-flex; align-items: center; gap: 6px; }
.pm-card { height: 20px; width: auto; }
.app-promo { text-align: center; margin-top: 24px; }
.app-promo p { font-weight: 700; font-size: 15px; margin: 0 0 12px; }
.app-badges { display: flex; gap: 12px; justify-content: center; align-items: center; }
.badge-apple .gp-ico { width: 22px; height: 22px; object-fit: contain; }
.badge-apple { display: inline-flex; align-items: center; gap: 8px; background: #000; color: #fff; border-radius: 9px; padding: 8px 14px; height: 44px; box-sizing: border-box; text-decoration: none; }
.badge-apple svg { width: 22px; height: 22px; fill: #fff; }
.badge-apple span { display: flex; flex-direction: column; line-height: 1.05; font-weight: 700; font-size: 16px; text-align: left; }
.badge-apple small { font-size: 9px; font-weight: 500; }
.fb-rating { display: flex; align-items: center; gap: 14px; justify-content: center; margin: 18px 0 10px; }
.fb-rating .fb-score { font-size: 38px; font-weight: 800; color: var(--ink); line-height: 1; }
.fb-rating .fb-count { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.review .r-meta { font-size: 11.5px; color: var(--muted-2); margin-top: 2px; }
.press-img { display: block; max-width: 92%; margin: 14px auto 0; opacity: .82; }
.fb-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.fb-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.fb-card .fb-photo { aspect-ratio: 1/1; background: var(--card); }
.fb-card .fb-photo img { width: 100%; height: 100%; object-fit: cover; }
.fb-card .fb-body { padding: 10px 12px 12px; }
.fb-card .fb-body .r-name { font-size: 13px; }
.fb-card .fb-body .stars { font-size: 12px; margin: 2px 0 4px; }
.fb-card .fb-text { font-size: 12px; color: var(--ink-2); line-height: 1.35; }
.vf svg { width: 15px; height: 15px; vertical-align: middle; }
.fb-card .fb-body .r-name { display: flex; align-items: center; gap: 5px; }
