/* Projeto Musa Fitness — direção "MUSA PERFORMANCE"
   Paleta derivada dos assets oficiais do produto (logo e capas):
   magenta #E42478 sobre preto #0C0C0C, com off-white de leitura.
   Ver docs/DESIGN-DIRECTIONS.md. */

:root {
  --ink: #0B0A0D;
  --ink-2: #121016;
  --surface: #1A161F;
  --surface-2: #241D2C;

  --magenta: #E8237E;
  --magenta-hot: #FF3D93;
  --magenta-deep: #A5145A;
  --purple: #6A2AA8;

  --white: #FFFFFF;
  --off: #F1ECF3;
  --muted: #A699B0;
  --line: rgba(241, 236, 243, 0.12);

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;

  --wrap: 1120px;
  --wrap-narrow: 640px;
  --radius: 12px;
  --space-section: clamp(2.75rem, 6.5vw, 5rem);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--off);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  color: var(--white);
}

h1 { font-size: clamp(2.05rem, 8.5vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.65rem, 5.6vw, 2.6rem); }
h3 { font-size: 1rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.hl { color: var(--magenta); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.15rem; }
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: var(--space-section) 0; border-top: 1px solid var(--line); }
.hero { border-top: 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.6rem;
}

.section-lede { color: var(--muted); margin-bottom: 1.5rem; }

.skip-link {
  position: absolute; left: -999px;
  background: var(--magenta); color: var(--white);
  padding: 0.75rem 1rem; border-radius: 6px; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--magenta-hot);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Botões ---------- */
/* display:inline-block (e não flex) de propósito: o rótulo do CTA carrega o
   preço num <span>, e com flex o texto e o preço viram itens separados —
   quebravam em linhas diferentes e ganhavam um vão duplo. Em fluxo inline
   normal o rótulo quebra como texto comum. */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  text-wrap: balance;
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: linear-gradient(135deg, var(--magenta-hot), var(--magenta-deep));
  box-shadow: 0 10px 26px rgba(232, 35, 126, 0.32);
  transition: box-shadow 0.14s ease, filter 0.14s ease, transform 0.14s ease;
}
.btn:hover { filter: brightness(1.08); box-shadow: 0 14px 32px rgba(232, 35, 126, 0.42); }
.btn:active { transform: scale(0.985); }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 1.15rem 1.5rem; font-size: 1.06rem; }

/* ---------- Hero ---------- */
/* Hero e VSL são UMA sequência de venda, não duas páginas: o hero fecha sem
   a régua de seção e a VSL abre sem padding-top nem borda, de modo que
   headline → vídeo → oferta caiam juntos na primeira decisão. */
.hero { padding: 1.5rem 0 1.6rem; }
.hero-grid { display: grid; gap: 1.5rem; }
.logo { width: 172px; height: auto; margin-bottom: 1.1rem; }
.hero-title { margin-bottom: 0.9rem; }

.lede {
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 1.35rem;
}
.lede strong { color: var(--off); font-weight: 600; }

/* Microâncora: mantém o preço no topo sem recriar um card grande antes do
   vídeo — o bloco grande de oferta vive depois da VSL. */
.price-teaser {
  margin: 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--muted); letter-spacing: 0.01em;
}
.price-teaser s { opacity: 0.75; }
.price-teaser strong { color: var(--magenta); font-size: 1.22rem; font-weight: 900; }

.offer-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
}
.offer-strip-price {
  display: flex; align-items: baseline; gap: 0.7rem;
  margin-bottom: 0.75rem;
}
.anchor { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.now {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.3rem, 9vw, 3rem); line-height: 1;
  color: var(--magenta);
}
.offer-strip-note { margin-top: 0.6rem; font-size: 0.8rem; color: var(--muted); text-align: center; }


/* Coluna única: hero e VSL compartilham a MESMA largura para que o topo leia
   como uma coluna contínua, e não como duas seções soltas com folga sobrando
   dos dois lados. */
@media (min-width: 760px) {
  .hero-grid { max-width: 700px; margin: 0 auto; }
  .hero { padding-top: 2.25rem; }
  .logo { width: 210px; }
  .hero-title { font-size: clamp(2.6rem, 3.9vw, 3.5rem); }
  .lede { font-size: 1.1rem; max-width: 56ch; }
  .price-teaser { font-size: 1.08rem; }
  .price-teaser strong { font-size: 1.35rem; }
}

/* ---------- VSL ---------- */
.vsl-section { border-top: 0; padding-top: 0; }
/* O frame é só a moldura (raio, sombra, borda) — quem desenha capa, play e
   estado inicial é o player do Tynk dentro do iframe. 16:9 é a proporção do
   próprio player: qualquer outra abriria letterbox ou cortaria a capa dele.
   Nada de object-fit aqui: a imagem não pertence mais à landing. */
.vsl-frame {
  width: 100%; aspect-ratio: 16 / 9;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  border-radius: 14px; overflow: hidden;
  background: #0A0810; border: 1px solid var(--line);
  margin-top: 1.25rem;
}
.vsl-embed { width: 100%; height: 100%; border: 0; display: block; }
/* Oferta colada no vídeo: é o primeiro bloco grande de CTA da página e não
   pode abrir um vazio entre o fim da VSL e a decisão. */
.vsl-offer { margin-top: 1rem; }

/* O player acompanha a largura do hero em desktop: 700px de coluna = 663px de
   frame, dentro do que o Tynk entrega sem upscale. */
@media (min-width: 760px) {
  .vsl-section .wrap-narrow { max-width: 700px; }
}

/* ---------- Sua Rota Musa ---------- */
.rota {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
}
.rota-progress {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.85rem;
}
.rota-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.rota-q {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; color: var(--white);
  padding: 0; margin-bottom: 0.9rem;
}
.rota-options { display: grid; gap: 0.55rem; }
.rota-option {
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 500;
  text-align: left; color: var(--off);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: border-color 0.14s ease, background-color 0.14s ease;
}
.rota-option:hover { border-color: var(--magenta); background: #2C2135; }
.rota-option[aria-pressed="true"] { border-color: var(--magenta); background: #33203C; }

.rota-result[hidden] { display: none; }
.rota-result-eyebrow {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 0.5rem;
}
.rota-ficha {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.3rem, 5.5vw, 1.8rem); line-height: 1.05;
  color: var(--white); margin-bottom: 1rem;
}
.rota-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin: 0 0 1.1rem; }
.rota-specs div { border-top: 1px solid var(--line); padding-top: 0.5rem; }
.rota-specs dt { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.rota-specs dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--white);
}
/* A recompensa da rota: onde ela ENTRA no app. É navegação dentro do conteúdo,
   não prescrição — por isso vem como um caminho, com a barra magenta indicando
   "é por aqui". */
.rota-entry {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--magenta);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  margin: 0 0 1.1rem;
}
.rota-entry-label {
  margin: 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.rota-entry-path {
  margin: 0.25rem 0 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.02rem; line-height: 1.2; color: var(--white);
  overflow-wrap: anywhere;
}

.rota-modules-title { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.4rem; }
.rota-modules { list-style: none; margin: 0 0 1.2rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rota-modules li {
  font-size: 0.82rem; color: var(--off);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.28rem 0.7rem;
}
.rota-restart {
  display: block; margin: 0.8rem auto 0;
  background: none; border: 0; cursor: pointer;
  color: var(--muted); font-family: var(--font-body); font-size: 0.85rem;
  text-decoration: underline;
}

/* ---------- Problema ---------- */
.big-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.3rem, 5.2vw, 1.75rem); line-height: 1.12;
  color: var(--white);
}
.pull-quote {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.4rem, 6vw, 2rem); line-height: 1.08;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--white);
  border-left: 4px solid var(--magenta);
  padding-left: 1rem;
  margin: 1.6rem 0;
}

/* ---------- Mecanismo ---------- */
.levels { list-style: none; margin: 1.5rem 0; padding: 0; counter-reset: level; display: grid; gap: 0.5rem; }
.level { counter-increment: level; display: flex; align-items: center; gap: 0.8rem; }
.level::before {
  content: counter(level);
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
  color: var(--white); background: var(--magenta-deep);
  border-radius: 50%; width: 26px; height: 26px;
  display: grid; place-items: center; flex-shrink: 0;
}
/* "Comece aqui" é a porta de entrada, não um nível: anel vazado no lugar do
   número, para que a contagem visível (1-2-3) bata com "3 níveis" no stat. */
.level-entry { counter-increment: none; }
.level-entry::before {
  content: "";
  box-sizing: border-box;
  background: transparent;
  border: 2px solid var(--magenta);
}
.level-step { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); }
.level-entry .level-step { color: var(--off); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 1.75rem; }
.stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 0.9rem 0.55rem; text-align: center;
  /* O qualificador do terceiro cartão ocupa mais linhas que os outros; a grade
     iguala as alturas, então o conteúdo é centrado para não sobrar buraco. */
  display: grid; align-content: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1; color: var(--magenta);
}
.stat-label { display: block; margin-top: 0.3rem; font-size: 0.76rem; color: var(--muted); line-height: 1.25; }
/* Qualificador do número (o que "3 níveis" e "3 objetivos" querem dizer de
   fato). Fica abaixo, menor e mais apagado: informa sem competir com o dado. */
.stat-label small {
  display: block; margin-top: 0.3rem;
  font-size: 0.63rem; line-height: 1.3; letter-spacing: 0.01em;
  color: rgba(166, 153, 176, 0.75);
  text-wrap: balance;
}

@media (min-width: 700px) {
  .levels { grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
  .level { flex-direction: column; align-items: flex-start; gap: 0.45rem; }
}

/* ---------- Objetivos / shapes ---------- */
/* 2 colunas já em 360px: quatro shapes lado a lado viram miniatura ilegível,
   e um por linha empurraria a prova para fora da terceira dobra. */
.shapes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem; margin-top: 1.5rem;
}
.shape-card {
  margin: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
}
/* A foto é retrato (corpo inteiro): recortar pelo topo cortaria as pernas,
   que é justamente o que o rótulo promete. */
.shape-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 22%; }
.shape-card figcaption { padding: 0.65rem 0.7rem 0.8rem; }
.shape-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(0.95rem, 4.1vw, 1.1rem); text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--white); margin: 0 0 0.5rem;
}
.shape-traits { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.shape-traits li {
  position: relative; padding-left: 1.05rem;
  font-size: 0.82rem; line-height: 1.3; color: var(--muted);
}
.shape-traits li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--magenta);
}
.shapes-note {
  margin-top: 1.1rem; font-size: 0.76rem; line-height: 1.4;
  color: var(--muted); text-align: center;
}

@media (min-width: 760px) {
  .shapes-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .shape-traits li { font-size: 0.85rem; }
}

/* ---------- Prova / reviews ---------- */
/* Prints reais recortados um a um, não transcrição. Uma coluna em qualquer
   largura: dois prints lado a lado reduziriam o texto do comentário a um
   tamanho ilegível, e prova social que não se lê não prova nada.
   Os crops têm 1054px nativos e o container nunca passa disso — nenhum print
   é esticado. A moldura da própria plataforma já delimita cada card, então
   aqui não entra borda nem fundo: só o recorte. */
.reviews-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.review { margin: 0; }
.review img {
  width: 100%; height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.reviews-cta { margin-top: 1.4rem; }

/* ---------- Stack de entregáveis ---------- */
.stack-product { margin: 1.5rem 0 0; }
.stack { display: grid; gap: 1rem; margin-top: 1rem; }
/* Em telas largas os três grupos ficam lado a lado: o volume do que está
   incluído é o argumento, e ele lê melhor de uma vez do que empilhado. */
@media (min-width: 900px) {
  .stack { grid-template-columns: repeat(3, 1fr); align-items: start; }
}
.stack-group { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.1rem 1.1rem; }
.stack-title {
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--magenta); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; margin-bottom: 0.8rem;
}
.stack-count {
  font-family: var(--font-display); font-size: 0.7rem; color: var(--white);
  background: var(--magenta-deep); border-radius: 999px; padding: 0.1rem 0.5rem; letter-spacing: 0;
}
.stack-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.stack-list li { position: relative; padding-left: 1.4rem; font-size: 0.95rem; line-height: 1.4; }
.stack-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; background: var(--magenta); border-radius: 2px;
}

/* ---------- Countdown ---------- */
.countdown {
  text-align: center;
  background: linear-gradient(135deg, rgba(232,35,126,0.16), rgba(106,42,168,0.16));
  border: 1px solid rgba(232, 35, 126, 0.4);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.1rem;
}
.countdown[hidden] { display: none; }
.countdown-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--magenta-hot); margin-bottom: 0.4rem;
}
.countdown-label[hidden] { display: none; }
.countdown-clock {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1;
  color: var(--white); margin: 0; font-variant-numeric: tabular-nums;
}
.countdown-clock[hidden] { display: none; }
.countdown-clock i { color: var(--magenta); font-style: normal; margin: 0 0.1em; }

/* ---------- Oferta ---------- */
.offer-card {
  background: var(--surface);
  border: 1px solid rgba(232, 35, 126, 0.32);
  border-radius: 16px;
  padding: 1.4rem 1.15rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.offer-eyebrow {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--magenta); text-align: center; margin-bottom: 1rem;
}
.price-table { border-top: 1px solid var(--line); margin-bottom: 1.1rem; }
.price-line {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.92rem; color: var(--muted);
}
.price-line[hidden] { display: none; }
.price-strike { text-decoration: line-through; font-size: 1.05rem; }
.price-line-now { align-items: center; }
.price-big {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 13vw, 4rem); line-height: 1;
  color: var(--magenta);
}
.price-save { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--white); }

.offer-bullets { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.45rem; }
.offer-bullets li { position: relative; padding-left: 1.5rem; font-size: 0.93rem; }
.offer-bullets li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--magenta); font-weight: 800;
}
/* O arquivo é uma silhueta PRETA com alpha 50% — some no fundo escuro.
   brightness(0) invert(1) força as marcas para branco preservando o alpha;
   a opacidade final mantém o bloco discreto, abaixo de preço e CTA. */
.pay-badges {
  width: 100%; max-width: 320px; margin: 1.1rem auto 0;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ---------- Objeções ---------- */
/* As objeções eram o trecho mais longo de texto corrido da página. Viraram
   blocos com borda, que dão ritmo e deixam cada objeção escaneável. */
.objections-grid { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.objection {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--magenta);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}
.objection p:last-child { color: var(--muted); font-size: 0.95rem; }
.objection-q {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; color: var(--white); margin-bottom: 0.3rem;
}

@media (min-width: 900px) {
  .objections-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Garantia ---------- */
.guarantee { background: var(--ink-2); }
.guarantee-inner { display: grid; gap: 1.1rem; justify-items: center; text-align: center; }
.seal { width: 118px; height: auto; }
.guarantee .btn { margin-top: 1.1rem; }
.text-link { color: var(--magenta); }

@media (min-width: 700px) {
  .guarantee-inner { grid-template-columns: auto 1fr; align-items: center; text-align: left; justify-items: start; gap: 2rem; }
  .seal { width: 150px; }
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--magenta); font-weight: 800; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin-top: 0.8rem; color: var(--muted); }

/* ---------- Fechamento ---------- */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.final-lede { color: var(--muted); margin-bottom: 1.4rem; }
.microcopy { margin-top: 0.9rem; color: var(--muted); font-size: 0.84rem; }

/* ---------- Footer ---------- */
.site-footer { padding: 2.25rem 0 6.5rem; color: var(--muted); font-size: 0.8rem; }
.disclaimer { margin-top: 0.4rem; line-height: 1.45; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(10, 9, 12, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 35, 126, 0.34);
  z-index: 50;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.sticky-cta[hidden] { display: none; }
.sticky-cta[data-state="out"] { transform: translateY(115%); opacity: 0; pointer-events: none; }
.sticky-inner { display: flex; align-items: center; gap: 0.8rem; max-width: var(--wrap-narrow); margin: 0 auto; }
.sticky-price { display: flex; align-items: baseline; gap: 0.4rem; white-space: nowrap; }
.sticky-price s { color: var(--muted); font-size: 0.85rem; }
.sticky-price strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--magenta); }
.sticky-cta .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.95rem; }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

/* ---------- Reveal ---------- */
.section { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .btn, .sticky-cta, .rota-option { transition: none; }
}

/* Aviso inline quando o checkout ainda não está configurado */
.cta-warning { margin-top: 0.7rem; font-size: 0.84rem; color: var(--magenta-hot); text-align: center; }
