/* ==========================================================================
   Bora Barateiro — etiqueta de preço de feira.
   Linguagem: papel creme, traço de tinta, sombra SÓLIDA (sem blur), zero
   gradiente. O símbolo da marca é uma etiqueta com a seta de preço caindo —
   a página inteira é feita do mesmo recorte.
   Identidade PRÓPRIA: nada de dark-tech, nada do amarelo-azul do ML.
   ========================================================================== */

:root {
  /* --- cor ---------------------------------------------------------------
     Contraste MEDIDO sobre --paper (WCAG 2.1):
       ink        16.90:1  AAA   corpo
       ink-soft    7.28:1  AAA   secundário
       accent      4.20:1  AA-L  SÓ display ≥24px (título, número)
       accent-deep 6.55:1  AA    o mesmo vermelho para texto pequeno
       gold        2.69:1  ✗     NUNCA texto — só grifo, fita, borda
     branco sobre --wa 5.58:1 AA · branco sobre --accent 4.59:1 AA        */
  --paper:       #FBF4E8;
  --paper-2:     #F3E7D3;
  --paper-3:     #EFDFC6;
  --ink:         #17130F;
  --ink-soft:    #5A4F45;
  --accent:      #D93A21;
  --accent-deep: #A32C19;
  --gold:        #C98A18;
  --wa:          #0F774D;
  --wa-hover:    #0A5537;

  --container: 1080px;
  --narrow:    680px;
  --r:         12px;
  --r-sm:      8px;
  --ease:      cubic-bezier(.2,.7,.3,1);

  /* sombra sólida = recorte de papel sobre papel */
  --lift:   4px 4px 0 var(--ink);
  --lift-s: 3px 3px 0 var(--ink);
  --lift-l: 6px 6px 0 var(--ink);

  --s-1: 8px;  --s-2: 14px; --s-3: 22px;
  --s-4: 34px; --s-5: 52px; --s-6: 80px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  /* textura de papel — pontinhos, sem imagem */
  background-image: radial-gradient(var(--paper-2) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  color: var(--ink);
  font: 400 17px/1.6 Archivo, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--gold); color: var(--ink); }

/* foco de teclado — visível em qualquer fundo */
:where(a, button, summary, details):focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.container--narrow { max-width: var(--narrow); }

.section { padding: var(--s-6) 0; }

.section__title {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.04;
  letter-spacing: -.025em;
  text-align: center;
}
/* grifo de caneta atrás do título — a fita dourada */
.section__title::after {
  content: ""; display: block; width: 104px; height: 11px;
  background: var(--gold);
  border: 2.5px solid var(--ink);
  border-radius: 2px;
  margin: var(--s-2) auto 0;
  transform: rotate(-1deg);
}
.section__lead {
  text-align: center; color: var(--ink-soft);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 46ch; margin: var(--s-2) auto 0;
}

/* ============================ TOPO ======================================= */
.topbar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: var(--s-3) 0 0;
}

.brand { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; text-decoration: none; }
.brand__mark { flex: none; }
.brand__name {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: 19px; letter-spacing: -.03em; line-height: 1;
}
.brand__name-2 { color: var(--accent-deep); }

.topbar__count {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: 999px;
  box-shadow: var(--lift-s);
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  white-space: nowrap;
}

.pulse {
  width: 8px; height: 8px; flex: none; border-radius: 50%;
  background: var(--wa); border: 1.5px solid var(--ink);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }

/* ============================ HERO ======================================= */
.hero { padding: var(--s-5) 0 var(--s-6); }

.hero__grid {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid; gap: var(--s-5);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;          /* 4.59:1 — medido */
  font-weight: 700; font-size: 12.5px;
  letter-spacing: .045em; text-transform: uppercase;
  padding: 7px 13px;
  border: 2px solid var(--ink); border-radius: 4px;
  box-shadow: var(--lift-s);
  transform: rotate(-1.4deg);
}

.hero__live {
  display: flex; align-items: center; flex-wrap: wrap; gap: 7px;
  margin-top: var(--s-3);
  font-size: 14.5px; color: var(--ink-soft);
}
.hero__live strong { color: var(--ink); font-weight: 700; }
.hero__live-sep { color: var(--ink-soft); }   /* era --paper-3: 1.2:1, invisível */

.hero__title {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: clamp(34px, 7.2vw, 64px);
  line-height: .98;
  letter-spacing: -.032em;
  margin-top: var(--s-2);
  text-wrap: balance;
}
/* O número que importa vira a ETIQUETA da marca: preenchida, com traço e furo.
   Antes era texto vermelho sobre grifo dourado = 1.6:1, ilegível. Agora é
   branco sobre vermelho = 4.59:1 (medido) e carrega o símbolo da marca. */
/* a vírgula não pode desgrudar da etiqueta e cair sozinha na linha */
.nb { white-space: nowrap; }

.hero__title-accent {
  position: relative;
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: .04em .22em .04em .42em;
  border: .055em solid var(--ink);
  border-radius: .06em .16em .16em .06em;
  box-shadow: .07em .07em 0 var(--ink);
  transform: rotate(-1.6deg);
}
.hero__title-accent::before {
  content: ""; position: absolute; left: .13em; top: 50%; transform: translateY(-50%);
  width: .1em; height: .1em; border-radius: 50%;
  background: var(--paper); border: .028em solid var(--ink);
}

.hero__proof {
  display: inline-block;
  margin-top: var(--s-3);
  background: var(--paper);
  border: 2px dashed var(--ink);
  border-radius: var(--r-sm);
  padding: 9px 14px;
  font-size: 15px; color: var(--ink-soft);
}
.hero__proof-old s { color: var(--ink-soft); }
.hero__proof-new {
  font-family: 'Archivo Black', Archivo, sans-serif;
  color: var(--accent-deep);                        /* 6.55:1 — texto pequeno */
  font-size: 17px;
}

.hero__sub {
  margin-top: var(--s-3);
  max-width: 50ch;
  color: var(--ink-soft);
  font-size: clamp(15.5px, 2vw, 18px);
}
.hero__sub strong { color: var(--ink); font-weight: 700; }

/* --- botão --------------------------------------------------------------- */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px;                                  /* alvo de toque */
  padding: 15px 28px;
  font-weight: 700; font-size: 17.5px; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift);
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background-color .12s var(--ease);
}
.cta--primary { background: var(--wa); color: #fff; }   /* 5.58:1 — medido */
.cta--primary:hover { background: var(--wa-hover); }
.cta:hover  { transform: translate(2px, 2px); box-shadow: var(--lift-s); }
.cta:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.cta__icon { flex: none; }
.cta--hero { margin-top: var(--s-4); }

.cta__microcopy { margin-top: 11px; font-size: 13.5px; color: var(--ink-soft); }

.urgency {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: var(--s-3);
  font-size: 13.5px; font-weight: 600; color: var(--accent-deep);
}
.urgency__icon { flex: none; }

/* --- barra de lojas ------------------------------------------------------ */
.logos-bar { margin-top: var(--s-5); }
.logos-bar__title {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: var(--s-2);
}
.logos-bar__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }

.logo-chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 13px;
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r-sm);
  box-shadow: 2px 2px 0 var(--ink);
}
.logo-chip img { width: auto; height: 15px; object-fit: contain; }
.logo-chip--wide img { height: 17px; }
.logo-chip--icon img { height: 16px; }

/* --- celular ------------------------------------------------------------- */
.hero__visual { display: none; }

.phone {
  width: 300px; margin-inline: auto;
  background: var(--paper);
  border: 3px solid var(--ink); border-radius: 30px;
  box-shadow: var(--lift-l);
  padding: 12px;
  transform: rotate(1.6deg);
}
.phone__screen {
  background: var(--paper-2);
  border: 2px solid var(--ink); border-radius: 20px;
  overflow: hidden;
}
.phone__topbar {
  display: flex; align-items: center; gap: 9px;
  background: var(--wa); color: #fff;
  padding: 11px 13px;
  border-bottom: 2px solid var(--ink);
}
.phone__ava {
  width: 30px; height: 30px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); border: 2px solid var(--ink); border-radius: 50%;
}
.phone__who { display: flex; flex-direction: column; line-height: 1.25; }
.phone__who strong { font-size: 13.5px; }
.phone__status { font-size: 12px; opacity: .95; }

.phone__chat { padding: 12px; display: grid; gap: 10px; }
.pmsg {
  display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px;
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: 10px;
  box-shadow: 2px 2px 0 var(--ink);
  padding: 9px;
}
.pmsg__img {
  width: 42px; height: 42px; aspect-ratio: 1;
  object-fit: cover;
  border: 1.5px solid var(--ink); border-radius: 6px;
  background: var(--paper-2);
}
.pmsg__txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pmsg__txt strong { font-size: 12.5px; }
.pmsg__pr { font-size: 12px; color: var(--ink-soft); }
.pmsg__pr b { font-family: 'Archivo Black', Archivo, sans-serif; color: var(--accent-deep); }
.pmsg__t { font-size: 12px; color: var(--ink-soft); align-self: flex-end; }

/* ============================ PASSOS ===================================== */
.steps { background: var(--paper-2); border-block: 2px solid var(--ink); }

.steps__grid {
  list-style: none;
  display: grid; gap: var(--s-3);
  margin-top: var(--s-5);
}
.step {
  display: flex; align-items: flex-start; gap: var(--s-3);
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift);
  padding: var(--s-3);
}
/* o número é uma etiqueta — furo incluído */
.step__num {
  position: relative; flex: none;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  background: var(--accent); color: #fff;
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: 20px; letter-spacing: -.02em;
  border: 2.5px solid var(--ink);
  border-radius: 10px 10px 10px 4px;
  transform: rotate(-3deg);
}
.step__num::before {
  content: ""; position: absolute; top: 7px; left: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--ink);
}
.step__title { font-family: 'Archivo Black', Archivo, sans-serif; font-size: 18px; letter-spacing: -.02em; }
.step__desc  { margin-top: 5px; color: var(--ink-soft); font-size: 15.5px; }

/* ============================ PROVA SOCIAL =============================== */
.stats {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-1);
  background: var(--ink);
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift-l);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: var(--s-3) 10px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: clamp(24px, 5.4vw, 38px);
  line-height: 1; letter-spacing: -.03em;
  color: var(--accent);                              /* display ≥24px */
}
.stat__lbl {
  display: block; margin-top: 7px;
  font-size: 12.5px; line-height: 1.35; color: var(--ink-soft);
  text-wrap: balance;
}

.social .section__title { margin-top: var(--s-6); }

.offers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-5);
}

.msg {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift);
  overflow: hidden; text-decoration: none;
  transition: transform .14s var(--ease), box-shadow .14s var(--ease);
}
.msg:hover  { transform: translate(-2px, -2px); box-shadow: var(--lift-l); }
.msg:active { transform: translate(2px, 2px); box-shadow: var(--lift-s); }

.msg__media {
  position: relative; display: block;
  aspect-ratio: 4 / 3;                               /* espaço reservado = 0 CLS */
  background: var(--paper);
  border-bottom: 2.5px solid var(--ink);
  overflow: hidden;
}
/* A img é ABSOLUTA de propósito: com height:100% no fluxo, a proporção nativa
   dela (600x907 vs 600x400) vencia o aspect-ratio e cada card ficava de uma
   altura. Fora do fluxo, quem manda é o aspect-ratio e os 4 ficam iguais.
   multiply: as fotos vêm com fundo branco e sobre o creme viravam buracos
   brancos; assim o branco vira o próprio papel e o produto continua igual. */
.msg__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: multiply;
}

/* a etiqueta de desconto: canto cortado + furo, igual ao símbolo */
.msg__badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--accent); color: #fff;
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: 15px; letter-spacing: -.02em;
  padding: 7px 11px 7px 17px;
  border: 2.5px solid var(--ink);
  border-radius: 4px 9px 9px 4px;
  box-shadow: var(--lift-s);
  transform: rotate(3deg);
}
.msg__badge::before {
  content: ""; position: absolute; left: 5px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--paper); border: 1.5px solid var(--ink);
}

.msg__body { display: flex; flex-direction: column; gap: 7px; padding: var(--s-2) var(--s-2) var(--s-3); flex: 1; }

.msg__store {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.msg__store-dot { width: 9px; height: 9px; flex: none; border-radius: 50%; border: 1.5px solid var(--ink); }
.msg__store-dot--amazon { background: #F79400; }
.msg__store-dot--magalu { background: #0F84F5; }
.msg__store-dot--meli   { background: #F6D000; }
.msg__store-dot--shopee { background: #EE4D2D; }

.msg__title { font-weight: 700; font-size: 15px; line-height: 1.35; }

.msg__prices { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.msg__old { font-size: 13px; color: var(--ink-soft); }
.msg__new {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: 24px; letter-spacing: -.03em;
  color: var(--accent);                              /* 24px = display */
}

.msg__link {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: auto; padding: 10px 14px;
  background: var(--paper-2); color: var(--ink);
  font-weight: 700; font-size: 14px;
  border: 2px solid var(--ink); border-radius: var(--r-sm);
}
.msg:hover .msg__link { background: var(--gold); }

.msg__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.msg__urgent { font-size: 12px; font-weight: 700; color: var(--accent-deep); }
.msg__time   { font-size: 12px; color: var(--ink-soft); }

/* ============================ DEPOIMENTOS ================================ */
.testimonials { background: var(--paper-2); border-block: 2px solid var(--ink); }

.testi__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.testi { display: flex; flex-direction: column; }

.testi__bubble {
  position: relative;
  background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: var(--r) var(--r) var(--r) 3px;
  box-shadow: var(--lift);
  padding: var(--s-3);
}
/* rabinho da bolha: quadrado girado com 2 lados no traço — some o borrão preto */
.testi__bubble::after {
  content: ""; position: absolute; left: 16px; bottom: -9px;
  width: 15px; height: 15px;
  background: var(--paper);
  border-left: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  border-radius: 0 0 0 3px;
  transform: rotate(-45deg) skew(6deg, 6deg);
}
.testi__text { font-size: 16px; line-height: 1.55; }
.testi__time { display: block; margin-top: 10px; font-size: 12px; color: var(--ink-soft); text-align: right; }

.testi__person { display: flex; align-items: center; gap: 10px; margin-top: var(--s-3); padding-left: 6px; }
.testi__avatar {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  font-family: 'Archivo Black', Archivo, sans-serif; font-size: 15px;
  border: 2px solid var(--ink); border-radius: 50%;
}
.testi__avatar--alt  { background: var(--wa); }
.testi__avatar--gold { background: var(--gold); color: var(--ink); }  /* 6.28:1 */
.testi__name { font-weight: 700; font-size: 14.5px; }

/* ============================ CONFIANÇA (invertido) ====================== */
.trust {
  background: var(--ink);
  color: var(--paper);                               /* 16.90:1 */
  background-image: radial-gradient(rgba(251,244,232,.09) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}
.trust .section__title::after { background: var(--gold); border-color: var(--paper); }
.trust .section__lead { color: var(--paper-3); }

.trust__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.trust-card {
  background: var(--paper); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: 5px 5px 0 var(--gold);
  padding: var(--s-3);
}
.trust-card--accent { box-shadow: 5px 5px 0 var(--accent); }

.trust-card__icon { color: var(--wa); margin-bottom: var(--s-2); }
.trust-card--accent .trust-card__icon { color: var(--accent-deep); }

.trust-card__title { font-family: 'Archivo Black', Archivo, sans-serif; font-size: 17.5px; letter-spacing: -.02em; }
.trust-card__desc  { margin-top: 8px; font-size: 15px; color: var(--ink-soft); }
.trust-card__warn {
  margin-top: var(--s-2); padding: 10px 12px;
  background: var(--paper-2);
  border: 2px dashed var(--accent-deep); border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; color: var(--accent-deep);
}

/* ============================ FAQ ======================================== */
.faq__list { display: grid; gap: var(--s-2); margin-top: var(--s-5); }

.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift-s);
  overflow: hidden;
}
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  min-height: 56px; padding: var(--s-2) var(--s-3);
  font-weight: 700; font-size: 16px; cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }

/* o ícone é um "+" de traço, que vira "−" ao abrir */
.faq-item__icon {
  position: relative; flex: none; width: 22px; height: 22px;
  border: 2px solid var(--ink); border-radius: 50%;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: ""; position: absolute; inset: 50% 4px auto 4px;
  height: 2.5px; background: var(--ink); transform: translateY(-50%);
  transition: transform .18s var(--ease), opacity .18s var(--ease);
}
.faq-item__icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] .faq-item__icon { background: var(--accent); border-color: var(--ink); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: #fff; }
.faq-item[open] .faq-item__icon::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.faq-item__a {
  padding: 0 var(--s-3) var(--s-3);
  color: var(--ink-soft); font-size: 15.5px;
}

/* ============================ CTA FINAL ================================== */
.final-cta { padding-bottom: var(--s-6); }
.final-cta__inner {
  text-align: center;
  background: var(--paper);
  border: 3px solid var(--ink); border-radius: 18px;
  box-shadow: var(--lift-l);
  padding: var(--s-5) var(--s-3);
}
.final-cta__title {
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: clamp(24px, 4.6vw, 36px);
  line-height: 1.06; letter-spacing: -.03em;
  text-wrap: balance;
}
.cta--final { margin-top: var(--s-4); }

/* ============================ RODAPÉ ===================================== */
.footer {
  background: var(--ink); color: var(--paper);
  border-top: 3px solid var(--ink);
  padding: var(--s-5) 0 var(--s-4);
}
.footer__inner {
  display: grid; gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 2px solid rgba(251,244,232,.18);
}
.footer__brand {
  display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  text-decoration: none;
  font-family: 'Archivo Black', Archivo, sans-serif;
  font-size: 18px; letter-spacing: -.03em;
}
.footer__brand .brand__name-2 { color: var(--gold); }  /* 6.28:1 sobre tinta */
.footer__tag { margin-top: 10px; font-size: 14px; color: var(--paper-3); max-width: 34ch; }

.footer__nav, .footer__cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.footer__nav-title {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
}
.footer__nav a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 14.5px; color: var(--paper); text-decoration: none;
}
.footer__nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer__cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 11px 18px;
  background: var(--wa); color: #fff;
  font-weight: 700; font-size: 14.5px; text-decoration: none;
  border: 2px solid var(--paper); border-radius: var(--r-sm);
  transition: background-color .12s var(--ease);
}
.footer__cta-link:hover { background: var(--wa-hover); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  justify-content: space-between; align-items: flex-end;
  padding-top: var(--s-3);
}
.footer__note { font-size: 12.5px; line-height: 1.55; color: var(--paper-3); max-width: 62ch; }
.footer__year { font-size: 12.5px; color: var(--paper-3); }

/* ============================ CTA FIXO =================================== */
.sticky-cta {
  position: fixed; z-index: 40;
  left: 16px; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 54px; padding: 14px 20px;
  background: var(--wa); color: #fff;
  font-weight: 700; font-size: 16.5px; text-decoration: none;
  border: 2.5px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift);
  transition: transform .26s var(--ease), opacity .26s var(--ease);
}
.sticky-cta.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }

/* ============================ RESPONSIVO ================================= */
@media (min-width: 760px) {
  .container { width: min(100% - 48px, var(--container)); }
  .topbar, .hero__grid { width: min(100% - 48px, var(--container)); }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; }
  .footer__inner { grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s-3); }
  .sticky-cta { display: none; }
  .msg__media { aspect-ratio: 1 / 1; }
}

@media (min-width: 1000px) {
  .hero { padding-top: var(--s-6); }
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: var(--s-6); }
  .hero__visual { display: block; }
  .offers { grid-template-columns: repeat(4, 1fr); }
  .logos-bar__track { grid-template-columns: repeat(6, 1fr); gap: 7px; }
  .logo-chip { padding: 0 8px; }
  .logo-chip img { height: 13px; }
  .logo-chip--wide img { height: 15px; }
  .logo-chip--icon img { height: 14px; }
}

/* --- passe de telas pequenas ------------------------------------------------
   Tudo aqui saiu de MEDIÇÃO no viewport real (320x568 e 375x812), não de olho:
   - "+24.700" em Archivo Black 24px mede 104px; a coluna do placar de 3 tinha
     77px úteis a 320 -> estourava a largura. Vira RECIBO (número à esquerda,
     rótulo à direita), que é a linguagem da marca e nem aperta a fonte.
   - o contador do topo (171px) + a marca (131px) não cabem em 288px -> some;
     o mesmo número aparece 2 linhas abaixo, no hero.
   - o CTA fechava em y=745 com a dobra em 568. A prova de preço desce pra
     depois do botão e os respiros encolhem: passa a fechar acima da dobra.
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .hero { padding-top: var(--s-3); }
  .hero__inner { display: flex; flex-direction: column; }
  .hero__inner > .eyebrow      { order: 1; }
  .hero__inner > .hero__live   { order: 2; margin-top: var(--s-2); }
  .hero__inner > .hero__title  { order: 3; margin-top: 10px; }
  .hero__inner > .hero__sub    { order: 4; margin-top: var(--s-2); }
  .hero__inner > .cta          { order: 5; margin-top: var(--s-3); align-self: stretch; }
  .hero__inner > .cta__microcopy { order: 6; }
  .hero__inner > .hero__proof  { order: 7; margin-top: var(--s-2); align-self: flex-start; }
  .hero__inner > .urgency      { order: 8; }
  .hero__inner > .logos-bar    { order: 9; margin-top: var(--s-4); }

  .eyebrow { font-size: 12px; letter-spacing: .03em; line-height: 1.35; padding: 6px 11px; }
  /* no mobile as 2 metades quebram em linhas; o ponto vira marcador de lista */
  .hero__live-sep { display: none; }
  .hero__live { gap: 2px 10px; }
  .hero__proof { font-size: 14px; padding: 8px 12px; }

  /* placar vira recibo */
  .stats { grid-template-columns: 1fr; gap: 2px; }
  .stat {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
    text-align: left; padding: 13px var(--s-2);
  }
  .stat__num { font-size: 26px; }
  .stat__lbl { margin-top: 0; text-align: right; }

  .section { padding: var(--s-5) 0; }
}

@media (max-width: 400px) {
  .topbar__count { display: none; }  /* 171px + marca 131px não cabem em 288px */
  .topbar { padding-top: 12px; }
  .hero { padding-top: 14px; }
  .logo-chip { height: 38px; padding: 0 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
