/* calistenia-masculina — visual Inlead (tokens do funnel.json + CSS inlead.digital) */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --theme: #166534;
  --theme-hover: #14532d;
  --title: #030712;
  --content: #334155;
  --bg: #ffffff;
  --line: #ededed;
  --border: #dbdbdb;
  --radius: 8px;
  --element: 56px;
}

html, body {
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--content);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

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

.hdr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  background: #fff;
}
.logo-img { height: 52px; width: auto; display: block; }
.back-btn {
  position: absolute;
  left: 0.75rem;
  color: var(--title);
  display: flex;
  align-items: center;
  text-decoration: none;
}
.back-btn svg { width: 22px; height: 22px; }

.progress-container { width: 100%; height: 3px; background: #eee; }
.progress-bar { height: 100%; background: var(--theme); }

.quiz {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.content { line-height: 1.4; max-width: 100%; color: var(--content); overflow-wrap: break-word; word-break: normal; white-space: normal; }
.content p, .content h1, .content h2, .content h3 { overflow-wrap: break-word; word-break: normal; white-space: normal; max-width: 100%; }
.content .ql-align-center { text-align: center; }
.content h1, .content h2, .content h3 { font-weight: 700; color: var(--title); line-height: 1.2; }
.content h1 { font-size: 32px; margin: 0; }
.content h2 { font-size: 24px; margin: 0.1em 0; }
.content h3 { font-size: 18px; margin: 0.15em 0; font-weight: 500; }
.content p { font-size: 16px; margin: 0.35em 0; color: var(--content); font-weight: 400; }
.content .ql-size-small { font-size: 13px; }
.content strong, .content b { font-weight: 700; }

.layer-img {
  display: block;
  height: auto;
  margin: 0.75rem auto;
  max-width: 100%;
}

/* Inlead: wrapper com padding-bottom 100% + object-fit cover */
.img-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  margin: 0.75rem auto;
}
.img-frame .layer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  object-position: center;
}
.legal .content p { margin: 0.15em 0; color: #09090b; }

.opt-grid { display: grid; gap: 0.7rem; width: 100%; margin: 0.75rem 0; }
.opt-grid.cols-1 { grid-template-columns: 1fr; }
.opt-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.opt-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.opt {
  min-height: var(--element);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: #030712;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.opt.contrast {
  background: rgba(22, 101, 52, 0.1);
  border: 1px solid rgba(22, 101, 52, 0.5);
}
.opt.horizontal { justify-content: flex-start; text-align: left; }
.opt.vertical { flex-direction: column; text-align: center; padding: 0.85rem 0.5rem; }
.opt-grid.cols-3 .opt.vertical {
  padding: 0.4rem 0.3rem 0.55rem;
  gap: 0.35rem;
  min-height: 0;
}
.opt-grid.cols-3 .opt.vertical .opt-img,
.opt-grid.cols-3 .opt.vertical img {
  width: 100%;
  height: auto;
  max-height: 46vh;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 6px;
}
.opt-grid.cols-3 .opt-label,
.opt-grid.cols-3 .opt-label p { font-size: 13px; }
.quiz.stage-center {
  justify-content: center;
}
.quiz.stage-center .content { margin-bottom: 0.15rem; }
.quiz.stage-center .opt-grid { margin-top: 0.45rem; }
.opt:hover { border-color: var(--theme); }
.opt:active { border-color: var(--theme); }
.opt.selected {
  background: rgba(22, 101, 52, 0.18);
  border-color: var(--theme);
  color: #030712;
}
.opt.selected .opt-label,
.opt.selected .opt-label p { color: #030712; }
.opt-label { flex: 1; font-size: 16px; font-weight: 400; line-height: 1.3; color: #030712; }
.opt-label p { margin: 0; font-size: 16px; font-weight: 400; color: #030712; }
.opt-label .ql-align-center { text-align: inherit; }
.opt-img,
.opt.horizontal .opt-img,
.opt.horizontal img {
  width: 88px;
  height: 66px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
}
.opt-grid.img-lg .opt.horizontal .opt-img,
.opt-grid.img-lg .opt.horizontal img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 4px;
}
.opt-grid.img-lg .opt.horizontal {
  min-height: var(--element);
  padding: 0.4rem 0.75rem;
  align-items: center;
  gap: 0.65rem;
}
.opt-grid.img-43,
.opt-grid.img-sq.cols-1 {
  gap: 0.5rem;
  margin: 0.4rem 0;
}
.opt-grid.img-43 .opt.horizontal .opt-img,
.opt-grid.img-43 .opt.horizontal img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  /* sem fundo branco: a caixa destoava do cartao verde da opcao */
  background: transparent;
  border-radius: 4px;
}
.opt-grid.img-43 .opt.horizontal {
  min-height: var(--element);
  padding: 0.35rem 0.7rem;
  gap: 0.6rem;
}
.opt-grid.img-sq .opt.horizontal .opt-img,
.opt-grid.img-sq .opt.horizontal img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.opt-grid.img-sq .opt.horizontal {
  min-height: var(--element);
  padding: 0.35rem 0.7rem;
  gap: 0.6rem;
}
.opt-emoji { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.opt.vertical .opt-img,
.opt.vertical img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.opt-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 3px;
  border: 1px solid #166534;
  border-radius: 50%;
  background: #fff;
  color: #166534;
}
.opt.selected .opt-chevron,
.opt:active .opt-chevron {
  background: #fff;
  color: #166534;
  border-color: #166534;
}
.opt-circle {
  width: 22px; height: 22px; border: 2px solid #ddd; border-radius: 50%;
  flex-shrink: 0; margin-left: auto;
}
.opt-check {
  width: 22px;
  height: 22px;
  border: 2px solid #9ca3af;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  margin-left: auto;
  box-sizing: border-box;
}
.opt.selected .opt-check {
  background: var(--theme);
  border-color: var(--theme);
}
.opt.selected .opt-check::after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  margin: 2px auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--element);
  width: 100%;
  margin: 0.85rem 0 0;
  padding: 0.85rem 1.25rem;
  background: var(--theme);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.cta:hover { background: var(--theme-hover); }
.cta.pulse { animation: cta-pulse 1.6s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22,101,52,.45); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(22,101,52,0); }
}

.alert {
  width: 100%;
  margin: 0.55rem 0;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  text-align: left;
  line-height: 1.45;
}
.alert.has-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
}
.alert-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: inherit;
}
.alert-icon svg { width: 22px; height: 22px; display: block; }
.alert.has-icon .content { flex: 1; min-width: 0; }
.alert .content,
.alert .content p,
.alert .content h2,
.alert .content h3 {
  margin: 0.2em 0;
  color: inherit;
}
.split-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.55rem;
  width: 100%;
  margin: 0.35rem 0 0.75rem;
}
.split-row .layer-img {
  margin: 0;
  flex-shrink: 0;
  max-height: 360px;
  object-fit: contain;
  object-position: center bottom;
  align-self: flex-end;
}
.split-row .split-opts {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.split-row .opt-grid {
  margin: 0;
  gap: 0.65rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-row .opt {
  flex: 1;
  min-height: var(--element);
  padding: 0.85rem 0.9rem;
}
.split-row .opt-label,
.split-row .opt-label p {
  font-size: 16px;
}

.args { display: grid; gap: 0.7rem; width: 100%; margin: 0.85rem 0; }
.args.cols-2 { grid-template-columns: 1fr 1fr; align-items: stretch; }
.args.cols-2 .arg:not(.photo-fill) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.args.cols-2 .arg.stats { justify-content: center; }
.args.cols-1 { grid-template-columns: 1fr; }
.arg {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,.12);
}
.arg img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin: 0;
  flex-shrink: 0;
}
.arg.photo-fill {
  display: flex;
  align-items: stretch;
}
.arg.photo-fill img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
}
.arg .content {
  padding: 0.8rem 0.65rem 1rem;
}
.arg .content p {
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  margin: 0.15em 0;
}
.arg .content p:first-child {
  font-size: 15px;
  margin-bottom: 0.35em;
}
.arg.stats .content {
  text-align: left;
  padding: 0.85rem 0.85rem 0.95rem;
}
.arg.stats .content p {
  margin: 0;
  line-height: 1.4;
}
.arg.stats .content p:nth-child(odd) {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0.7rem;
}
.arg.stats .content p:first-child { margin-top: 0; }
.arg.stats .content p:nth-child(even) {
  font-size: 15px;
  font-weight: 400;
  color: #334155;
  margin: 0.15rem 0 0.2rem;
}
.arg.stats .content strong { font-weight: 700; }

.spacer { width: 100%; }
.num-input {
  width: 100%;
  min-height: var(--element);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  margin: 0.75rem 0;
}

.loading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  flex: 1;
  min-height: 42vh;
}
.loading-block > .content {
  width: 100%;
  margin: 0;
}
/* Respiro entre o ultimo bloco de carregamento e o que vem logo abaixo.
   Usa seletor de irmao adjacente: so aplica quando ha conteudo depois,
   entao telas que sao SO carregamento (step31, step37) nao mudam. */
.loading-block + .content,
.loading-block + .carousel,
.loading-block + div {
  margin-top: 1.75rem;
}

.loading-block:has(.is-bar + .is-bar) {
  min-height: 0;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.85rem;
}
.loader-wrap {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.75rem;
  width: 100%;
}
.loader-wrap ~ .loader-wrap { display: none; }
.loader-wrap.is-off { display: none !important; }
.loader-wrap.is-on,
.loader-wrap.is-done { display: flex !important; }
.loader-wrap.is-bar {
  align-items: stretch;
  gap: 0.4rem;
  text-align: left;
}
.loader-wrap.is-bar .loader-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}
.loader-wrap.is-bar .loader-head .content {
  flex: 1;
  margin: 0;
  text-align: left;
}
.loader-wrap.is-bar .loader-head .content h2,
.loader-wrap.is-bar .loader-head .ql-align-center {
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}
.loader-wrap.is-bar .loader-pct {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  flex-shrink: 0;
}
.loader-wrap.is-bar .loader-bar {
  width: 100%;
  height: 14px;
  background: #e5e7eb;
  border-radius: 6px;
}
.loader-pct { font-size: 2rem; font-weight: 700; color: #14532d; line-height: 1; }
.loader-bar { width: min(280px, 86%); height: 8px; background: #e5e7eb; border-radius: 99px; overflow: hidden; }
.loader-bar > span { display: block; height: 100%; width: 0; background: var(--c, var(--theme)); }
.loader-circle {
  --p: 0;
  --c: #14532d;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--c) calc(var(--p) * 1%), #e5e7eb 0);
  margin: 0.35rem auto;
}
.loader-circle::before {
  content: "";
  width: 78%;
  height: 78%;
  background: #fff;
  border-radius: 50%;
  grid-area: 1 / 1;
}
.loader-circle .loader-pct {
  grid-area: 1 / 1;
  z-index: 1;
  font-size: 2.1rem;
  color: #14532d;
}

.pv { max-width: 480px; margin: 0 auto; padding: 1.25rem 1rem 3rem; }
.pv h1 { font-size: 1.45rem; line-height: 1.25; text-align: center; color: var(--title); margin-bottom: 0.8rem; }
.pv h2 { font-size: 1.15rem; margin: 0.35rem 0; }
.pv p { color: var(--content); line-height: 1.5; margin-bottom: 0.65rem; }
.price-grid { display: grid; gap: 1rem; margin: 1.25rem 0; }
.badge { display: inline-block; background: var(--theme); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.55rem; border-radius: 999px; margin-bottom: 0.5rem; }
.alert-box { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 0.85rem 1rem; margin: 0 0 0.6rem; text-align: left; }
.terms { font-size: 0.75rem; color: #64748b; text-align: center; margin-top: 1.25rem; }
.step15-img, .pv img.step15-img { width: 100%; height: auto; display: block; margin: 0 auto 1rem; }

/* Régua de altura/peso — mesma da calistenia, na cor do tema */
.ruler-container { width: 100%; max-width: 400px; margin: 0.5rem auto 0; display: flex; flex-direction: column; align-items: center; }
.unit-toggle { display: none; }
.ruler-value { font-size: 3.5rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; line-height: 1; display: flex; align-items: baseline; justify-content: center; width: 100%; }
.ruler-unit { font-size: 1rem; font-weight: 600; color: #999; margin-left: 0.25rem; }

.scroll-ruler-wrapper { position: relative; width: 100%; max-width: 400px; height: 80px; margin: 0 auto 1rem; overflow: hidden; }
.scroll-ruler-pointer { position: absolute; top: 0; left: 50%; width: 2px; height: 45px; background-color: var(--theme); transform: translateX(-50%); z-index: 10; pointer-events: none; }
.scroll-ruler-pointer::after { content: ''; position: absolute; bottom: -5px; left: -4px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--theme); }
.scroll-ruler-area { width: 100%; height: 100px; overflow-x: auto; overscroll-behavior-x: contain; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.scroll-ruler-area::-webkit-scrollbar { display: none; }
.scroll-ruler-area:active { cursor: grabbing; }
.scroll-ruler-track { display: flex; height: 80px; align-items: flex-start; padding: 0 calc(50% - 1px); border-top: 1px solid #ccc; margin-top: 0; }
.ruler-tick { position: relative; flex-shrink: 0; width: 10px; height: 15px; border-left: 1px solid #ccc; }
.ruler-tick.major { height: 30px; }
.ruler-tick.major::after { content: attr(data-val); position: absolute; top: 35px; left: -15px; width: 30px; text-align: center; font-size: 11px; font-weight: 600; color: #b0b0b0; }

.ruler-hint { color: #666; font-size: 0.85rem; margin-bottom: 1rem; text-align: center; width: 100%; }

.info-box { background: #f9f9f9; border-radius: 12px; padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; width: 100%; text-align: left; }
.info-icon { width: 20px; height: 20px; background: #f0fdf4; color: var(--theme); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.75rem; font-weight: bold; flex-shrink: 0; margin-top: 2px; }
.info-text { font-size: 0.85rem; color: #666; line-height: 1.5; }
.info-text strong { color: #f28b4c; font-weight: 700; }

@media (max-width: 360px) {
  .content h1 { font-size: 1.5rem; }
  .opt-grid.cols-3 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .logo-img { height: 70px; }
  .quiz, .pv { max-width: 480px; }
}

.metric { width: 100%; margin: 0.75rem 0 1rem; }
.metric-title { font-size: 0.9rem; font-weight: 700; color: var(--title); margin-bottom: 0.35rem; text-align: left; }
.metric-track { position: relative; padding-top: 2.15rem; }
.metric-bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.32rem 0.7rem;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
.metric-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0f172a;
}
.metric-bar {
  position: relative;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, #3b82f6 0%, #22c55e 32%, #eab308 58%, #ef4444 100%);
}
.metric-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 3px solid #166534;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.metric-legends {
  display: flex;
  justify-content: space-between;
  gap: 0.25rem;
  margin-top: 0.4rem;
  font-size: 11px;
  color: #64748b;
}
.metric-dots-track {
  height: 12px;
  border-radius: 99px;
  background-image: radial-gradient(circle closest-side, #e5e7eb 68%, transparent 70%);
  background-size: 14px 12px;
  background-repeat: repeat-x;
  overflow: hidden;
}
.metric-dots-fill {
  display: block;
  height: 12px;
  background-image: radial-gradient(circle closest-side, var(--fill, #16a34a) 68%, transparent 70%);
  background-size: 14px 12px;
  background-repeat: repeat-x;
}

.timer-val { font-weight: 800; font-variant-numeric: tabular-nums; }

.timer.clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.55rem 0 0.95rem;
  background: transparent;
  border: 0;
  padding: 0;
}
.clock-box {
  width: 76px;
  height: 76px;
  background: #dbeafe;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.timer-min, .timer-seg {
  font-size: 1.85rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.clock-box small {
  font-size: 0.72rem;
  font-weight: 600;
  color: #2563eb;
  margin-top: 0.18rem;
}
.clock-sep {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2563eb;
  padding-bottom: 0.45rem;
}

.half-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  margin: 0.4rem 0 0.7rem;
  align-items: stretch;
}
.half-grid .alert {
  margin: 0;
  width: 100%;
  text-align: center;
}
.half-grid .alert .content,
.half-grid .alert .content p,
.half-grid .alert .content h3 {
  text-align: center;
  font-size: 0.84rem;
}
.half-grid .metric { margin: 0; width: 100%; }
.half-grid .layer-img {
  width: 100% !important;
  height: auto;
  margin: 0;
  object-fit: cover;
}

.arg-emoji {
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  text-align: center;
  padding: 0.85rem 0 0.15rem;
}

.price-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0.85rem 0 1.2rem;
  text-align: left;
}
.price-badge {
  display: block;
  width: 100%;
  background: #16a34a;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.55rem 0.65rem;
  border-radius: 12px 12px 0 0;
  margin: 0;
}
.price-block.is-info .price-badge { background: #2563eb; }
.price-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1.5px solid #166534;
  border-radius: 12px;
  padding: 0.95rem 0.9rem;
  text-align: left;
}
.price-block.featured .price-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.price-block.is-info .price-card { border-color: #2563eb; }
.price-radio { display: none; }
.price-info { flex: 1; min-width: 0; }
.price-info p,
.price-info h3,
.price-info h4 {
  margin: 0.12em 0;
  line-height: 1.3;
}
.price-info p,
.price-info p strong,
.price-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}
.price-info h4 {
  font-size: 1.08rem;
  font-weight: 400;
}
.price-info h4 strong { font-size: 1.12rem; }
.price-info h4:first-child,
.price-info h4:first-child strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}
.price-daybox {
  background: #f3f4f6;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  text-align: center;
  min-width: 88px;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.price-daybox .price-now {
  font-size: 1.28rem;
  font-weight: 800;
  color: #111;
  margin: 0.15rem 0;
}
.price-block .cta {
  margin-top: 0.55rem;
  font-size: 1.08rem;
}

.chart-wrap { width: 100%; margin: 0.5rem 0 1.1rem; padding: 0.35rem 0 0; }
.chart-svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-line {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: chart-draw 1.15s ease forwards;
}
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}
/* Cada rotulo e ancorado no x do ponto que descreve (o build escreve o "left"
   de cada um). Com flex "space-between" o "Sem 08" colava na borda direita,
   longe da bolinha verde — rotulo e ponto apontavam para lugares diferentes. */
.chart-axis { position: relative; height: 1.05rem; margin-top: 0.15rem; font-size: 12px; color: #94a3b8; }
.chart-axis span { position: absolute; top: 0; transform: translateX(-50%); white-space: nowrap; }

/* --- grafico de projecao de peso (step42) --- */
.chart-box { position: relative; width: 100%; }
.chart-box .chart-svg { display: block; }

.chart-grid { stroke: #d7dee7; stroke-width: 1; stroke-dasharray: 4 5; }
.chart-frame { stroke: #d7dee7; stroke-width: 1; }

.chart-area {
  opacity: 0;
  animation: chart-fade 0.9s ease 0.15s forwards;
}
.chart-dot {
  opacity: 0;
  animation: chart-fade 0.4s ease forwards;
}
.chart-dot-now { animation-delay: 0.85s; }
.chart-dot-goal { animation-delay: 1.35s; }
@keyframes chart-fade { to { opacity: 1; } }

.chart-badge {
  position: absolute;
  padding: 5px 11px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
  opacity: 0;
  animation: chart-fade 0.45s ease forwards;
}
.chart-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 10px;
  height: 10px;
  background: inherit;
  border-radius: 2px;
  transform: rotate(45deg);
}

/* Os dois baloes sao centrados no ponto: o balao acompanha a largura do texto,
   entao 2 ou 3 digitos de peso continuam cabendo sem estourar a lateral. */
.chart-badge-now,
.chart-badge-goal {
  transform: translate(-50%, -100%);
  margin-top: -11px;
}
.chart-badge-now::after,
.chart-badge-goal::after { left: 50%; margin-left: -5px; }

.chart-badge-now { background: #ef4444; animation-delay: 0.85s; }
.chart-badge-goal { background: var(--theme); animation-delay: 1.35s; }

@media (max-width: 359px) {
  .chart-badge { font-size: 0.7rem; padding: 4px 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .chart-area, .chart-dot, .chart-badge { opacity: 1; animation: none; }
}

.carousel-wrap { width: 100%; margin: 0.5rem 0 0.9rem; }
.carousel {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0.15rem 16% 0.45rem 0;
  margin: 0;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  background: #fff;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px -10px rgba(15, 23, 42, 0.28);
}
.carousel-card img { width: 100%; height: auto; display: block; }
.carousel-card .content { padding: 0.65rem 0.75rem; font-size: 0.85rem; color: #6b7280; text-align: center; }
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.42rem;
  padding: 0.5rem 0 0.05rem;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d4d4d8;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.carousel-dot.is-on {
  width: 9px;
  height: 9px;
  background: #14532d;
}

.quotes { display: flex; flex-direction: column; gap: 0.85rem; margin: 1rem 0; }
.quote-card {
  display: flex;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0.85rem;
  text-align: left;
}
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.quote-stars { color: #facc15; -webkit-text-fill-color: #facc15; margin: 0 0 0.15rem; letter-spacing: 2px; font-size: 1.05rem; line-height: 1; }
.quote-name { font-size: 0.95rem; font-weight: 700; color: var(--title); margin: 0 0 0.3rem; }
.quote-text { font-size: 0.9rem; color: var(--content); margin: 0; line-height: 1.45; }

.faq { margin: 1rem 0 1.5rem; }
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.55rem;
  background: #fff;
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--title);
  list-style: none;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-right: 2.5px solid #166534;
  border-bottom: 2.5px solid #166534;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  margin-top: 0.5rem;
  transform: rotate(-135deg);
}
.faq-item .content { margin-top: 0.45rem; color: #6b7280; font-size: 0.9rem; }
