/* ═══════════════════════════════════════════════════
   LOJA V2 — Design system fiel ao mockup aprovado
   Tokens: --gold --goldInk --surf --surf2 --line --line2
═══════════════════════════════════════════════════ */

/* ────────────────────────────────────
   LOJA (index) — promo + chips + rows
──────────────────────────────────── */
/* ────────────────────────────────────
   TIPOGRAFIA
   A Orbitron (display "gamer") saiu: era um dos maiores responsáveis pelo ar de
   template pronto. Entrou a fonte do próprio sistema — que é o que loja de
   verdade usa — mais uma MONOESPAÇADA para dados: preço, etiqueta e specs.
   Assim os números alinham em coluna e o conjunto ganha cara de ficha técnica.
──────────────────────────────────── */
:root {
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-data: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
}

.lv2-page { padding: 0 0 80px; }

/* ────────────────────────────────────
   BARRA FIXA DO CELULAR
   Cinco atalhos no alcance do polegar (padrão de app: Pichau, Mercado Livre).
   "Serviços" ficou de fora de propósito — levava pra onde a pessoa já estava.
   No lugar entrou o Diagnóstico, que responde "qual eu compro?" antes de virar
   pergunta no WhatsApp. Só aparece no celular.
──────────────────────────────────── */
/* Todos os antigos emojis viraram SVG. SVG ignora font-size, então CADA
   contêiner precisa de tamanho explícito — sem isso o navegador desenha no
   tamanho padrão (300x150) e estoura o layout. */
.nav-icon-btn svg    { width: 18px; height: 18px; }

/* Carrinho e conta levam o rótulo escrito, como no Modelo 1. O .nav-icon-btn é
   um quadrado fixo de 36px, então quem tem texto precisa poder crescer. */
.nav-icon-btn.nb-wide { width: auto; padding: 0 12px; gap: 7px; }
.nb-lbl { font-size: 12px; font-weight: 500; white-space: nowrap; }
/* Some só no celular. Estava em 980px e escondia "Minha conta" / "Carrinho"
   numa janela de 960 — que é exatamente a largura em que o modelo mostra os
   dois escritos. */
@media (max-width: 719px) {
  .nav-icon-btn.nb-wide { width: 36px; padding: 0; }
  .nb-lbl { display: none; }
}
.type-ico svg        { width: 24px; height: 24px; color: var(--muted); }
.ok-ic svg           { width: 34px; height: 34px; }
.pa-ic svg           { width: 17px; height: 17px; }
.pend-ic svg         { width: 34px; height: 34px; color: var(--muted); }
.acc-empty-icon svg  { width: 40px; height: 40px; color: var(--muted); }
.acc-header-ico svg  { width: 22px; height: 22px; }
.acc-email-sent svg  { width: 20px; height: 20px; color: var(--muted); }

/* Ícone no meio de uma linha de texto (serial, horário, copiar…). Acompanha o
   tamanho da fonte e não encolhe quando o texto do lado é longo. */
.ic { width: 1em; height: 1em; vertical-align: -.13em; flex-shrink: 0; }

.tabbar { display: none; }

@media (max-width: 720px) {
  .tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: var(--surf);
    border-top: 1px solid var(--line);
    padding: 7px 0 max(8px, env(safe-area-inset-bottom));
  }
  .tabbar .tb {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--muted); background: none; border: none; cursor: pointer;
    font-family: inherit; text-decoration: none; padding: 2px 0;
  }
  .tabbar .tb svg { width: 20px; height: 20px; }
  .tabbar .tb span { font-size: .58rem; letter-spacing: .01em; }
  .tabbar .tb:hover, .tabbar .tb:active, .tabbar .tb.on { color: var(--gold); }
  .tabbar .tb:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

  /* Contador de itens no carrinho da barra (o do topo some no celular). O
     .cart-bdg herda posição absoluta; o wrapper .tb-ic dá o ponto de âncora. */
  .tabbar .tb-ic { position: relative; display: inline-flex; line-height: 0; }
  .tabbar .tb-ic .cart-bdg { top: -5px; right: -8px; }

  /* Espaço no fim da página pra barra não cobrir o conteúdo */
  body { padding-bottom: 66px; }
  /* Botões flutuantes sobem pra não colidir com a barra */
  .fab { bottom: 80px; }
}

/* Store header */
.sh { padding: 18px 0 0; }
.sh h2 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.sh > p { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }

/* balão único do cabeçalho — título + subtítulo + selos + filtros juntos */
.hero-box { background: var(--surf); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px 18px; margin-bottom: 22px; }
.hero-box p { font-size: .84rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.hero-box .trust-strip { margin: 0; }

/* Category chips */
.cats { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.cat {
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--line2);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .16s;
  background: none;
}
.cat:hover { color: var(--text); border-color: var(--text); }
.cat.on { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Service rows */
.rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.row {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 10px;
  cursor: pointer;
  transition: border-color .16s, box-shadow .16s;
}
.row:hover { border-color: var(--line2); }
.row.hot { box-shadow: 0 0 0 1.5px var(--gold) inset; border-color: transparent; }

.row .th {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--surf2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
}
.row .th .seal {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold);
  color: var(--goldInk);
  font-family: var(--font-display);
  font-size: 6px;
  font-weight: 900;
  padding: 2px 4px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.row-body { flex: 1; min-width: 0; }
.row h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px 5px;
  line-height: 1.25;
}
.row h4 .tag {
  font-size: 7px;
  font-weight: 900;
  color: var(--goldInk);
  background: var(--gold);
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: .05em;
  flex-shrink: 0;
}
/* Deixa o texto explicativo quebrar linha (antes cortava com "..." no celular
   e o cliente não lia justamente a parte que diz como o serviço funciona). */
.row > .row-body > p {
  font-size: 9.5px;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
}
.row .price {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.row .add {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--goldInk);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: opacity .15s;
  line-height: 1;
}
.row .add:hover { opacity: .88; }

/* descrição (benefício) no catálogo */
.card-type { font-size: 11px !important; color: var(--muted); }
.card-desc { font-size: .78rem; color: var(--muted); margin-top: 0; line-height: 1.5; }
.row-desc {
  font-size: 10.5px; color: var(--muted); margin-top: 3px; line-height: 1.4;
}
/* benefício simples no topo da página do produto (pro iniciante) */
.prod-benefit { display: block; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.35; }
.prod-detail { display: block; color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* ────────────────────────────────────
   COMO FUNCIONA + TIPOS DE ATENDIMENTO
──────────────────────────────────── */
.lv2-how { padding: 44px 0 8px; }
.lv2-faq { padding: 44px 0 12px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 16px;
}
.how-step {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
}
.how-n {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid var(--gold-brd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  margin-bottom: 12px;
}
.how-step h3 { font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.how-step p { font-size: .86rem; color: var(--muted); line-height: 1.55; }
.how-step p strong { color: var(--text2); }

.type-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.type-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.type-ico {
  font-size: 1.6rem; flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--surf2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.type-card h3 { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.type-card p { font-size: .84rem; color: var(--muted); line-height: 1.55; }
.type-card p strong { color: var(--text2); }

/* ── FAQ (accordion nativo) ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.faq-item {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 15px 18px;
  font-size: .9rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0; transition: transform .2s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── Modais: Como funciona / FAQ (abertos pelo menu) ── */
.lv2-modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,.72); z-index:1000; align-items:flex-start; justify-content:center; overflow-y:auto; padding:40px 16px; }
.lv2-modal.on { display:flex; }
.lv2-modal-box { position:relative; background:var(--surface); border:1px solid var(--line2); border-radius:18px; max-width:660px; width:100%; padding:28px 22px 24px; box-shadow:0 24px 64px rgba(0,0,0,.5); }
.lv2-modal-box .how-steps { margin-top:18px; }
.lv2-modal-box .faq-list { margin-top:14px; }
.lv2-modal-x { position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:9px; background:var(--surf2); border:1px solid var(--line); color:var(--text); font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.lv2-modal-x:hover { border-color:var(--line2); }

/* lista de contato / redes no popup */
.contato-list { display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.contato-item { display:flex; align-items:center; gap:14px; background:var(--surf); border:1px solid var(--line); border-radius:12px; padding:13px 16px; text-decoration:none; transition:border-color .15s, background .15s; }
.contato-item:hover { border-color:var(--line2); background:var(--surf2); }
.contato-ico { width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contato-ico svg { width:22px; height:22px; fill:#fff; }
.ct-wa { background:#25d366; } .ct-dc { background:#5865F2; }
.ct-em { background:var(--surf2); border:1px solid var(--line); }
.ct-em svg { stroke:var(--text); fill:none; }
.ct-ig { background:linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf); }
.ct-yt { background:#FF0000; }
.ct-tt { background:#010101; border:1px solid var(--line2); }
.ct-x  { background:#010101; border:1px solid var(--line2); }

/* ── Diagnóstico rápido ── */
.diag-cta { display:inline-flex; align-items:center; gap:8px; margin-top:14px; padding:11px 16px; border-radius:10px; background:var(--gold-bg); border:1px solid var(--gold-brd); color:var(--gold); font-family:var(--font-display); font-size:.72rem; font-weight:700; letter-spacing:.03em; cursor:pointer; transition:background .15s; text-align:left; line-height:1.3; }
.diag-cta:hover { background:rgba(255,200,32,.18); }
.diag-prog { display:flex; align-items:center; gap:10px; margin:6px 0 16px; }
.diag-bar { flex:1; height:6px; background:var(--surf2); border-radius:100px; overflow:hidden; }
.diag-bar i { display:block; height:100%; background:var(--gold); transition:width .25s; }
.diag-prog span { font-size:.72rem; color:var(--muted); white-space:nowrap; }
.diag-q { font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:16px; line-height:1.35; }
.diag-opts { display:flex; flex-direction:column; gap:10px; }
.diag-opt { text-align:left; padding:14px 16px; border-radius:12px; background:var(--surf); border:1px solid var(--line); color:var(--text); font-size:.92rem; font-weight:600; cursor:pointer; transition:border-color .15s, background .15s; font-family:inherit; }
.diag-opt:hover { border-color:var(--gold-brd); background:var(--surf2); }
.diag-back { margin-top:14px; background:none; border:none; color:var(--muted); font-size:.82rem; cursor:pointer; font-family:inherit; }
.diag-back:hover { color:var(--text); }
.diag-result-msg { font-size:.95rem; color:var(--text2); line-height:1.5; margin-bottom:16px; }
.diag-rec { display:flex; align-items:center; gap:14px; background:var(--surf); border:1px solid var(--gold-brd); border-radius:14px; padding:16px; cursor:pointer; }
.diag-rec-ico { font-size:2rem; width:52px; height:52px; border-radius:12px; background:var(--surf2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.diag-rec-info { flex:1; min-width:0; display:flex; flex-direction:column; }
.diag-rec-info strong { font-family:var(--font-display); font-size:.95rem; color:var(--text); }
.diag-rec-info span { font-size:.84rem; color:var(--muted); margin-top:2px; }
.diag-rec-price { font-family:var(--font-display); font-size:1.1rem; font-weight:900; color:var(--gold); white-space:nowrap; text-align:right; }
.diag-rec-was { display:block; font-family:var(--font-display); font-size:.72rem; font-weight:600; color:var(--muted); text-decoration:line-through; margin-top:2px; }
.diag-rec-save { align-self:flex-start; margin-top:7px; font-size:.7rem; font-weight:700; color:#16c784; background:rgba(22,199,132,.12); border:1px solid rgba(22,199,132,.32); padding:2px 9px; border-radius:100px; }
.contato-txt { display:flex; flex-direction:column; min-width:0; }
.contato-txt strong { font-size:.92rem; color:var(--text); }
.contato-txt span { font-size:.8rem; color:var(--muted); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

@media (max-width: 720px) {
  .how-steps { grid-template-columns: 1fr; }
  .type-cards { grid-template-columns: 1fr; }
  .lv2-how, .lv2-faq { padding: 32px 0 4px; }
  /* mais espaço pro nome/benefício na lista de serviços (evita corte) */
  .row { gap: 8px; padding: 10px 12px; }
  .row .th { width: 42px; height: 42px; font-size: 20px; }
  .row .price { font-size: 11.5px; }
  .row .add { width: 28px; height: 28px; font-size: 18px; }
}

/* ────────────────────────────────────
   PRODUTO
──────────────────────────────────── */
.prod-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--muted);
  margin: 14px 0 16px;
  transition: color .15s;
  text-decoration: none;
}
.prod-back:hover { color: var(--text); }

/* Gallery / icon area */
.gal {
  width: 100%;
  height: 140px;
  background: var(--surf2);
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  margin-bottom: 16px;
}
.gal .gtag {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  background: var(--surf);
  border: 1px solid var(--line2);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h3.pn {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
h3.pn .tag {
  font-size: 7.5px;
  font-weight: 900;
  color: var(--goldInk);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: .05em;
}

.rate { font-size: .8rem; color: var(--gold); margin-bottom: 10px; }
.rate span { color: var(--muted); }

.pdesc { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

/* features list */
.feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .83rem;
  color: var(--text);
}
.fck { color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* auto delivery note */
.auto-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
}

/* aviso de compatibilidade (ex.: BIOS Auto só desktop) */
.prod-aviso {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(220,55,55,.10);
  border: 1px solid rgba(220,55,55,.55);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}
.prod-aviso .pa-ic { font-size: 1.1rem; line-height: 1.3; flex-shrink: 0; }

/* badge de plataforma no card (só desktop / notebook e desktop) */
/* Etiqueta copiada do .tag do protótipo: só a barra dourada na ESQUERDA (não
   um contorno inteiro), fundo dourado a 10% e texto miúdo em caixa alta.
   Eu tinha trocado a barra por um contorno achando que gritava menos — mas a
   barra é justamente o que dá o ar de ficha técnica no modelo. */
.card-plat {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-data);
  font-size: .58rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 2px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 5px;
}
/* TODAS as etiquetas na cor da marca: o cliente bate o olho e já sabe o que é.
   A hierarquia continua de pé pelo TAMANHO e pelo PESO — etiqueta pequena e
   vazada, preço grande, botão preenchido. */
.card-plat.warn,
.card-plat.ok,
.card-plat.remoto,
.card-plat.auto {
  background: rgba(255,200,32,.10);
  color: var(--gold);
  border: none;
  border-left: 2px solid var(--gold);
}

/* Calendar */
.calbox {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}
.cal-nav2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-nav2 .mnlbl {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
}
.cal-nav2 button {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid var(--line2);
  color: var(--text);
  background: var(--surf2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .13s;
}
.cal-nav2 button:hover { border-color: var(--text); }

.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal .hd {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding: 4px 0;
  letter-spacing: .04em;
}
.cal .d {
  aspect-ratio: 1;
  border-radius: 7px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  cursor: default;
  transition: all .13s;
}
.cal .d.av { border-color: var(--line2); color: var(--text); cursor: pointer; }
.cal .d.av:hover { border-color: var(--gold); color: var(--gold); }
.cal .d.sel { background: var(--gold); border-color: var(--gold); color: var(--goldInk); font-weight: 700; }
.cal .d.today.av { font-weight: 700; }
.cal .d.wk.av { color: var(--gold); }
.cal .d.past { opacity: .22; pointer-events: none; }

/* Time slots */
.slots-box { margin-top: 10px; }
.slots-lbl {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.slot {
  padding: 6px 4px;
  border-radius: 7px;
  border: 1px solid var(--line2);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  cursor: pointer;
  background: none;
  transition: all .13s;
}
.slot:hover { border-color: var(--gold); color: var(--gold); }
.slot.sel { background: var(--gold); border-color: var(--gold); color: var(--goldInk); font-weight: 700; }
.slot.off { opacity: .3; text-decoration: line-through; cursor: default; pointer-events: none; }
.slot-ldg { font-size: .8rem; color: var(--muted); padding: 8px 0; display: block; }

/* Price + CTA area */
.pbig { margin: 16px 0 12px; }
.pbig .v {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  color: var(--text);
}

/* Gold BUY button */
.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--goldInk);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .12s;
  text-decoration: none;
  margin-bottom: 8px;
}
.buy:hover { opacity: .91; transform: translateY(-1px); }
.buy:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* Outline secondary button */
.buy2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  border-radius: 10px;
  background: none;
  border: 1px solid var(--line2);
  color: var(--text);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none;
  margin-bottom: 8px;
}
.buy2:hover { background: var(--surf2); border-color: var(--text); }

/* ────────────────────────────────────
   CHECKOUT
──────────────────────────────────── */
.ck-page { padding: 0 0 80px; }
.ck-wrap { max-width: 620px; margin: 0 auto; }
.ck-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--muted);
  margin: 14px 0 16px;
  transition: color .15s;
  text-decoration: none;
}
.ck-back:hover { color: var(--text); }

/* Summary */
.summary {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.summary-h {
  padding: 10px 14px;
  background: var(--surf2);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}
.summary-b { padding: 10px 14px; }
.sl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  font-size: .82rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.sl:last-child { border-bottom: none; }
.sl .when { color: var(--gold); font-size: .78rem; }
.sl.tot {
  border-top: 1px solid var(--line2);
  padding-top: 8px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: none;
}
.sl.tot b {
  color: var(--gold);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
}

/* Section label */
.ck-sec {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin: 14px 0 8px;
}

/* Form fields */
.fields { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.field {
  padding: 10px 12px;
  background: var(--surf);
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .16s;
  width: 100%;
}
.field::placeholder { color: var(--muted); font-size: .84rem; }
.field:focus { border-color: var(--gold); }

/* Order bump row */
.bump-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surf);
  border: 1px solid var(--line2);
  border-radius: 11px;
  padding: 12px 14px;
  margin-bottom: 12px;
  cursor: pointer;
}
.bump-row.active { border-color: var(--gold); background: rgba(255,200,32,.07); }
.bump-row input[type=checkbox] { accent-color: var(--gold); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; pointer-events: none; }
.bump-tag { font-size: .62rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; margin-bottom: 2px; }
.bump-nm { font-size: .88rem; font-weight: 600; color: var(--text); }
.bump-note { font-size: .74rem; color: var(--muted); }
.bump-price { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--gold); white-space: nowrap; margin-left: auto; flex-shrink: 0; }

/* Botão "Pagar" do brick do Mercado Pago.
   No celular o MP já deixa o botão ocupando a largura toda; no desktop ele fica
   estreito e desalinhado do resto do formulário. Isto iguala os dois.
   OBS.: o botão é componente do MP — se um dia eles mudarem a estrutura interna,
   ele só volta ao tamanho padrão (o pagamento continua funcionando). */
#mp-brick-container button {
  width: 100% !important;
  max-width: none !important;
}

/* Payment tabs */
.pay-opts {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.pay {
  flex: 1;
  padding: 10px 8px;
  text-align: center;
  font-size: .73rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  letter-spacing: .03em;
}
.pay.on { color: var(--text); border-bottom-color: var(--text); }
.pay-panel { display: none; }
.pay-panel.on { display: block; }

/* PIX block */
.pixb {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 16px;
  text-align: center;
  margin-bottom: 14px;
}
.pixb img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  margin: 0 auto 12px;
  display: block;
  border: 1px solid var(--line);
}
.pixcode {
  background: var(--surf2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: .72rem;
  color: var(--text);
  word-break: break-all;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.5;
  max-height: 80px;
  overflow: hidden;
}

/* safe label */
.mp-safe2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 10px;
}

/* poll */
.poll { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .78rem; color: var(--muted); margin: 10px 0; }
.poll-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 1.3s ease-in-out infinite; flex-shrink: 0; }
.poll-dot.ok { background: var(--green); animation: none; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ────────────────────────────────────
   CONFIRMAÇÃO
──────────────────────────────────── */
.ok-page { padding: 40px 0 80px; }
.ok-wrap { max-width: 500px; margin: 0 auto; text-align: center; padding: 0 16px; }

.ok-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2.5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.8rem;
  margin: 0 auto 18px;
  animation: popIn .4s cubic-bezier(.175,.885,.32,1.275) both;
}
.ok-ic.pend { border-color: #fbbf24; color: #fbbf24; }
@keyframes popIn { from{transform:scale(.55);opacity:0} to{transform:scale(1);opacity:1} }

.ok-t { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--text); margin-bottom:6px; }
.ok-s { font-size:.84rem; color:var(--muted); line-height:1.6; margin-bottom:20px; }

.ok-id {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .68rem;
  color: var(--muted);
  background: var(--surf2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color .14s, border-color .14s;
}
.ok-id:hover { color: var(--text); border-color: var(--line2); }

/* Serial card */
.s-card {
  background: var(--surf);
  border: 1px solid rgba(255,200,32,.28);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
  text-align: left;
}
.s-lbl { font-size:.7rem; color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:8px; }
.s-key {
  font-family: var(--font-data);
  font-size: .88rem;
  letter-spacing: .1em;
  color: var(--gold);
  word-break: break-all;
  margin-bottom: 14px;
  min-height: 22px;
  line-height: 1.5;
}
.s-key.ldg { color: var(--muted); font-size:.8rem; letter-spacing:0; font-family:'Exo 2',sans-serif; }
.s-acts { display: flex; gap: 8px; }
.s-copy {
  flex: 1;
  padding: 9px;
  border: 1px solid var(--line2);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surf2);
  cursor: pointer;
  transition: border-color .14s;
}
.s-copy:hover { border-color: var(--text); }

/* Appointment card */
.appt {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: left;
}
.ci {
  flex-shrink: 0;
  width: 48px;
  background: var(--surf2);
  border: 1px solid var(--line2);
  border-radius: 9px;
  overflow: hidden;
  text-align: center;
}
.ci .m {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold);
  background: rgba(255,200,32,.1);
  padding: 3px 0;
  display: block;
  text-transform: uppercase;
}
.ci .d2 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  padding: 4px 0 5px;
  display: block;
}
.appt-info { flex: 1; min-width: 0; }
.appt-svc { font-size:.82rem; font-weight:600; color:var(--text); margin-bottom:3px; }
.appt-time { font-size:.78rem; color:var(--muted); }

/* Actions */
.ok-acts { display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.ok-wpp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 10px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.22);
  color: #25d366;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .15s;
  text-decoration: none;
}
.ok-wpp:hover { background: rgba(37,211,102,.18); }
.ok-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line2);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.ok-new:hover { color: var(--text); border-color: var(--text); }

/* ── Cart badge ── */
.cart-wrap { position: relative; display: inline-flex; }
.cart-bdg {
  position: absolute;
  top: -4px; right: -4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--goldInk);
  font-family: var(--font-display);
  font-size: .48rem;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
}
.cart-bdg.on { display: flex; }

/* ─────────────────────────────────────────
   DESKTOP: banner de oferta + grade de cards
   (hidden on mobile, shown on >= 720px)
───────────────────────────────────────── */
.grid-area { display: none; }   /* mobile: oculto */

/* Offer banner */
.offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 18px;
}
.offer-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 5px;
}
.offer-banner p { font-size: .82rem; color: var(--muted); }

/* Card grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .16s;
}
.card:hover { border-color: var(--line2); }
.card.hot { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(255,200,32,.30); }

/* O painel de 150px só pro ícone saiu: ocupava um terço do card sem informar
   nada. O ícone foi pro canto superior direito, junto do nome — o card ficou
   denso e cabe mais produto na tela, como em loja de verdade. */
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card-top h4 { flex: 1 1 auto; min-width: 0; }
.card-ic { flex: 0 0 auto; line-height: 0; }

/* Ícones são SVG (antes emoji). SVG NÃO obedece font-size — tamanho vem daqui. */
.card-ic svg      { width: 26px; height: 26px; color: var(--muted); }
.row .th svg      { width: 24px; height: 24px; color: var(--muted); }
.diag-rec-ico svg { width: 26px; height: 26px; color: var(--muted); }
#galIcon svg      { width: 88px; height: 88px; color: var(--muted); }
.card-body {
  padding: 15px 16px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-body h4 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.card-body p { font-size: 12.5px; color: var(--muted); }
/* Preço em fonte de dados com tabular-nums: os números alinham em coluna entre
   os cards, então o cliente compara preço batendo o olho. */
/* Os selos são flex-item de uma coluna, e em coluna o align-items vale stretch:
   sem esta faixa eles esticavam pra largura toda do card virando barra. */
.card-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.card-badges .card-plat { margin-top: 0; align-self: flex-start; }

/* Ficha do card: rótulo à esquerda, valor à direita. SEM fio entre as linhas —
   eu tinha posto border-top em cada uma, o modelo não tem nenhum; o respiro
   vem só do gap. */
.card-specs { display: flex; flex-direction: column; gap: 3px; margin-top: 2px; }
.card-specs .spec {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.card-specs dt {
  font-family: var(--font-data); font-size: .58rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  flex: 0 0 auto; white-space: nowrap;
}
.card-specs dd {
  font-size: .7rem; color: var(--text); text-align: right; margin: 0;
  line-height: 1.45; min-width: 0;
}

/* Rodapé = .buyrow do protótipo: preço à esquerda, botão à direita, colado no
   fim do card pelo margin-top:auto. */
.card-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-top: auto; padding: 4px 16px 16px;
}
.card-price {
  display: flex; flex-direction: column; gap: 1px;
  font-family: var(--font-data); font-variant-numeric: tabular-nums;
  min-width: 0;
}
/* O "R$" é APAGADO no modelo, não dourado: o dourado é do número. Eu tinha
   pintado os dois de dourado e o símbolo roubava atenção do valor. */
.cp-cur  { font-size: .6rem; color: var(--muted); letter-spacing: .1em; }
.cp-val  { font-size: 1.3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.cp-inst { font-size: .64rem; color: var(--muted); margin-top: 3px; }
.card-btn {
  flex: 0 0 auto;
  padding: 9px 15px;
  border-radius: 2px;
  background: var(--gold);
  color: var(--goldInk);
  font-family: var(--font-data);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: opacity .14s;
}
.card-btn:hover { opacity: .89; }

/* ────────────────────────────────────
   TOPO, ABAS, BANNER E CHIPS (Modelo 1)
   Base = celular; o desktop entra no @media (min-width:720px) lá embaixo.
   O modelo tem DOIS layouts diferentes, não um encolhido — por isso os dois
   conjuntos existem e um esconde o outro.
──────────────────────────────────── */

/* Barra de topo. No celular o horário some e sobra só a tira de controles, à
   direita — o modelo não tem essa barra no telefone, mas idioma e tema
   precisam morar em algum lugar alcançável. */
.topbar {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 14px; padding: 5px 14px;
  background: #0A0D12; border-bottom: 1px solid var(--line);
  font-size: .68rem; color: var(--muted);
}
.tb-hours { display: none; }
.topbar-act { display: flex; align-items: center; gap: 10px; }
.tb-theme {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; padding: 0;
  background: none; border: none; color: var(--muted); cursor: pointer;
  transition: color .14s;
}
.tb-theme:hover { color: var(--text); }
.tb-theme svg { width: 15px; height: 15px; }
.topbar .lang-switch { background: none; border: none; padding: 0; height: auto; }
.topbar .lang-globe { width: 14px; height: 14px; }
.topbar .lang-switch select { font-size: .68rem; color: var(--muted); }

/* Faixa de confiança fica no rodapé do catálogo, depois dos produtos. */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px 20px;
  padding: 12px 2px; margin-top: 4px;
  font-size: .7rem; color: var(--muted);
  border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 7px; }
.trust-item svg { width: 14px; height: 14px; flex: 0 0 auto; }
.ti-star { color: var(--gold); }

/* ── Topo ── */
.nav-burger {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: 0 0 auto;
  background: none; border: none; color: var(--text); cursor: pointer;
}
.nav-burger svg { width: 20px; height: 20px; }

.nav-inner { flex-wrap: wrap; position: relative; }

/* No celular o topo é só ☰ · marca. Conta E carrinho saem: a barra de baixo já
   tem os dois (o carrinho de lá leva o contador). Idioma e tema descem pra
   gaveta do hambúrguer. */
#accNavBtn, .cart-wrap { display: none; }

.nav-search {
  order: 3; flex: 1 0 100%; margin: 8px 0 0; height: 34px;
  display: flex; align-items: center; gap: 8px; padding: 0 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line); border-radius: 3px;
  transition: border-color .14s;
}
.nav-search:focus-within { border-color: var(--gold); }
.nav-search svg { width: 16px; height: 16px; color: var(--muted); flex: 0 0 auto; }
.nav-search input {
  flex: 1 1 auto; min-width: 0;
  background: none; border: none; outline: none;
  color: var(--text); font-family: inherit; font-size: 12.5px;
}
.nav-search input::placeholder { color: var(--muted); }

/* Gaveta do hambúrguer. Idioma e tema moram aqui dentro — um DOM só, porque
   dois #themeToggle quebrariam o applyTheme (ele usa getElementById). */
.nav-links {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 60;
  flex-direction: column; gap: 2px; padding: 8px;
  background: var(--surf); border-bottom: 1px solid var(--line);
}
.nav-links.open { display: flex; }
.nav-links > a {
  padding: 11px 10px; border-radius: 3px;
  color: var(--text2); text-decoration: none; font-size: 13px;
}
.nav-links > a:hover { background: rgba(255,255,255,.05); color: var(--text); }

/* ── Chips de filtro (celular) ── */
.chips { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; margin-bottom: 10px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; cursor: pointer;
  padding: 7px 13px; border-radius: 3px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line); color: var(--text2);
  font-family: var(--font-data); font-size: .6rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .14s, color .14s, border-color .14s;
}
.chip:hover { color: var(--text); }
.chip.on { background: var(--gold); border-color: var(--gold); color: var(--goldInk); }

/* ── Banner do diagnóstico (celular) ── */
.diag-banner {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; cursor: pointer; margin-bottom: 14px;
  padding: 13px; border-radius: 3px;
  background: none; border: 1px solid var(--line2); color: var(--text);
  font-family: var(--font-data); font-size: .62rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  transition: border-color .14s, color .14s;
}
.diag-banner:hover { border-color: var(--gold); color: var(--gold); }
.ic-gauge { width: 16px; height: 16px; flex: 0 0 auto; }

/* Abas, banner e faixa são exclusivos do desktop. */
.tabs, .hero, .diag-strip { display: none; }

/* ── Lista do celular: preço em cima, "+" embaixo ── */
.row-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex: 0 0 auto; }
.row-price {
  font-family: var(--font-data); font-variant-numeric: tabular-nums;
  font-size: 15px; font-weight: 700; color: var(--gold);
  line-height: 1; white-space: nowrap;
}

/* ════════════════════════════════════
   DESKTOP
════════════════════════════════════ */
@media (min-width: 720px) {
  .nav-burger { display: none; }
  .nav-inner  { flex-wrap: nowrap; }
  #accNavBtn  { display: flex; }
  .cart-wrap  { display: inline-flex; }
  .chips, .diag-banner { display: none; }

  /* ── Moldura e alinhamento único ──
     O modelo põe tudo dentro de uma caixa com 1px de borda, e cada faixa
     respira 18px dessa borda. No site cada faixa tinha o seu próprio recuo
     (18, 28, 46 e 50px) e nada descia alinhado. Aqui zero os recuos herdados
     do .container e devolvo os 18px em cada faixa, uma vez só. */
  .shell {
    max-width: 1680px; margin: 0 auto 60px;
    border: 1px solid var(--line);
  }
  .shell .lv2-page { padding-bottom: 0; }
  .shell .lv2-page .container { max-width: none; padding: 0; }
  .shell .nav-inner { max-width: none; padding: 0 18px; }
  /* A linha de baixo do topo viraria fio duplo com a borda de cima das abas. */
  .shell #nav { border-bottom: none; }

  .topbar { justify-content: space-between; padding: 6px 18px; }
  .tb-hours { display: block; }
  .hero { padding: 18px; }
  .diag-strip { padding: 15px 18px; margin-bottom: 0; }
  .trust-strip { padding: 12px 18px; margin-top: 0; }

  /* Sem max-width: no modelo a busca é a coluna 1fr do topo e ocupa todo o
     espaço entre a marca e os botões. */
  .nav-search { order: 0; flex: 1 1 auto; max-width: none; margin: 0 22px; height: 38px; }

  /* A gaveta vira tira inline e só idioma+tema aparecem: os links estão nas
     abas logo abaixo. */
  .nav-links {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 8px; padding: 0; background: none; border: none;
  }
  .nav-links > a { display: none; }

  /* Barra de abas do protótipo: fundo de superfície, fio em cima e embaixo, e
     um fio vertical separando cada aba. */
  .tabs {
    display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
    background: var(--surf);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tabx {
    flex: 0 0 auto; cursor: pointer; text-decoration: none; white-space: nowrap;
    background: none; border: none;
    border-right: 1px solid var(--line);
    padding: 11px 16px;
    font-family: var(--font-data);
    font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    color: var(--muted);
    transition: color .14s;
  }
  .tabx:hover { color: var(--text); }
  /* Aba ativa: texto claro + fio dourado embaixo, por dentro. Eu tinha trocado
     por uma caixa clara lendo o print errado — no fonte é box-shadow inset. */
  .tabx.on { color: var(--text); box-shadow: inset 0 -2px 0 var(--gold); }

  /* Banner e faixa do diagnóstico são duas tiras empilhadas, sem cantos. */
  /* O leve azul do gradiente é do protótipo: dá o ar de "instrumento de
     medição" sem gastar o dourado, que fica reservado pro preço e o botão. */
  .hero {
    display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
    padding: 18px; margin: 0;
    background: linear-gradient(180deg, rgba(91,157,255,.05), transparent);
    border: none; border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .hero-copy { min-width: 0; }
  .hero-copy h2 {
    font-family: var(--font-display); font-size: 1.32rem; font-weight: 800;
    letter-spacing: -.03em; line-height: 1.15; color: var(--text); margin: 0 0 6px;
  }
  .hero-copy p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.5; max-width: 52ch; }
  .hero-fps { display: flex; align-items: flex-end; gap: 16px; flex: 0 0 auto; }
  .fps-col { display: flex; flex-direction: column; gap: 3px; }
  .fps-lbl {
    font-family: var(--font-data); font-size: .58rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  }
  .fps-num {
    font-family: var(--font-data); font-variant-numeric: tabular-nums;
    font-size: 1.5rem; font-weight: 700; color: var(--text); line-height: 1;
  }
  /* O DEPOIS é que é dourado, e o ganho fica apagado — eu tinha invertido os
     dois lendo do print. O número grande é o argumento; o % é a legenda. */
  .fps-num.up { color: var(--gold); }
  .fps-gain {
    font-family: var(--font-data); font-variant-numeric: tabular-nums;
    font-size: .86rem; font-weight: 700; color: var(--muted); line-height: 1;
  }
  .fps-spark { width: 96px; height: 42px; flex: 0 0 auto; }

  /* Fio EMBAIXO, não em cima: o banner logo acima já fecha com border-bottom,
     então border-top aqui virava linha dupla ali e deixava a faixa colada na
     grade sem separação nenhuma. */
  .diag-strip {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 15px 18px; margin-bottom: 0;
    background: var(--surf); border-bottom: 1px solid var(--line);
  }
  .ds-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .ds-txt strong { font-size: 13px; font-weight: 700; color: var(--text); }
  .ds-txt span { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
  .ds-btn {
    display: flex; align-items: center; gap: 8px; flex: 0 0 auto; cursor: pointer;
    background: none; border: 1px solid var(--line2); color: var(--text);
    padding: 11px 17px; border-radius: 2px;
    font-family: var(--font-data); font-size: .62rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    transition: border-color .14s, color .14s;
  }
  .ds-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* Grade contínua separada por fio, como no protótipo: cada card dá o fio da
     direita e o de baixo, e o último da fileira perde o da direita pra borda
     não ficar dobrada com a da página. */
  .grid-cards { gap: 0; }
  /* Card sem fundo próprio, como no protótipo: ele mostra o --bg da página.
     Com background: var(--surf) o card ficava do mesmo tom da barra de abas e
     da faixa do diagnóstico, e a página inteira virava uma cor só. */
  .grid-cards .card {
    background: none;
    border: none; border-radius: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .grid-cards .card:nth-child(3n) { border-right: none; }
  .grid-cards .card:hover { background: rgba(255,255,255,.02); }
  /* Sem destaque no "popular": o modelo trata os seis produtos igual. O fio
     dourado em cima de um card só quebrava o ritmo da grade. */
  .grid-cards .card.hot {
    box-shadow: none;
    border-right-color: var(--line);
    border-bottom-color: var(--line);
  }
  .grid-cards .card .card-body { padding: 16px; gap: 10px; }
}

/* Duas colunas: quem perde o fio da direita passa a ser o par, e o 3º volta a
   ter — senão sobra fio solto no meio da grade. */
@media (min-width: 720px) and (max-width: 1050px) {
  .grid-cards .card:nth-child(3n) { border-right: 1px solid var(--line); }
  .grid-cards .card:nth-child(2n) { border-right: none; }
}

/* Desktop breakpoint */
@media (min-width: 720px) {
  .rows { display: none; }       /* hide list on desktop */
  .grid-area { display: block; } /* show grid+banner */
}
@media (min-width: 720px) and (max-width: 1050px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── Scheduling step (agendar.html) ── */
.ag-hd { margin-bottom: 20px; }

.ag-prog {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.ag-step {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .08em;
  background: rgba(255,200,32,.08);
  border: 1px solid rgba(255,200,32,.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ag-svc-nm {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}
.ag-hint {
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 16px;
}
.ag-unit {
  font-size: .72rem;
  color: var(--muted);
  background: var(--line);
  border-radius: 12px;
  padding: 2px 8px;
}

/* ── Progress bar (funil produto→agendar→checkout→confirmação) ── */
.prog-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 18px;
  flex-wrap: wrap;
}
.prog-step {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.prog-step.active {
  color: var(--gold);
  border-color: rgba(255,200,32,.35);
  background: rgba(255,200,32,.07);
}
.prog-step.done { color: var(--green); }
.prog-sep { font-size: 10px; color: var(--line2); }

/* ── Responsive mobile ── */
@media (max-width: 680px) {
  .frow { grid-template-columns: 1fr; }
  .slots { grid-template-columns: repeat(3, 1fr); }
  .slot { min-height: 44px; padding: 10px 4px; }
  .s-acts { flex-direction: column; }
  .gal { height: 110px; font-size: 3.5rem; }
  .pbig .v { font-size: 20px; }
}

/* R1: hide nav-links on mobile */
@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ────────────────────────────────────
   AJUSTES FINAIS — buracos medidos, não estimados
   Entre o topo e as abas sobravam 56px, entre a grade e a faixa de confiança
   40px, e depois dela mais 72px antes da moldura fechar. Tudo herdado de
   quando cada bloco era uma seção solta na página, não uma faixa de catálogo.
──────────────────────────────────── */

/* #servicos é seletor de ID lá no shared.css: só perde com .shell junto. */
.shell #servicos { padding: 0; }
.grid-cards { margin-bottom: 0; }
.trust-strip { margin-bottom: 0; }

/* Lista do celular = .m-item do modelo: linha plana separada por fio. Era
   caixa com fundo, borda, canto de 13px e contorno dourado no popular — nada
   disso existe no protótipo. */
.rows { gap: 0; margin-bottom: 0; border-top: 1px solid var(--line); }
.row {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px;
  align-items: start; padding: 13px 14px;
  background: none; border: none; border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.row:hover { background: rgba(255,255,255,.02); border-color: var(--line); }
.row.hot   { box-shadow: none; border-color: var(--line); }
.row .th {
  width: 40px; height: auto; padding-top: 2px;
  background: none; border: none; border-radius: 0;
  display: flex; align-items: flex-start; justify-content: flex-start;
}
.row-body  { display: flex; flex-direction: column; gap: 6px; }
.row h4    { font-size: .85rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; }
/* Seletor com o mesmo peso do .row > .row-body > p lá de cima, que fixava a
   descrição em 9.5px e vencia a regra de classe simples. */
.row > .row-body > .row-desc { font-size: .69rem; margin-top: 0; line-height: 1.45; }
.row-right { gap: 7px; }
.row-price { font-size: .92rem; }
.row .add  { width: 28px; height: 28px; min-width: 0; padding: 0; border-radius: 2px; font-size: 1rem; line-height: 1; }

/* No celular o modelo não tem barra de topo: idioma e tema descem pra gaveta. */
@media (max-width: 719px) {
  .topbar { display: none; }

  /* O #nav tinha altura FIXA de 58px. A busca vai pra segunda linha e vazava
     42px pra fora do topo, caindo em cima dos chips — parecia que a caixa da
     busca tinha sumido, quando na verdade ela estava por cima do conteúdo. */
  #nav { height: auto; }
  .nav-inner { height: auto; padding: 10px 14px 12px; gap: 10px; }

  /* Marca no centro, entre o hambúrguer e o carrinho, como no modelo. Sem o
     flex:1 ela ficava colada no hambúrguer. */
  .nav-brand   { flex: 1 1 auto; text-align: center; }
  .nav-actions { flex: 0 0 auto; }
  .nav-burger  { flex: 0 0 auto; }
  .nav-links .topbar-act {
    display: flex; gap: 12px; align-items: center;
    padding: 10px 10px 4px; margin-top: 4px;
    border-top: 1px solid var(--line);
  }
}
@media (min-width: 720px) {
  .nav-links .topbar-act { display: none; }
}
