/* ===========================================================
   Wieder Wir, funil "salvar o casamento"
   Folha de estilo partilhada. Tons quentes e sobrios.
   Mobile-first. Sem cliches agressivos (ver 06-pagina-opt-in).
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --creme: #faf5ee;
  --creme-2: #f3ebdf;
  --surface: #ffffff;
  --tinta: #2c2722;
  --tinta-suave: #6a5f55;
  --linha: #e7dccd;
  --terracota: #bd5d40;
  --terracota-escuro: #a04a30;
  --dourado: #c79a5e;
  --verde: #4f7a5b;
  --escuro: #211c18;
  --escuro-2: #2c2520;
  --sombra: 0 14px 40px rgba(64, 44, 30, 0.10);
  --sombra-suave: 0 6px 18px rgba(64, 44, 30, 0.07);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --impacto: 'Fraunces', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--tinta);
  background: var(--creme);
  line-height: 1.7;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 22px; }
.wrap-wide { max-width: 880px; }
.section { padding: 54px 0; }
.section-tight { padding: 34px 0; }

/* ---------- Tipografia ----------
   Headlines no estilo Sabri: condensadas, grandes, em maiúsculas. */
h1, h2 {
  font-family: var(--impacto);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 7.6vw, 3.4rem); margin-bottom: 8px; }
h2 { font-size: clamp(1.8rem, 6vw, 2.7rem); margin-bottom: 16px; }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.3rem; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 10px; }
p { margin-bottom: 24px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--tinta); }
em { font-style: italic; }

/* marcador amarelo para a frase-chave de cada secção (estilo Sabri) */
mark {
  background: #ffe85c;
  color: var(--tinta);
  padding: 0.04em 0.16em;
  font-weight: 600;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.band-dark mark, .band-terra mark, .hero-sabri mark, .order mark { color: #211c18; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracota);
  margin-bottom: 14px;
}

.lead { font-size: 1.4rem; color: var(--tinta-suave); }
.muted { color: var(--tinta-suave); }
.center { text-align: center; }

/* corpo de leitura grande e arejado, mesmo tamanho da carta do Sabri */
.band p:not(.muted):not(.eyebrow):not(.cta-note):not(.disclaimer):not(.privacy),
.section p:not(.muted):not(.eyebrow):not(.cta-note):not(.disclaimer):not(.privacy) {
  font-size: 1.38rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  body { font-size: 21px; }
  .band p:not(.muted):not(.eyebrow):not(.cta-note):not(.disclaimer):not(.privacy),
  .section p:not(.muted):not(.eyebrow):not(.cta-note):not(.disclaimer):not(.privacy) {
    font-size: 1.5rem;
  }
}

/* ---------- Botoes / CTA ---------- */
.btn {
  display: inline-block;
  width: 100%;
  max-width: 460px;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  background: var(--terracota);
  border: none;
  border-radius: 14px;
  padding: 18px 26px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(189, 93, 64, 0.30);
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--terracota-escuro); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(189, 93, 64, 0.38); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  width: 100%;
  max-width: 460px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--tinta-suave);
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.btn-ghost:hover { color: var(--tinta); }

.cta-note { font-size: 0.86rem; color: var(--tinta-suave); margin-top: 12px; }

/* ---------- Cartoes ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--linha);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--sombra-suave);
}

/* ---------- Bullets de beneficio ---------- */
.bullets { list-style: none; margin: 18px 0; }
.bullets li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--tinta);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--creme-2);
  border: 2px solid var(--dourado);
}
.bullets li::after {
  content: "";
  position: absolute;
  left: 6px; top: 11px;
  width: 5px; height: 9px;
  border: solid var(--terracota);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Garantia ---------- */
.guarantee {
  background: var(--creme-2);
  border: 1px solid var(--linha);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.guarantee .seal {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.1;
}

/* ---------- Tabela de stack de valor ---------- */
.stack {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 4px;
  font-size: 0.98rem;
}
.stack td { padding: 12px 4px; border-bottom: 1px solid var(--linha); }
.stack td:last-child { text-align: right; white-space: nowrap; color: var(--tinta-suave); }
.stack tr.total td { font-weight: 600; color: var(--tinta); border-bottom: 2px solid var(--tinta); }
.stack tr.total td:last-child { color: var(--tinta); }
.stack tr.today td { border-bottom: none; padding-top: 16px; }
.stack tr.today td:first-child { font-family: var(--serif); font-size: 1.15rem; }
.stack tr.today td:last-child {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--terracota);
}
.strike { text-decoration: line-through; opacity: .6; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--creme-2) 0%, var(--creme) 100%); }
.hero-img {
  border-radius: 18px;
  box-shadow: var(--sombra);
  margin: 24px 0;
  width: 100%;
}
/* imagem retrato (vidro partido) no hero: controla a altura para o CTA nao ficar escondido */
.hero-img-glas { max-height: 400px; object-fit: cover; object-position: center 32%; }
@media (min-width: 720px) { .hero-img-glas { max-height: 460px; } }

/* ---------- Disclaimer / nota etica ---------- */
.disclaimer {
  font-size: 0.84rem;
  color: var(--tinta-suave);
  border-left: 3px solid var(--linha);
  padding-left: 14px;
  margin: 22px 0;
  line-height: 1.55;
}

/* ---------- Privacidade sob o form ---------- */
.privacy { font-size: 0.82rem; color: var(--tinta-suave); text-align: center; margin-top: 12px; }

/* ---------- Formulario ---------- */
.field { margin-bottom: 16px; text-align: left; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 7px; color: var(--tinta); }
.field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: 15px 16px;
  border: 1.5px solid var(--linha);
  border-radius: 12px;
  background: #fff;
  color: var(--tinta);
  transition: border-color .15s ease;
}
.field input:focus { outline: none; border-color: var(--terracota); }

/* ---------- Quiz ---------- */
.quiz-progress {
  height: 6px;
  background: var(--creme-2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 26px;
}
.quiz-progress span { display: block; height: 100%; background: var(--terracota); width: 0; transition: width .35s ease; border-radius: 99px; }
.quiz-step { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--terracota); margin-bottom: 12px; }
.quiz-q { font-family: var(--serif); font-size: 1.5rem; line-height: 1.22; margin-bottom: 24px; }

.opt {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--tinta);
  background: #fff;
  border: 1.5px solid var(--linha);
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color .14s ease, background .14s ease, transform .1s ease;
}
.opt:hover { border-color: var(--dourado); background: var(--creme); transform: translateY(-1px); }
.opt:active { transform: translateY(0); }

.hidden { display: none !important; }

/* ---------- Resultado do quiz ---------- */
.result-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracota);
  background: var(--creme-2);
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 16px;
}
.micromoment {
  background: var(--creme-2);
  border-radius: 16px;
  padding: 22px 22px;
  margin: 22px 0;
}
.micromoment h4 { font-family: var(--serif); font-weight: 600; font-size: 1.08rem; margin-bottom: 10px; }

/* ---------- Selos de confianca ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--tinta-suave);
}
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--verde); }

/* ---------- Bekannt aus (press bar) ---------- */
.press-bar { background: var(--creme); padding: 32px 0 28px; text-align: center; }
.press-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 32px;
}
.press-logos img {
  height: 22px; width: auto; object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s;
}
.press-logos img:hover { filter: grayscale(0) opacity(0.85); }
@media (min-width: 720px) {
  .press-logos img { height: 28px; }
  .press-logos { gap: 24px 44px; }
}

/* ---------- Divisor ---------- */
.rule { height: 1px; background: var(--linha); border: none; margin: 36px 0; }

/* ---------- VSL placeholder ---------- */
.vsl {
  aspect-ratio: 16 / 9;
  background: #1f1a16 radial-gradient(circle at center, #3a322a 0%, #1f1a16 70%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #f3ebdf;
  box-shadow: var(--sombra);
  margin: 22px 0;
  position: relative;
  overflow: hidden;
}
.vsl .play {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
}
.vsl .play::after {
  content: "";
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--terracota);
  margin-left: 6px;
}
.vsl .vsl-label { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-size: 0.84rem; opacity: .8; }

/* ---------- Player de VSL (estilo guru: sem barra de tempo, sem download) ---------- */
.vsl { cursor: pointer; }
.vsl video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; border-radius: 16px; display: block; background: #1f1a16; z-index: 1; }
.vsl .play { position: relative; z-index: 3; pointer-events: none; transition: opacity .25s ease; }
.vsl .vsl-label { z-index: 3; pointer-events: none; transition: opacity .25s ease; }
.vsl.playing .play, .vsl.playing .vsl-label { opacity: 0; }

.vsl-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(31,26,22,0) 0%, rgba(31,26,22,0.78) 100%);
  opacity: 0; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.vsl.playing .vsl-bar, .vsl.playing:hover .vsl-bar { opacity: 1; transform: none; pointer-events: auto; }
.vsl-bar .vb-btn {
  width: 34px; height: 34px; border: none; background: transparent;
  cursor: pointer; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; border-radius: 8px; transition: background .15s ease;
}
.vsl-bar .vb-btn:hover { background: rgba(255,255,255,0.16); }
.vsl-bar svg { display: block; }
.vsl-bar .ic-pause { display: none; }
.vsl.playing .vsl-bar .ic-play { display: none; }
.vsl.playing .vsl-bar .ic-pause { display: block; }
.vb-vol { display: flex; align-items: center; gap: 6px; }
.vb-spacer { flex: 1 1 auto; }
.vb-range {
  -webkit-appearance: none; appearance: none; width: 84px; height: 4px;
  border-radius: 4px; background: rgba(255,255,255,0.35); cursor: pointer; outline: none;
}
.vb-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 13px; height: 13px;
  border-radius: 50%; background: #fff; border: none; cursor: pointer;
}
.vb-range::-moz-range-thumb { width: 13px; height: 13px; border-radius: 50%; background: #fff; border: none; cursor: pointer; }
/* ecrã grande: o vídeo mostra inteiro, sem cortar texto */
.vsl:fullscreen { width: 100vw; height: 100vh; aspect-ratio: auto; border-radius: 0; background: #1f1a16; }
.vsl:-webkit-full-screen { width: 100vw; height: 100vh; border-radius: 0; background: #1f1a16; }
.vsl:fullscreen video, .vsl:-webkit-full-screen video { object-fit: contain; border-radius: 0; }

/* poster mais escuro para o play saltar a vista */
.vsl::before { content: ""; position: absolute; inset: 0; z-index: 2; background: rgba(20,15,12,0.30); border-radius: 16px; pointer-events: none; transition: opacity .25s ease; }
.vsl.playing::before { opacity: 0; }
/* play a piscar (so quando parado) */
.vsl .play { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
.vsl:not(.playing) .play { animation: vslPulse 1.5s ease-out infinite; }
@keyframes vslPulse {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { transform: scale(1.08); box-shadow: 0 0 0 26px rgba(255,255,255,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (prefers-reduced-motion: reduce) { .vsl:not(.playing) .play { animation: none; } }
/* clickbait acima do video */
.vsl-hook {
  text-align: center; font-family: var(--sans); font-weight: 600;
  font-size: 1.05rem; line-height: 1.45; color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.30);
  margin: 8px 0 2px; padding: 0 6px;
}
.vsl-hook b { color: #ffe85c; }
.vsl-hook .hl { background: #ffe85c; color: var(--tinta); padding: 0.02em 0.2em; border-radius: 3px; }

/* ---------- Rodape ---------- */
.foot { padding: 38px 0 56px; text-align: center; color: var(--tinta-suave); font-size: 0.82rem; }
.foot a { color: var(--tinta-suave); }

/* ---------- Caixa de oferta sticky-ish ---------- */
.offer-box {
  background: var(--surface);
  border: 2px solid var(--terracota);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--sombra);
  text-align: center;
}

/* ---------- Helpers de espaco ---------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.mb-s { margin-bottom: 14px; } .mb-m { margin-bottom: 26px; }
.stack-btns { display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* ===========================================================
   CAMADA "GÉNERO SABRI" (long-form sales letter)
   Maquinaria do Sabri, paleta adaptada ao nicho (terracota,
   não laranja-néon). Tom esperançoso, escassez só real.
   =========================================================== */

/* ---------- Headlines de impacto (condensadas, caps) ---------- */
.impact {
  font-family: var(--impacto);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-size: clamp(2.1rem, 7.4vw, 3.4rem);
}
.impact-sm { font-size: clamp(1.7rem, 5.6vw, 2.5rem); }
.impact .hot { color: var(--terracota); }
.impact mark { background: #ffe9b8; color: inherit; padding: 0 .08em; }

/* ---------- Faixas de cor (ritmo do scroll) ---------- */
.band { padding: 56px 0; }
.band-creme { background: var(--creme); }
.band-creme2 { background: var(--creme-2); }
.band-dark { background: var(--escuro); color: #f3ebdf; }
.band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .muted { color: #c9bcab; }
.band-terra { background: var(--terracota); color: #fff; }
.band-terra h1, .band-terra h2, .band-terra h3 { color: #fff; }
.band-terra .muted { color: #ffe7dd; }

/* ---------- Hero "género Sabri" ---------- */
.hero-sabri { background: var(--terracota); color: #fff; padding: 40px 0 48px; text-align: center; }
.hero-sabri .impact { color: #fff; font-size: clamp(1.8rem, 5.6vw, 2.6rem); line-height: 1.1; }
.hero-sabri .impact mark { background: #fff3; color: #fff; }
.hero-flag {
  display: inline-block;
  background: var(--escuro);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.hero-sabri .sub { color: #ffe7dd; font-size: 1.08rem; max-width: 540px; margin: 14px auto 0; }

/* ---------- CTA grande "Sabri" ---------- */
.btn-sabri {
  display: inline-block;
  width: 100%;
  max-width: 480px;
  font-family: var(--impacto);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.005em;
  font-size: 1.3rem;
  color: #fff;
  background: var(--terracota);
  border: none;
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 26px rgba(189, 93, 64, 0.32);
  transition: transform .12s ease, background .15s ease;
}
.btn-sabri:hover { background: var(--terracota-escuro); transform: translateY(-2px); }
.hero-sabri .btn-sabri { background: var(--escuro); box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.hero-sabri .btn-sabri:hover { background: #000; }
.band-dark .btn-sabri, .band-terra .btn-sabri { background: var(--terracota); }
.band-terra .btn-sabri { background: var(--escuro); }

/* ---------- Barra de escassez (honesta: lugares no lançamento) ---------- */
.scarcity { max-width: 480px; margin: 14px auto 0; }
.scarcity-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: .85; margin-bottom: 7px; }
.scarcity-bar { display: flex; gap: 3px; height: 14px; }
.scarcity-bar i { flex: 1; background: currentColor; opacity: .85; border-radius: 2px; }
.scarcity-bar i.empty { opacity: .22; }

/* ---------- Fascination bullets (o ouro que vais descobrir) ---------- */
.fascinations { list-style: none; margin: 20px 0; }
.fascinations li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  line-height: 1.55;
}
.fascinations li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--terracota);
}
.fascinations li b { color: var(--tinta); }
.band-dark .fascinations li b { color: #fff; }

/* ---------- Lista dos 7 Anzeichen (teaser numerado) ---------- */
.signs-list {
  list-style: none;
  counter-reset: sign;
  max-width: 540px;
  margin: 24px auto 0;
}
.signs-list li {
  position: relative;
  padding: 14px 16px 14px 56px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid var(--linha);
  border-radius: 12px;
  box-shadow: var(--sombra-suave);
  line-height: 1.45;
  font-size: 1.02rem;
  color: var(--tinta);
}
.signs-list li::before {
  counter-increment: sign;
  content: counter(sign);
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terracota);
  color: #fff;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.signs-list li b { color: var(--tinta); font-weight: 700; display: none; }
.signs-list li em { color: var(--terracota-escuro); font-style: italic; }
@media (min-width: 720px) {
  .signs-list li { font-size: 1.08rem; }
}

/* ---------- Faixa de credibilidade ("como ela descreve") ---------- */
.cred-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: 12px; margin: 20px 0 0;
}
.cred-row span {
  font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--tinta);
  background: #fff; border: 1px solid var(--linha); border-radius: 14px;
  padding: 13px 22px; box-shadow: var(--sombra-suave);
}
.band-dark .cred-row span { color: #f6efe3; background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.16); }

/* ---------- Cartoes de testemunho (prova empilhada) ---------- */
.quotes { display: grid; gap: 14px; }
@media (min-width: 680px) { .quotes { grid-template-columns: 1fr 1fr; } }
.quote {
  background: var(--surface);
  border: 1px solid var(--linha);
  border-radius: 14px;
  padding: 20px 20px;
  box-shadow: var(--sombra-suave);
}
.quote .stars { color: var(--dourado); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 8px; }
.quote p { font-size: 0.98rem; margin-bottom: 10px; }
.quote .who { font-size: 0.84rem; color: var(--tinta-suave); font-weight: 600; }
.quote .ph { font-style: italic; opacity: .75; }

/* ---------- Secção de reviews (estatísticas + carrossel) ---------- */
.rev-stats { text-align: center; margin-bottom: 30px; }
.rev-bignum {
  font-family: var(--impacto); font-weight: 900; font-optical-sizing: auto;
  font-size: clamp(3rem, 13vw, 6.2rem); line-height: .9; letter-spacing: -0.01em;
  color: transparent; -webkit-text-stroke: 1.6px rgba(255,255,255,.55);
}
.rev-bigtitle {
  font-family: var(--impacto); font-weight: 700; color: #fff;
  font-size: clamp(1.7rem, 6.5vw, 3rem); line-height: 1; margin-top: 4px; letter-spacing: -0.01em;
}
.rev-statrow { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.rev-statrow .rs-stars { color: #f3b73e; letter-spacing: 2px; font-size: 1.25rem; }
.rev-statrow .rs-text { color: #fff; font-weight: 700; font-size: 0.98rem; }
.rev-statrow .rs-btn {
  background: var(--terracota); color: #fff; font-family: var(--impacto); font-weight: 600;
  border: none; border-radius: 8px; padding: 11px 22px; font-size: 1rem; cursor: pointer; text-decoration: none;
}
.rev-statrow .rs-btn:hover { background: var(--terracota-escuro); }

/* carrossel automático (anda de lado a lado) */
.rev-marquee {
  position: relative; overflow: hidden; margin-top: 6px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.rev-track { display: flex; gap: 16px; width: max-content; animation: revScroll 70s linear infinite; }
.rev-marquee:hover .rev-track { animation-play-state: paused; }
@keyframes revScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }

/* marquee em fundo claro (creme): máscara mais suave para combinar */
.rev-marquee-light {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.rev-marquee-light .rev-track { animation-duration: 90s; }

.rev-card {
  background: var(--surface); border: 1px solid var(--linha); border-radius: 16px;
  padding: 22px 22px; box-shadow: var(--sombra-suave);
  display: flex; flex-direction: column; flex: 0 0 320px; width: 320px;
}
.rev-card .rc-top { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.92rem; }
.rev-card .rc-verified { display: inline-flex; align-items: center; gap: 5px; font-weight: 500; font-size: 0.76rem; color: var(--tinta-suave); }
.rev-card .rc-verified::before {
  content: "✓"; display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; border-radius: 50%; background: var(--verde); color: #fff; font-size: 0.6rem; font-weight: 700;
}
.rev-card .rc-stars { color: #f3b73e; letter-spacing: 2px; font-size: 0.92rem; margin: 11px 0 7px; }
.rev-card .rc-title { font-weight: 700; font-size: 1.02rem; margin-bottom: 6px; }
.rev-card .rc-body { font-size: 0.95rem; line-height: 1.5; color: var(--tinta-suave); margin: 0; }
.rev-card .rc-meta { font-size: 0.78rem; color: var(--tinta-suave); opacity: .8; margin-top: 14px; align-self: flex-end; }

/* fundo escuro (estilo da referência) */
.band-dark .rev-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); box-shadow: none; }
.band-dark .rev-card .rc-top { color: #fff; }
.band-dark .rev-card .rc-verified { color: #9a8f82; }
.band-dark .rev-card .rc-title { color: #f6efe3; }
.band-dark .rev-card .rc-body { color: #c9bcab; }
.band-dark .rev-card .rc-meta { color: #9a8f82; }

@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
  .rev-marquee { overflow-x: auto; }
}

/* ---------- Figuras ilustrativas (quebram o texto) ---------- */
.figure { margin: 30px auto; max-width: 580px; text-align: center; }
.figure svg { width: 100%; height: auto; display: block; }
.figure figcaption { font-family: var(--serif); font-style: italic; color: var(--tinta-suave); font-size: 0.92rem; margin-top: 12px; }
.band-dark .figure figcaption { color: #c9bcab; }

/* ---------- Order box escuro (estilo order form do Sabri) ---------- */
.order {
  background: #fff;
  color: var(--tinta);
  border: 2px solid var(--terracota);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--sombra);
}
.order h2, .order h3 { color: var(--tinta); }
.order .eyebrow { color: var(--terracota); }
.order .muted, .order p { color: var(--tinta-suave); }
.order .bullets li { color: var(--tinta); }
.order .bullets li::before { background: var(--creme-2); border-color: var(--dourado); }
.order .stack td { color: var(--tinta); border-bottom-color: var(--linha); }
.order .stack td:last-child { color: var(--tinta-suave); }
.order .stack tr.total td { color: var(--tinta); border-bottom-color: var(--tinta); }
.order .stack tr.total td:last-child { color: var(--tinta); }
.order .stack tr.today td:last-child { color: var(--terracota); }
.order .cta-note { color: var(--tinta-suave) !important; }

/* ---------- Bloco P.S. ---------- */
.ps { border-top: 2px solid var(--linha); padding-top: 22px; margin-top: 30px; }
.ps h3 { font-family: var(--impacto); font-weight: 600; font-size: 1.6rem; letter-spacing: -0.01em; margin-bottom: 8px; }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--tinta-suave); margin-top: 14px; }

/* ---------- Setas manuais (anotacao de prova) ---------- */
.handnote {
  font-family: var(--serif); font-style: italic; font-size: 0.9rem;
  color: var(--terracota); display: inline-block; margin: 4px 0;
}
.handnote::before { content: "↳ "; }

/* ===========================================================
   CHECKOUT (layout de 2 colunas, estilo Sabri)
   =========================================================== */
.co-top {
  background: var(--escuro); color: #f3ebdf;
  text-align: center; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 10px 16px;
}
.co-top strong { color: #fff; }

/* stepper */
.stepper { display: flex; justify-content: center; gap: 8px; margin: 26px 0 8px; flex-wrap: wrap; }
.stepper .st { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--tinta-suave); }
.stepper .st b {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--creme-2); color: var(--tinta-suave); font-family: var(--sans); font-size: 0.8rem;
}
.stepper .st.on b { background: var(--terracota); color: #fff; }
.stepper .st.on { color: var(--tinta); font-weight: 600; }
.stepper .line { width: 28px; height: 2px; background: var(--linha); align-self: center; }

.co-grid { display: grid; gap: 26px; align-items: start; }
@media (min-width: 920px) { .co-grid { grid-template-columns: 1.05fr 0.95fr; gap: 34px; } }

.co-h {
  font-family: var(--sans); font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; gap: 8px;
  margin: 22px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--linha);
}

/* opção de preço / order bump */
.price-opt {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--linha); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 12px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.price-opt.sel { border-color: var(--terracota); background: #fff; }
.price-opt input { width: 20px; height: 20px; accent-color: var(--terracota); flex: 0 0 auto; }
.price-opt .po-body { flex: 1; }
.price-opt .po-title { font-weight: 600; font-size: 0.98rem; }
.price-opt .po-sub { display: block; font-size: 0.82rem; color: var(--tinta-suave); margin-top: 3px; }
.price-opt .po-price { text-align: right; font-weight: 700; white-space: nowrap; }
.price-opt .po-price .strike { color: var(--tinta-suave); font-weight: 400; }

.bump {
  border: 2px dashed var(--terracota); border-radius: 14px;
  padding: 16px 18px; background: #fff5f1; margin: 14px 0;
}
.bump label { display: flex; gap: 12px; cursor: pointer; align-items: flex-start; }
.bump input { width: 20px; height: 20px; accent-color: var(--terracota); margin-top: 3px; flex: 0 0 auto; }
.bump .bump-tag {
  display: inline-block; background: var(--terracota); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 10px;
}

/* selo de garantia (coroa de louros) */
.seal-img { width: 150px; height: auto; display: block; margin: 0 auto; }
.guarantee .seal-img { flex: 0 0 120px; width: 120px; margin: 0; }

/* garantia centrada (selo em cima, caixa por baixo) ao estilo Sabri */
.guarantee-box { text-align: center; margin: 24px 0; }
.guarantee-box .seal-img { width: 158px; margin: 0 auto; position: relative; z-index: 2; }
.guarantee-text {
  border: 1px solid var(--linha); border-radius: 14px;
  padding: 38px 24px 26px; margin-top: -28px; background: #fff;
}
.guarantee-text h3 { margin-bottom: 10px; }
.guarantee-text p { margin: 0; color: var(--tinta-suave); }

/* asterisco de campo obrigatório */
.req { color: var(--terracota); font-weight: 700; }

/* nota de pagamento (Stripe) */
.co-pay-note {
  font-size: 0.9rem; color: var(--tinta-suave); line-height: 1.45;
  background: var(--creme-2); border-radius: 12px; padding: 14px 16px; margin: 4px 0 12px;
}
.co-pay-note strong { color: var(--tinta); }

/* zona do widget de pagamento embebido (Stripe Embedded Checkout) */
#pay-mount { min-height: 230px; }
.pay-loading, .pay-erro { font-size: 0.92rem; color: var(--tinta-suave); padding: 18px 6px; text-align: center; line-height: 1.5; }
.pay-erro { color: var(--terracota-escuro); }

/* tooltip ao passar o rato no CTA (estilo Sabri) */
.cta-wrap { position: relative; display: inline-block; width: 100%; max-width: 480px; }
.cta-wrap:hover, .cta-wrap:focus-within { z-index: 60; }
.cta-wrap .btn-sabri { width: 100%; max-width: none; }
.cta-tip {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 100%; max-width: 460px;
  background: #fff; border: 1px solid var(--linha); border-radius: 14px;
  box-shadow: var(--sombra); padding: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; z-index: 60;
}
.cta-wrap:hover .cta-tip, .cta-wrap:focus-within .cta-tip {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.cta-tip::before {
  content: ""; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px; background: #fff;
  border-left: 1px solid var(--linha); border-top: 1px solid var(--linha);
}
.cta-tip .tip-h {
  background: var(--terracota); color: #fff; font-weight: 700;
  font-size: 0.9rem; padding: 9px 10px; border-radius: 8px; line-height: 1.3;
}
.cta-tip .tip-b { margin: 11px 4px; font-size: 0.96rem; line-height: 1.4; color: var(--tinta); }
.cta-tip .tip-b .hot { color: var(--terracota); font-weight: 700; }
.cta-tip .tip-g {
  background: var(--creme-2); color: var(--tinta); font-weight: 600;
  font-size: 0.86rem; padding: 9px 10px; border-radius: 8px;
}

/* faixa "Em destaque em" (preencher com meios reais) */
.featured-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 26px; margin-top: 16px; }
.feat-ph {
  font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 1rem; color: #9a8f82;
  border: 1px dashed #cbbfae; border-radius: 8px; padding: 12px 20px; background: rgba(255,255,255,0.5);
}

/* ---------- Secção de ciência por detrás do método ---------- */
.sci-grid {
  display: grid; gap: 18px; margin: 28px 0 20px;
}
@media (min-width: 640px) { .sci-grid { grid-template-columns: 1fr 1fr; } }
.sci-card {
  background: var(--surface); border: 1px solid var(--linha); border-radius: 16px;
  padding: 26px 24px; box-shadow: var(--sombra-suave);
}
.sci-ico {
  width: 52px; height: 52px; border-radius: 50%; background: var(--creme-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.sci-ico svg { width: 28px; height: 28px; }
.sci-card h3 { font-size: 1.1rem; margin-bottom: 3px; }
.sci-sub { font-size: 0.8rem; color: var(--terracota); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 12px; }
.sci-body { font-size: 0.93rem; color: var(--tinta-suave); line-height: 1.55; margin: 0; }
.sci-note {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--tinta-suave); border-top: 1px solid var(--linha);
  padding-top: 20px; margin-top: 8px;
}

/* selos de confiança (honestos) */
.trust-badges { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 20px; }
.tb { text-align: center; }
.tb-ic {
  width: 52px; height: 52px; border-radius: 50%; background: var(--creme-2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 10px;
}
.tb-ic svg { width: 26px; height: 26px; }
.tb b { display: block; font-size: 0.95rem; line-height: 1.25; margin-bottom: 2px; }
.tb span { font-size: 0.8rem; color: var(--tinta-suave); line-height: 1.3; }

/* selos de segurança em imagem */
.trust-imgs { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 18px 0 8px; }
.trust-imgs .trust-safety { width: 116px; height: auto; }
.trust-imgs .trust-secure { width: 100%; max-width: 380px; height: auto; }

/* bloco de confiança (segurança + cartões) */
.trust-block {
  background: #fff; border: 1px solid var(--linha); border-radius: 16px;
  padding: 18px 18px 20px; margin: 16px 0 8px; box-shadow: var(--sombra-suave);
}
.trust-top {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
  padding-bottom: 16px; border-bottom: 1px solid var(--linha);
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { width: 28px; height: 28px; flex: 0 0 auto; }
.trust-item b { display: block; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.03em; color: #4a4a4a; line-height: 1.15; }
.trust-item span { font-size: 0.72rem; color: var(--tinta-suave); text-transform: uppercase; letter-spacing: 0.04em; }
.trust-cards { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 16px; }
.trust-cards svg { height: 26px; width: auto; display: block; }

/* selos de pagamento reais */
.pay-row { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; align-items: center; margin: 16px 0 8px; }
.pay {
  background: #fff; border: 1px solid var(--linha); border-radius: 8px;
  height: 40px; padding: 0 12px; display: inline-flex; align-items: center;
  box-shadow: var(--sombra-suave);
}
.pay svg { height: 22px; display: block; }
.pay-note {
  text-align: center; font-size: 0.84rem; color: var(--tinta-suave);
  display: flex; gap: 7px; align-items: center; justify-content: center; margin-top: 4px;
}
.pay-note::before { content: "🔒"; }

/* ===========================================================
   WIDGET DE PROVA SOCIAL (notificações de compra)
   Liga a VENDAS REAIS antes de publicar (ver proof.js).
   =========================================================== */
.proof-pop {
  position: fixed; left: 16px; bottom: 16px; z-index: 900;
  display: flex; gap: 12px; align-items: center;
  background: #fff; border: 1px solid var(--linha); border-radius: 14px;
  box-shadow: 0 10px 34px rgba(40, 28, 18, 0.18);
  padding: 12px 40px 12px 12px; max-width: 330px;
  transform: translateY(160%); opacity: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.proof-pop.show { transform: translateY(0); opacity: 1; }
.proof-ico {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: conic-gradient(var(--verde) 0 78%, #e7dccd 78% 100%);
  display: flex; align-items: center; justify-content: center;
}
.proof-ico span {
  width: 32px; height: 32px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 700; font-size: 0.9rem; color: var(--tinta);
}
.proof-txt { font-size: 0.86rem; line-height: 1.3; }
.proof-txt .l1 { color: var(--tinta-suave); font-size: 0.8rem; }
.proof-txt .l1 b { color: var(--tinta); font-weight: 700; }
.proof-txt .l2 { color: var(--tinta); margin-top: 1px; }
.proof-verified { color: var(--terracota); font-weight: 600; font-size: 0.78rem; white-space: nowrap; }
.proof-verified::before { content: "✓ "; }
.proof-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; color: var(--tinta-suave);
  font-size: 1.1rem; line-height: 1; cursor: pointer;
}

/* ---------- Exit-intent popup (estilo Sabri, honesto) ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(33, 28, 24, 0.66);
  display: none; align-items: center; justify-content: center;
  padding: 18px;
  animation: exitfade .2s ease;
}
.exit-overlay.show { display: flex; }
@keyframes exitfade { from { opacity: 0; } to { opacity: 1; } }
.exit-card {
  background: var(--creme);
  border-radius: 20px;
  max-width: 540px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 36px 28px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  position: relative;
}
.exit-card h2 { color: var(--terracota); margin-bottom: 12px; }
.exit-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.7rem; line-height: 1;
  color: var(--tinta-suave); cursor: pointer;
}
.exit-close:hover { color: var(--tinta); }

/* ---------- FAQ (acordeão) ---------- */
.faq { margin-top: 24px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--linha);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--sombra-suave);
  overflow: hidden;
}
.faq details[open] { border-color: var(--dourado); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--tinta);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--terracota);
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 22px 22px; }
.faq .answer p { font-size: 1.05rem; line-height: 1.6; }
.faq .answer p:first-child { margin-top: 0; }
/* a resposta desliza e aparece quando a pergunta abre */
.faq details[open] .answer { animation: faqOpen .3s cubic-bezier(.2,.7,.2,1); }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   ANIMAÇÕES DE SCROLL (IntersectionObserver)
   Entrada suave dos elementos ao entrarem no ecrã.
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }
/* variantes de direção */
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.from-left.in, .reveal.from-right.in { transform: none; }
.reveal.zoom { transform: scale(.94); }
.reveal.zoom.in { transform: none; }
/* atrasos escalonados (cartões em sequência) */
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- CTA flutuante (aparece por interseção) ---------- */
.float-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
  background: rgba(33, 28, 24, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.22);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.float-cta.show { transform: translateY(0); }
.float-cta .fc-inner {
  max-width: 880px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.float-cta .fc-info { color: #f3ebdf; line-height: 1.2; min-width: 0; }
.float-cta .fc-info b { display: block; font-size: 1rem; color: #fff; }
.float-cta .fc-info span { font-size: 0.82rem; color: #c9bcab; }
.float-cta .fc-info span .fc-price { color: #fff; font-weight: 700; }
.float-cta .btn-sabri {
  width: auto; max-width: none; flex: 0 0 auto;
  font-size: 1.1rem; padding: 14px 26px; box-shadow: none;
  animation: pulseCta 2.6s ease-in-out infinite;
}
@media (max-width: 560px) {
  .float-cta .fc-info b { font-size: 0.9rem; }
  .float-cta .fc-info span { display: none; }
  .float-cta .btn-sabri { font-size: 1rem; padding: 13px 20px; }
}

/* variante "hero" (estilo Sabri): botão grande + linha de estrelas */
.float-cta.fc-hero { padding-top: 14px; }
.float-cta.fc-hero .fc-inner { flex-direction: column; gap: 9px; }
.float-cta.fc-hero .btn-sabri { width: 100%; max-width: 460px; font-size: 1.25rem; padding: 16px 24px; }
.fc-stars {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  color: #f3d27a; letter-spacing: 3px; font-size: 1rem;
}
.fc-stars span { color: #c9bcab; letter-spacing: normal; font-size: 0.82rem; }

/* barra só no telemóvel (esconde no ecrã grande) */
@media (min-width: 760px) {
  .float-cta.fc-mobile { display: none !important; }
}

/* ===========================================================
   MICRO-ANIMAÇÕES DO CHECKOUT
   Feedback ao marcar caixas e ao surgir conteúdo novo.
   =========================================================== */
/* "pop" da caixa (checkbox/radio) ao marcar */
.bump input, .price-opt input { transition: transform .15s ease; }
.bump input.pop, .price-opt input.pop { animation: tick .32s ease; }
@keyframes tick {
  0%   { transform: scale(.7); }
  55%  { transform: scale(1.28); }
  100% { transform: scale(1); }
}

/* realce da caixa do order bump quando fica ativa */
.bump { transition: border-color .2s ease, background .25s ease, box-shadow .25s ease; }
.bump.on {
  border-style: solid;
  background: #ffeede;
  box-shadow: 0 0 0 4px rgba(189, 93, 64, 0.12);
}
.bump.on.flash { animation: bumpPop .4s ease; }
@keyframes bumpPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.012); }
  100% { transform: scale(1); }
}

/* linha nova a surgir no resumo (order bump) */
#row-bump.row-in td { animation: rowIn .38s cubic-bezier(.2,.8,.2,1); }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-7px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* total a "saltar" sempre que muda */
.order .stack .t-pop { display: inline-block; animation: totalPop .4s cubic-bezier(.2,.8,.2,1); }
@keyframes totalPop {
  0%   { transform: scale(.6); opacity: .15; }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bump input.pop, .price-opt input.pop, .bump.on.flash,
  #row-bump.row-in td, .order .stack .t-pop { animation: none !important; }
}

/* ---------- Pulsação subtil do CTA ---------- */
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(189, 93, 64, 0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(189, 93, 64, 0); }
}
.btn-pulse { animation: pulseCta 2.6s ease-in-out infinite; }

/* ---------- Brilho a atravessar o botão ao hover ---------- */
.btn-sabri { position: relative; overflow: hidden; }
.btn-sabri::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: none;
}
.btn-sabri:hover::after { animation: shine .8s ease; }
@keyframes shine { to { left: 130%; } }

/* ---------- Selo de garantia: flutuação leve ---------- */
@keyframes floatSeal {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.guarantee-box .seal-img { animation: floatSeal 4s ease-in-out infinite; }

/* Respeitar quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-cta .btn-sabri, .btn-pulse, .guarantee-box .seal-img { animation: none !important; }
  .btn-sabri:hover::after { animation: none !important; }
  .faq details[open] .answer { animation: none !important; }
}
