/* ═══════════════════════════════════════════════════════════════════
   Equilíbrio360 — style.css (design de conversão, MPA)
   Reconstruído do zero em 2026-08-10 após perda do CSS original no revert.
   Cobre as 111 classes usadas em template.php + views + helpers.
   Stack: CSS puro, mobile-first. Fontes: Lora (títulos) + Inter (texto).
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens / design system ── */
:root {
  --pin: #1c4a36;            /* verde pinheiro — marca */
  --pin-2: #265f45;
  --pin-soft: #e6efe9;
  --brass: #b08d3f;          /* latão — destaque/preço */
  --brass-soft: #f4ecd8;
  --ink: #1f2a24;            /* texto principal */
  --ink-2: #4a5a50;          /* texto secundário */
  --muted: #6b7a70;
  --bg: #faf8f3;             /* fundo off-white quente */
  --bg-2: #f1eee5;
  --cream: #faf7f0;          /* fundo claro (modelo) */
  --cream-2: #f3eedd;        /* nota editorial artigo */
  --card: #ffffff;
  --line: #e4e0d4;
  --brass-2: #c9a24a;        /* latão claro (modelo) */
  --ok: #2f8f5b;             /* pros */
  --bad: #c0392b;            /* contras */
  --shadow: 0 10px 30px rgba(31, 42, 36, .08);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --ff-h: 'Lora', Georgia, 'Times New Roman', serif;
  --ff-b: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── 2. Reset / base ── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 { font-family: var(--ff-h); line-height: 1.2; color: var(--ink); margin: 0 0 .5em; }

h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

a { color: var(--pin-2); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25rem; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--brass); color: #fff; }

/* ── 3. Acessibilidade ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  background: var(--pin);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; text-decoration: none; }

/* ── 4. Container ── */
.wrap {
  width: min(var(--container), 100% - 2.4rem);
  margin-inline: auto;
}

/* ── 5. Topbar / header (design do modelo) ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pin);
  box-shadow: 0 2px 14px rgba(13, 42, 30, .25);
}
.topbar-in {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 58px;
}
.topbar .logo { color: var(--cream); }
.topbar .logo:hover { text-decoration: none; opacity: .92; }

.logo {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--pin);
  text-decoration: none;
}
.logo span { color: var(--brass-2); }

/* nav */
.topnav { margin-left: auto; display: flex; gap: 16px; align-items: center; }
.topnav a {
  color: #dfe8df;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 600;
  padding: 6px 2px;
  position: relative;
}
.topnav a:hover { color: var(--brass-2); }
.topnav a.on { color: #fff; }
.topnav a.on::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brass-2);
}

/* ── 6. Botões ── */
.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: linear-gradient(180deg, #f5a623, #e08b12);
  color: #1a1205;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 139, 18, .35);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), filter .15s;
  border: 1px solid rgba(255, 255, 255, .35);
  white-space: nowrap;
}
.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224, 139, 18, .45);
  filter: brightness(1.05);
  text-decoration: none;
  color: #1a1205;
}
.btn-amazon.big { font-size: 1.05rem; padding: 15px 28px; }
.btn-amazon.sm { font-size: .8rem; padding: 8px 16px; box-shadow: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 22px;
  border-radius: 999px;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--brass); background: var(--brass-soft); text-decoration: none; color: var(--ink); }

.hide-m { display: none; }
@media (min-width: 820px) { .hide-m { display: inline-flex; } }

/* ── 7. Breadcrumbs ── */
.crumbs, .crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.crumbs a, .crumb a { color: var(--pin-2); }
.crumbs a:hover, .crumb a:hover { text-decoration: underline; }
.crumbs i, .crumb i { color: var(--brass); font-style: normal; }
.crumbs b, .crumb span { color: var(--ink); font-weight: 600; }

/* ── 8. Hero ── */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(176, 141, 63, .14), transparent 60%),
    radial-gradient(700px 380px at -10% 10%, rgba(38, 95, 69, .16), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero .wrap { padding-block: clamp(2.4rem, 6vw, 4.6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.6rem;
  align-items: center;
}
.hero-grid > div:first-child { display: flex; flex-direction: column; gap: 1.1rem; }
.hero h1 { margin: 0; }
.hero h1 em { color: var(--pin); font-style: italic; }
.hero-sub { color: var(--ink-2); font-size: 1.05rem; margin: 0; }
.hero-note { color: var(--muted); font-size: .88rem; margin: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-media { margin: 0; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-media figcaption {
  font-size: .76rem;
  color: var(--muted);
  margin-top: .5rem;
  text-align: center;
}

/* ── 9. Chips / badges ── */
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.chip-green { background: var(--pin-soft); border-color: transparent; color: var(--pin); }
.chip-brass { background: var(--brass-soft); border-color: transparent; color: #7a5c22; }
.chip-line { background: transparent; border: 1px dashed var(--line); color: var(--muted); }

.bdg {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--pin);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .03em;
}

/* ── 10. Seções ── */
.sec { padding-block: clamp(2rem, 5vw, 3.6rem); }
.sec-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.sec-hd h2 { margin: 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brass);
  margin-bottom: .4rem;
}
.kicker .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--pin);
  color: #fff;
  font-size: .72rem;
  letter-spacing: 0;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--pin-2);
  white-space: nowrap;
  margin-bottom: .3rem;
}
.link-more:hover { text-decoration: none; color: var(--brass); }
.section-sub { color: var(--muted); margin: 0 0 1.4rem; max-width: 720px; }
.rv { /* animação de entrada suave — via --d */ animation: rise .5s var(--ease) both; animation-delay: var(--d, 0s); }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ── 11. Grids ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

/* ── 12. Snippet (resposta rápida) ── */
.snippet {
  background: var(--pin-soft);
  border: 1px solid rgba(28, 74, 54, .18);
  border-left: 5px solid var(--pin);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-block: 1.4rem;
  color: var(--ink);
}
.snippet p:last-child { margin: 0; }
.snippet-kicker {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pin);
  margin-bottom: .4rem;
}

/* ── 13. Winner ── */
.winner {
  position: relative;
  background: linear-gradient(180deg, #fff, var(--cream-2));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-block: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.winner::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brass), var(--pin));
}
.ribbon {
  display: inline-block;
  background: var(--brass);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
}
.winner-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}
.winner-grid > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.winner-title { margin: 0 0 .8rem; }
.winner-title a { color: var(--ink); }
.winner-title a:hover { color: var(--pin); text-decoration: none; }
.winner-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.winner-meta .lbl { margin: .2rem 0 0; color: var(--ink-2); font-size: .9rem; }

.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding-inline: 8px;
  border-radius: 14px;
  background: var(--pin);
  color: #fff;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.3rem;
}
.score.lg { min-width: 64px; height: 64px; font-size: 1.7rem; }
.score.sm { min-width: 42px; height: 42px; font-size: 1.1rem; }

.stars { color: var(--brass); font-size: 1.15rem; letter-spacing: .1em; }

.winner-buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-block: 1rem;
}
.winner-buy .price-now { font-size: 1.5rem; }
.price-now {
  font-family: var(--ff-h);
  font-weight: 700;
  color: var(--ink);
}
.price-dose {
  display: block;
  font-size: .8rem;
  color: var(--muted);
}
.stock { color: var(--ok); font-size: .84rem; margin: 0; }

/* ── 14. Tabela comparativa ── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: .9rem;
}
th {
  background: var(--pin);
  color: #fff;
  text-align: left;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 14px;
  white-space: nowrap;
}
td {
  padding: 14px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
}
tr.win-row td { background: var(--brass-soft); }
tr.win-row td:first-child { box-shadow: inset 4px 0 0 var(--brass); }

.t-prod { display: flex; align-items: center; gap: .8rem; min-width: 220px; }
.t-prod img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.t-prod b a { color: var(--ink); }
.t-prod b a:hover { color: var(--pin); text-decoration: none; }
.t-prod small { display: block; color: var(--muted); font-size: .76rem; }
.t-badge {
  display: inline-block;
  margin-top: 3px;
  font-size: .68rem;
  font-weight: 700;
  background: var(--brass);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
}
.t-score { font-family: var(--ff-h); font-weight: 700; font-size: 1.15rem; color: var(--pin); white-space: nowrap; }
.t-score small { font-size: .7rem; color: var(--muted); }
.t-vered { color: var(--ink-2); min-width: 180px; }
.t-price b { white-space: nowrap; }
.table-note { font-size: .76rem; color: var(--muted); margin-top: .8rem; }

/* ── 15. Cards: produto, categoria, hub, post ── */
.prod-card, .p-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.prod-card:hover, .p-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.prod-card .im, .p-card .im { position: relative; display: block; }
.prod-card .im img, .p-card .im img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.prod-card .im .score, .p-card .im .score {
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-width: 44px;
  height: 44px;
  font-size: 1.15rem;
}
.prod-card .tx, .p-card .tx { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.prod-card .tx h3, .p-card .tx h3 { margin: 0; font-size: 1.05rem; }
.prod-card .tx h3 a, .p-card .tx h3 a { color: var(--ink); }
.prod-card .tx h3 a:hover, .p-card .tx h3 a:hover { color: var(--pin); text-decoration: none; }
.prod-card .rs, .p-card .rs { color: var(--muted); font-size: .86rem; margin: 0; flex: 1; }
.prod-card .ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: .4rem;
}
.prod-card .ft .pr { font-family: var(--ff-h); font-weight: 700; color: var(--brass); white-space: nowrap; }

.p-card .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 600;
  color: var(--pin-2);
}
.p-card .cta:hover { color: var(--brass); text-decoration: none; }

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  color: var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pin-2);
  text-decoration: none;
  color: var(--ink);
}
.ct-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.cat-card .tt { font-family: var(--ff-h); font-weight: 700; font-size: 1.1rem; color: var(--pin); }
.cat-card p { color: var(--muted); font-size: .86rem; margin: 0; flex: 1; }
.cat-card .go { color: var(--brass); font-size: .84rem; font-weight: 600; }
.cat-card .n {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-2);
  padding: 3px 9px;
  border-radius: 999px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  background: linear-gradient(160deg, var(--pin), var(--pin-2));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.hub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; color: #fff; }
.hub-card .tt { font-family: var(--ff-h); font-weight: 700; font-size: 1.05rem; color: #fff; }
.hub-card p { color: #d5e3da; font-size: .88rem; margin: 0; flex: 1; }
.hub-card .mt { display: flex; justify-content: space-between; gap: .6rem; align-items: center; font-size: .8rem; }
.hub-card .mt span { color: #b9cdc0; }
.hub-card .mt b { color: var(--brass); }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.post-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.post-card .tx { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card .mt { font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.post-card .tt { font-family: var(--ff-h); font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.35; }
.post-card .tx p { color: var(--muted); font-size: .86rem; margin: 0; flex: 1; }
.post-card:hover .tt { color: var(--pin); }
.post-card:hover { text-decoration: none; color: inherit; }
.post-card-featured { border: 2px solid var(--brass); }
.post-card-featured .tt { color: var(--pin); font-size: 1.15rem; }
.prod-wrap { display: contents; }
.prod-wrap[hidden] { display: none; }

/* ── 16. Review (comparativo) ── */
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  scroll-margin-top: 90px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding-inline: 8px;
  border-radius: 12px;
  background: var(--brass-soft);
  color: #7a5c22;
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.review-head h3 { margin: 0; flex: 1; font-size: 1.15rem; }
.review-head h3 .brand { display: block; font-size: .78rem; font-weight: 400; color: var(--muted); font-family: var(--ff-b); }
.review-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.6rem;
  align-items: start;
}
.review-grid > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-body > p { color: var(--ink-2); }
.pc { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.pc h4 { margin-bottom: .4rem; }
.pc .pros, .pc .cons { margin: 0; font-size: .9rem; }
.review-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.review-foot .price-now { font-size: 1.25rem; }

.pros { color: var(--ink); }
.cons { color: var(--ink); }
.consbox { background: #fdf3f1; border-radius: var(--radius-sm); padding: .8rem 1rem; }
.pc > div:first-child { background: var(--pin-soft); border-radius: var(--radius-sm); padding: .8rem 1rem; }

/* ── 17. Barras de avaliação (produto) ── */
.bars { display: flex; flex-direction: column; gap: .9rem; }
.bar {
  display: grid;
  grid-template-columns: 150px 1fr 42px;
  align-items: center;
  gap: .9rem;
  font-size: .9rem;
}
.bar > span:first-child { color: var(--ink-2); font-weight: 500; }
.bar > b { text-align: right; font-family: var(--ff-h); color: var(--pin); }
.bar .tr {
  height: 10px;
  border-radius: 999px;
  background: var(--bg-2);
  overflow: hidden;
}
.bar .tr i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pin), #3d8a64);
  animation: grow 1.1s var(--ease) both;
}
@keyframes grow { from { width: 0; } }

/* ── 18. Filtros / chips de forma ── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.f-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.f-chip:hover { border-color: var(--pin-2); color: var(--pin); }
.f-chip.on { background: var(--pin); border-color: var(--pin); color: #fff; }
.f-chip[hidden] { display: none; }

/* ── 19. Call de artigo / veredito ── */
.art-call {
  background: var(--pin-soft);
  border: 1px solid rgba(28, 74, 54, .2);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.art-call h3 { color: var(--pin); margin-bottom: .4rem; }
.art-call p { color: var(--ink-2); }
.art-call .btn-amazon { margin-top: .6rem; }

/* ── 20. Critérios (dark) ── */
.dark {
  background: var(--ink);
  color: #e9efe9;
  padding-block: clamp(2.4rem, 6vw, 4rem);
  margin-block: 1rem;
}
.dark h2 { color: #fff; }
.dark .section-sub { color: #aab8ad; }
.criteria {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  counter-reset: crit;
}
.criteria li {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.criteria li .num {
  font-family: var(--ff-h);
  font-weight: 700;
  font-size: .9rem;
  color: var(--brass);
}
.criteria li b { color: #fff; font-size: 1.02rem; }
.criteria li p { color: #aab8ad; font-size: .88rem; margin: 0; }

/* ── 21. FAQ ── */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: .7rem;
  overflow: hidden;
}
.faq-item details > summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-right: 2.4rem;
}
.faq-item details > summary::-webkit-details-marker { display: none; }
.faq-item details > summary::after {
  content: '+';
  position: absolute;
  right: 1.1rem;
  top: 50%;
  translate: 0 -50%;
  font-size: 1.3rem;
  color: var(--brass);
  transition: transform .2s var(--ease);
}
.faq-item details[open] > summary::after { transform: rotate(45deg); }
.faq-item details > summary:hover { background: var(--pin-soft); }
.faq-item details > p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--ink-2); font-size: .94rem; }

/* ── 22. Accordion (acc — reserva) ── */
.acc { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  text-align: left;
  padding: 1rem 0;
  cursor: pointer;
  color: var(--ink);
}
.acc-btn:hover { color: var(--pin); }
.acc-btn .pl { color: var(--brass); display: inline-flex; }
.acc-p { display: none; }
.acc[open] .acc-p, .acc.open .acc-p { display: block; padding-bottom: 1rem; color: var(--ink-2); }
.acc-p p { margin: 0; }

/* ── 23. Prose / artigo ── */
.page-head { background: linear-gradient(180deg, var(--pin-soft), var(--bg)); border-bottom: 1px solid var(--line); }
.page-head .wrap { padding-block: clamp(2.2rem, 5vw, 3.6rem); }
.page-head h1 { margin-bottom: .8rem; }
.art-meta {
  display: flex;
  gap: .6rem;
  align-items: center;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 1rem;
}
.toc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.toc h5 { margin: 0 0 .6rem; font-family: var(--ff-b); text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; color: var(--muted); }
.toc a { display: block; padding: .3rem 0; color: var(--pin-2); font-size: .92rem; border-left: 2px solid var(--line); padding-left: .8rem; }
.toc a:hover { border-left-color: var(--brass); color: var(--brass); text-decoration: none; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8rem; color: var(--pin); }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); }
.prose ul li, .prose ol li { margin-bottom: .4rem; color: var(--ink-2); }
.prose a { font-weight: 600; }

/* ── 24. Busca ── */
.search-form {
  display: flex;
  gap: .6rem;
  max-width: 560px;
  margin: 1.4rem 0 .6rem;
}
.search-form input {
  flex: 1;
  padding: 13px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: .94rem;
  background: #fff;
}
.search-form input:focus-visible { border-color: var(--pin); outline: 3px solid var(--pin-soft); }
.res-sec { margin-bottom: 2.4rem; }
.res-sec h2 { font-size: 1.2rem; margin-bottom: 1.2rem; color: var(--pin); }

/* ── 25. 404 ── */
.notfound { text-align: center; max-width: 560px; margin-inline: auto; }
.notfound h1 { font-size: 3.4rem; margin-bottom: .4rem; }
.notfound p { color: var(--muted); }

/* ── 26. Final CTA + newsletter ── */
.final-cta {
  background:
    radial-gradient(800px 300px at 90% 0%, rgba(176, 141, 63, .2), transparent 60%),
    var(--pin);
  color: #fff;
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta > .wrap > p { color: #d5e3da; max-width: 640px; margin-inline: auto; }
.final-cta .nl {
  max-width: 560px;
  margin: 2.4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  text-align: left;
}
.final-cta .nl h3 { color: #fff; }
.final-cta .nl p { color: #b9cdc0; font-size: .9rem; }
#nl-form {
  display: flex;
  gap: .6rem;
  max-width: 460px;
}
#nl-form input {
  flex: 1;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: .92rem;
}
.nl-ok { color: #a5e0bb; font-size: .88rem; }

/* ── 27. Stickybar (rodapé fixo) ── */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1.2rem;
  font-size: .86rem;
  transform: translateY(110%);
  transition: transform .35s var(--ease);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .25);
}
.stickybar.show { transform: none; }
.stickybar b { color: var(--brass); }

/* ── 28. Footer ── */
footer {
  background: var(--ink);
  color: #c3cfc6;
  padding-block: 2.6rem 5rem;
}
footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
footer .logo { color: #fff; align-self: center; }
footer p { font-size: .86rem; color: #9aa89d; margin: 0; }
footer strong { color: #dfe9e2; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin: .6rem 0;
}
.foot-links a { color: #c3cfc6; font-size: .88rem; }
.foot-links a:hover { color: var(--brass); text-decoration: none; }

/* ── 29. Utilitários ── */
.mt { font-size: .78rem; }
.tt { font-family: var(--ff-h); font-weight: 700; }
.brand { color: var(--muted); }
.lbl { font-weight: 600; }
.pl { display: inline-flex; }

/* ── 30. Responsivo ── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-media img { max-width: 620px; margin-inline: auto; }
  .winner-grid { grid-template-columns: 1fr; }
  .winner-grid > img { max-width: 320px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid > img { max-width: 260px; }
}

@media (max-width: 860px) {
  .topbar-in { flex-wrap: wrap; gap: 6px 18px; height: auto; padding-block: .7rem; }
  .topnav {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 1.1rem;
    padding-top: .4rem;
    overflow-x: auto;
  }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .criteria { grid-template-columns: 1fr; }
  .bar { grid-template-columns: 120px 1fr 40px; gap: .6rem; }
}

@media (max-width: 600px) {
  .wrap { width: 100% - 2rem; }
  .grid-3, .card-grid { grid-template-columns: 1fr; }
  .pc { grid-template-columns: 1fr; }
  .winner { padding: 1.4rem; }
  .review { padding: 1.2rem; }
  .search-form, #nl-form { flex-direction: column; }
  .search-form .btn-amazon, #nl-form .btn-amazon { justify-content: center; }
  .stickybar { padding: .6rem 1rem; gap: .6rem; }
  footer { padding-bottom: 4.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
