/* ============================================================
   CENTRAL DOS NATURAIS — Design System
   Paleta verde natural · mobile-first · SEO-optimized
   ============================================================ */

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

:root {
  --green:        #16a34a;
  --green-dark:   #15803d;
  --green-light:  #22c55e;
  --green-leaf:   #4ade80;
  --green-bg:     #f0fdf4;
  --green-soft:   #dcfce7;

  --orange:       #f97316;  /* CTA secundário, badges */
  --orange-dark:  #ea580c;
  --yellow:       #fbbf24;  /* estrelas, ofertas */

  --ink:          #14532d;
  --text:         #1f2937;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --white:        #fff;
  --cream:        #fafaf7;

  --red:          #dc2626;  /* preço cortado, urgência */

  --shadow:       0 4px 14px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 30px rgba(0,0,0,.10);

  --radius:       12px;
  --radius-lg:    20px;

  --serif:        'Inter', system-ui, -apple-system, sans-serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--green-dark); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  vertical-align: middle;
}

/* Títulos com Inter Black (900) — visual moderno */
h1, h2, h3,
.section-title, .pdp-title, .det-title, .hero h1, .ty-title,
.hd-logo-main, .ft-brand-name, .benefit-card h3 {
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
}
.hero h1 { font-weight: 900 !important; letter-spacing: -.03em; }
.pdp-title { font-weight: 900 !important; letter-spacing: -.025em; }

/* ── ANNOUNCE BAR ─────────────────────── */
.announce {
  background: var(--green-dark);
  color: #fff;
  font-size: .82rem;
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
}
.announce strong { font-weight: 800; }

/* ── HEADER ─────────────────────── */
.hd {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.hd-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hd-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.hd-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.hd-logo-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.3px;
}
.hd-logo-sub {
  font-size: .65rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.hd-nav {
  display: none;
  gap: 24px;
  align-items: center;
}
.hd-nav a {
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s;
}
.hd-nav a:hover { color: var(--green-dark); }
@media (min-width: 768px) {
  .hd-nav { display: flex; }
}

.hd-cta {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) { .hd-cta { display: inline-flex; } }

/* ── Header: search bar ───────────── */
.hd-search { display: none; align-items: center; flex: 1; max-width: 320px; background: var(--cream); border: 1.5px solid var(--border); border-radius: 999px; padding: 6px 14px; transition: border-color .2s; }
.hd-search:focus-within { border-color: var(--green); background: #fff; }
.hd-search .material-symbols-outlined { color: var(--muted); font-size: 20px; flex-shrink: 0; }
.hd-search input { border: 0; background: transparent; outline: none; padding: 4px 8px; font-size: .9rem; color: var(--ink); width: 100%; font-family: inherit; }
.hd-search input::placeholder { color: var(--muted); }
@media (min-width: 1024px) { .hd-search { display: flex; } }

/* ── Header: "Mais" button + Mega-menu ─────────── */
.hd-nav-more { display: inline-flex; align-items: center; gap: 4px; background: none; border: 0; color: var(--text); font-size: .9rem; font-weight: 600; cursor: pointer; font-family: inherit; padding: 6px 10px; border-radius: 8px; transition: background .2s; }
.hd-nav-more:hover { background: var(--green-bg); color: var(--green-dark); }
.hd-nav-more .material-symbols-outlined { font-size: 20px; }

.hd-megamenu { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.08); z-index: 90; }
.hd-megamenu-grid { max-width: 1200px; margin: 0 auto; padding: 28px 16px; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 8px; }
.hd-megamenu-grid a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 10px; color: var(--ink); font-size: .92rem; font-weight: 600; transition: background .2s; }
.hd-megamenu-grid a:hover { background: var(--green-bg); color: var(--green-dark); }
.hd-megamenu-grid a .material-symbols-outlined { color: var(--green); font-size: 22px; flex-shrink: 0; }

/* ── Header: mobile burger + drawer ─────────── */
.hd-burger { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: none; border: 0; cursor: pointer; color: var(--ink); border-radius: 10px; transition: background .2s; }
.hd-burger:hover, .hd-burger[aria-expanded="true"] { background: var(--green-bg); color: var(--green-dark); }
.hd-burger .material-symbols-outlined { font-size: 26px; }
@media (min-width: 1024px) { .hd-burger { display: none; } }

.hd-mobile { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 999; overflow-y: auto; padding: 16px 16px 40px; animation: slideDown .25s ease-out; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.hd-search-mobile { display: flex; max-width: none; margin: 8px 0 18px; }
.hd-mobile-nav { display: grid; gap: 4px; }
.hd-mobile-nav a { display: flex; align-items: center; gap: 14px; padding: 14px 12px; border-radius: 10px; color: var(--ink); font-size: 1rem; font-weight: 600; border-bottom: 1px solid var(--border); }
.hd-mobile-nav a .material-symbols-outlined { color: var(--green); font-size: 24px; }
.hd-mobile-nav a:hover { background: var(--green-bg); }
.hd-mobile-footer { display: flex; gap: 18px; justify-content: center; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.hd-mobile-footer a { color: var(--muted); font-size: .88rem; font-weight: 600; }

/* Pra mostrar CTA + busca em mobile (CTA fica menor) */
@media (max-width: 1023px) {
  .hd-search { display: none; }
}
@media (max-width: 767px) {
  .hd-logo-text { display: none; }
  .hd-cta { display: none; }
}

/* ── HERO ─────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-bg) 0%, #fff 100%);
  padding: 48px 0 56px;
  text-align: center;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}
.hero h1 em {
  color: var(--green-dark);
  font-style: normal;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 24px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--green-dark);
  font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 4px; }

/* ── CATEGORIES GRID ─────────────────────── */
.cats {
  padding: 48px 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 1.95rem);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.18;
  letter-spacing: -.5px;
}
.section-title-left {
  text-align: left;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 24px;
}

/* ============================================================
   PDP CONTENT SECTIONS — bloco editorial com ritmo profissional
   ============================================================ */
.pdp-content { padding: 56px 0; }
.pdp-content-inner { max-width: 760px; }
.pdp-content-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #2d3037;
}
.pdp-content-body p { margin: 0 0 14px; }
.pdp-content-body p:last-child { margin-bottom: 0; }
.pdp-content-body strong { color: var(--ink); font-weight: 700; }
.pdp-content-body ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.pdp-content-body ul li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid #ecedea;
  font-size: .96rem;
  line-height: 1.55;
}
.pdp-content-body ul li:last-child { border-bottom: 0; }
.pdp-content-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  background: var(--green-bg);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* EFSA notice — visualmente integrado */
.efsa-notice {
  background: #fdf8ef;
  border-left: 3px solid #d4a017;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 28px;
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.6;
}
.efsa-notice strong { color: #8a6914; }

/* Price table — estilo Shopify-like */
.price-table {
  margin: 18px 0 6px;
  border: 1px solid #ecedea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #ecedea;
  font-size: .94rem;
  gap: 12px;
}
.price-row:last-child { border-bottom: 0; }
.price-row.featured { background: #f7faf5; }
.price-row-label { color: var(--text); flex: 1; min-width: 0; }
.price-row-label small { display: block; font-size: .76rem; color: var(--muted); margin-top: 2px; font-weight: 500; }
.price-row-value { color: var(--ink); font-weight: 700; text-align: right; white-space: nowrap; }
.price-row-value small { display: block; font-size: .72rem; color: var(--green-dark); font-weight: 600; margin-top: 2px; }

/* CTA link inline */
.cta-link {
  display: inline-block;
  background: var(--green-dark);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  letter-spacing: .2px;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 3px 10px rgba(22,101,52,.18);
}
.cta-link:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(22,101,52,.25); }

@media (max-width: 599px) {
  .pdp-content { padding: 40px 0; }
  .pdp-content-body { font-size: .94rem; }
  .pdp-content-body ul li { font-size: .9rem; padding-left: 28px; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 14px; }
  .price-row-value { text-align: left; }
  .efsa-notice { padding: 14px 16px; font-size: .86rem; }
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 600px)  { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .cats-grid { grid-template-columns: repeat(4, 1fr); } }

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.cat-icon .material-symbols-outlined { font-size: 30px; color: var(--green-dark); }
.cat-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.cat-count {
  font-size: .78rem;
  color: var(--muted);
}

/* ── PRODUCTS GRID ─────────────────────── */
.products {
  padding: 48px 0;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 600px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: #fff;
  border: 1px solid #ecedea;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(15,23,42,.08); border-color: #d8dbd5; }

.product-card a { color: inherit; display: block; }

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--green-bg);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.green { background: var(--green); }

.product-info {
  padding: 12px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-stars {
  color: var(--yellow);
  font-size: .72rem;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-name {
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-desc {
  font-size: .76rem;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  margin-top: auto;
}
.product-price-old {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-price-new {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.3px;
  display: block;
}
.product-price-new small {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── PDP (Product Detail Page) ─────────────────── */
.pdp {
  padding: 24px 0 48px;
}
.pdp-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .pdp-wrap { grid-template-columns: 1.1fr 1fr; gap: 40px; padding: 24px 0; }
}

.pdp-gal-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-bg);
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}
.pdp-gal-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.pdp-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 18px;
  font-size: .88rem;
}
.pdp-stars { color: var(--yellow); font-size: 1rem; letter-spacing: 1.5px; white-space: nowrap; }
.pdp-rating-num { color: var(--ink); font-weight: 700; }
.pdp-rating-count { color: var(--muted); font-size: .82rem; }
.pdp-rating-count::before { content: "·"; margin-right: 6px; color: var(--border); }
.pdp-rating-count a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
@media (max-width: 599px) {
  .pdp-rating-count { flex-basis: 100%; font-size: .8rem; margin-top: 2px; }
  .pdp-rating-count::before { content: ""; margin: 0; }
}

/* ── OFFERS GRID (1un / 2leve3 / 3leve5) ─────────────────── */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 480px) { .offers { grid-template-columns: 1fr 1fr 1fr; } }

.offer-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-card:hover { border-color: var(--green-light); }
.offer-card.active {
  border-color: var(--green);
  background: var(--green-bg);
  box-shadow: 0 0 0 3px rgba(22,163,74,.15);
}
.offer-best {
  border-color: var(--green) !important;
  position: relative;
}
.offer-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(249,115,22,.3);
}
.offer-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.offer-bonus {
  font-size: .72rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.offer-price-old {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: line-through;
}
.offer-price-new {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin: 4px 0;
}
.offer-installment {
  font-size: .68rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   OFFERS V2 — 3 colunas verticais
   ══════════════════════════════════════════════════════════════ */
.offers-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 28px 0;
}
@media (min-width: 700px) {
  .offers-v2 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

.offer-card-v2 {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 16px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  transition: all .25s;
  overflow: visible;
  font-family: inherit;
}
.offer-card-v2:hover {
  border-color: var(--green-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.offer-card-v2.active {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,.12), var(--shadow-lg);
}
.offer-card-v2.offer-best-v2 {
  border-color: var(--green);
  background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%);
}

/* RIBBON em cima */
.offer-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249,115,22,.4);
  z-index: 2;
}
.offer-ribbon.green {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  box-shadow: 0 4px 12px rgba(22,163,74,.4);
}

/* HEAD: tier + duração */
.offer-head { margin-bottom: 14px; }
.offer-tier {
  font-size: .92rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .3px;
  margin-bottom: 4px;
}
.offer-duration {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 500;
}

/* IMAGEM do produto dentro do card de oferta */
.offer-img-box {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.offer-img-box .offer-img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.1));
}

/* Badge "×3" / "×5" no canto superior direito da imagem */
.offer-qty-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
  box-shadow: 0 3px 10px rgba(22,163,74,.4);
  font-family: var(--sans);
}
.offer-qty-badge.gold {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 3px 10px rgba(217,119,6,.4);
}

/* PREÇOS */
.offer-prices { margin-bottom: 12px; }
.offer-price-old {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--red);
  font-weight: 600;
  margin-bottom: 2px;
}
.offer-price-main {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.5px;
}
.offer-price-main.green { color: var(--green-dark); }
.offer-price-unit {
  font-size: .82rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 4px;
}
.offer-shipping {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.offer-bonus-line {
  font-size: .72rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: .2px;
}

/* "Poupas X €" badge inferior */
.offer-savings {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .3px;
  margin-top: auto;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}

/* CTA soft (1 pote) */
.offer-cta-soft {
  background: #f3f4f6;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: auto;
}

/* ── PDP CTA ─────────────────── */
.pdp-cta {
  width: 100%;
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(22,163,74,.35);
  transition: transform .15s, box-shadow .2s;
  text-transform: uppercase;
}
.pdp-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(22,163,74,.5); }

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.pdp-trust-item {
  background: #f7f9f5;
  border: 1px solid #e3e8de;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.pdp-trust-item:hover { border-color: var(--green-light); background: var(--green-bg); }
.pdp-trust-item .material-symbols-outlined {
  font-size: 22px;
  color: var(--green-dark);
  display: block;
  margin: 0 auto 6px;
}
.pdp-trust-item strong {
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.25;
}
.pdp-trust-item small {
  font-size: .66rem;
  color: var(--muted);
  line-height: 1.3;
  display: block;
  margin-top: 2px;
}

/* Métodos de pagamento aceites (logos MB WAY/Multibanco) */
.pay-methods-pdp {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pay-methods-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .2px;
}
.pay-methods-img {
  height: 40px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 480px) {
  .pay-methods-img { height: 36px; }
  .pay-methods-label { font-size: .78rem; }
}

/* ── BENEFITS / DESCRIPTION ─────────────────── */
.pdp-benefits {
  padding: 48px 0;
  background: var(--green-bg);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 700px)  { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--green-soft);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-bg);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.benefit-icon .material-symbols-outlined { font-size: 26px; }
.benefit-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 700;
}
.benefit-card p { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ── REVIEWS ─────────────────── */
.reviews { padding: 56px 0; background: #fafaf7; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 700px)  { .reviews-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.review {
  background: #fff;
  border: 1px solid #ecedea;
  border-radius: 14px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.review:hover {
  border-color: #d8dbd5;
  box-shadow: 0 6px 22px rgba(15,23,42,.06);
  transform: translateY(-2px);
}

.review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 14px;
}
.review-stars {
  color: #f5b800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-date {
  margin-left: auto;
  font-size: .76rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-meta {
  flex-basis: 100%;
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  margin-top: 4px;
}
.review-meta strong {
  color: var(--ink);
  font-size: .94rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.review-loc {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
  background: transparent;
  padding: 0;
  border-radius: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-loc::before {
  content: "·";
  margin-right: 6px;
  color: #cdd1c9;
  font-weight: 400;
}
.review p {
  font-size: .92rem;
  color: #2d3037;
  line-height: 1.6;
  font-style: normal;
  margin: 0 0 14px;
  flex: 1;
  quotes: '\201C' '\201D';
}
.review p::before { content: open-quote; color: #cdd1c9; margin-right: 1px; }
.review p::after { content: close-quote; color: #cdd1c9; margin-left: 1px; }
.review-verif {
  font-size: .72rem;
  color: var(--green-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-bg);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  white-space: nowrap;
}
.review-verif .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 600;
}

/* ── Bloco editorial categorias (SEO) ──────────────── */
.cat-intro h2 { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--ink); margin: 0 0 14px; line-height: 1.2; }
.cat-intro h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 22px 0 8px; line-height: 1.3; }
.cat-intro p { font-size: .98rem; line-height: 1.7; color: #2c2820; margin-bottom: 12px; }
.cat-intro strong { color: var(--ink); font-weight: 700; }

/* ── FAQ ─────────────────── */
.faq { padding: 48px 0; background: var(--green-bg); }
.faq-list { max-width: 780px; margin: 28px auto 0; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; font-size: .9rem; line-height: 1.6; color: var(--text); }

/* ── FOOTER ─────────────────── */
.ft {
  background: var(--ink);
  color: #d1d5db;
  padding: 40px 0 22px;
}
.ft-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
@media (min-width: 700px) { .ft-cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.ft-brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 8px;
}
.ft-desc { font-size: .85rem; opacity: .85; line-height: 1.55; }
.ft-col h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 8px; }
.ft-col a { color: #d1d5db; font-size: .87rem; transition: color .2s; }
.ft-col a:hover { color: #fff; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  text-align: center;
  font-size: .78rem;
  opacity: .7;
}

/* ── STICKY MOBILE CTA ─────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  display: none;
}
.sticky-cta.visible { display: block; }
.sticky-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-info { flex: 1; min-width: 0; }
.sticky-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.sticky-label { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.sticky-btn {
  background: linear-gradient(180deg, var(--green-light), var(--green));
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}
@media (min-width: 900px) { .sticky-cta { display: none !important; } }
body.has-sticky { padding-bottom: 76px; }

/* ── BREADCRUMB (SEO) ─────────────────── */
.crumb {
  padding: 12px 0;
  font-size: .82rem;
  color: var(--muted);
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.crumb a { color: var(--green-dark); }
.crumb .sep { margin: 0 6px; opacity: .5; }
.crumb .current { color: var(--ink); font-weight: 600; }

/* ========== FILTROS CATEGORIA ========== */
.cat-filters { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; margin: 18px 0 24px; }
.cat-filter-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cat-filter-item { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 200px; background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px; padding: 6px 12px; transition: border-color .2s; }
.cat-filter-item:focus-within { border-color: var(--green); background: #fff; }
.cat-filter-item .material-symbols-outlined { color: var(--muted); font-size: 20px; }
.cat-filter-item input[type="search"], .cat-filter-item select { border: 0; background: transparent; outline: none; font-family: inherit; font-size: .92rem; color: var(--ink); width: 100%; padding: 6px 4px; }
.cat-filter-label { font-size: .82rem; color: var(--muted); font-weight: 600; flex-shrink: 0; }

/* ========== POPUP DESCONTO ========== */
#cdnPopup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; animation: cdnFade .2s; }
@keyframes cdnFade { from { opacity: 0 } to { opacity: 1 } }
.cdn-pop-back { position: absolute; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(4px); cursor: pointer; }
.cdn-pop-card { position: relative; background: #fff; border-radius: 18px; max-width: 420px; width: 100%; padding: 32px 24px 24px; text-align: center; box-shadow: 0 20px 50px rgba(15,23,42,.25); animation: cdnPop .3s ease-out; }
@keyframes cdnPop { from { opacity: 0; transform: translateY(20px) scale(.95) } to { opacity: 1; transform: translateY(0) scale(1) } }
.cdn-pop-x { position: absolute; top: 10px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: transparent; color: var(--muted); font-size: 1.4rem; cursor: pointer; }
.cdn-pop-x:hover { background: var(--cream); color: var(--ink); }
.cdn-pop-icon { font-size: 48px; line-height: 1; margin-bottom: 8px; }
.cdn-pop-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin: 0 0 10px; }
.cdn-pop-card p { font-size: .98rem; color: var(--muted); line-height: 1.55; margin: 0 0 18px; }
.cdn-pop-coupon { display: inline-flex; align-items: center; gap: 10px; background: var(--green-bg); border: 2px dashed var(--green); border-radius: 10px; padding: 10px 16px; margin-bottom: 18px; }
.cdn-pop-coupon span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.cdn-pop-coupon strong { font-family: 'SF Mono', Monaco, Menlo, Consolas, monospace; font-size: 1.1rem; color: var(--green-dark); letter-spacing: 1.5px; }
.cdn-pop-copy { background: var(--green); color: #fff; border: 0; padding: 6px 12px; border-radius: 8px; font-size: .82rem; font-weight: 700; cursor: pointer; font-family: inherit; }
.cdn-pop-form { display: flex; gap: 8px; margin-bottom: 14px; }
.cdn-pop-form input { flex: 1; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: .95rem; outline: none; font-family: inherit; }
.cdn-pop-form input:focus { border-color: var(--green); }
.cdn-pop-form button[type="submit"] { background: linear-gradient(180deg, var(--green-light), var(--green)); color: #fff; border: 0; padding: 12px 20px; border-radius: 10px; font-weight: 800; font-size: .92rem; cursor: pointer; font-family: inherit; white-space: nowrap; }
.cdn-pop-foot { font-size: .72rem; color: var(--muted); margin: 0; line-height: 1.5; }
.cdn-pop-foot a { color: var(--green-dark); }
.cdn-pop-cta { display: inline-block; margin-top: 14px; background: linear-gradient(180deg, var(--green-light), var(--green)); color: #fff; padding: 12px 26px; border-radius: 10px; font-weight: 800; text-decoration: none; }
@media (max-width: 480px) {
  .cdn-pop-form { flex-direction: column; }
  .cdn-pop-card { padding: 28px 20px 20px; }
}

/* ========== Logo header (imagem real em vez de ícone) ========== */
.hd-logo-img { display: block; height: 40px; width: auto; max-width: 200px; object-fit: contain; }
@media (max-width: 480px) { .hd-logo-img { height: 34px; } }
.hd-logo .hd-logo-text { display: none; }

/* Checkout logo */
.ck-header .me-logo-icon { background: transparent !important; padding: 0 !important; box-shadow: none !important; border: 0 !important; }
.ck-header .me-logo-icon img { display: block; height: 44px; width: auto; }
.ck-header .me-logo-text { display: none; }

/* ========== COOKIE BANNER RGPD ========== */
#cdnCookieBanner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9998; max-width: 720px; margin: 0 auto; transform: translateY(0); transition: transform .3s ease-out; }
.cdn-ck-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 12px 40px rgba(15,23,42,.18); padding: 18px 22px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.cdn-ck-text { flex: 1; min-width: 240px; }
.cdn-ck-title { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin: 0 0 6px; font-weight: 800; }
.cdn-ck-text p { font-size: .82rem; color: var(--muted); margin: 0; line-height: 1.55; }
.cdn-ck-text a { color: var(--green-dark); font-weight: 600; }
.cdn-ck-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.cdn-ck-btn { padding: 10px 16px; border-radius: 10px; font-weight: 700; font-size: .85rem; cursor: pointer; font-family: inherit; border: 0; transition: all .15s; }
.cdn-ck-reject { background: #fff; color: var(--text); border: 1.5px solid var(--border); }
.cdn-ck-reject:hover { border-color: var(--ink); }
.cdn-ck-accept { background: linear-gradient(180deg, var(--green-light), var(--green)); color: #fff; }
.cdn-ck-accept:hover { box-shadow: 0 4px 12px rgba(22,163,74,.3); }
@media (max-width: 600px) {
  .cdn-ck-card { flex-direction: column; align-items: stretch; padding: 14px 16px; }
  .cdn-ck-actions { width: 100%; }
  .cdn-ck-btn { flex: 1; }
}


/* ============================================================
   MOBILE-FIRST FIXES — ajustes responsivos completos
   ============================================================ */

@media (max-width: 767px) {
  .container { padding: 0 14px; }
}
@media (max-width: 380px) {
  .container { padding: 0 12px; }
}

/* Hero compacto + tipografia escalonada */
@media (max-width: 767px) {
  .hero { padding: 32px 0 36px; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2rem); margin-bottom: 12px; }
  .hero p { font-size: .95rem; padding: 0 4px; }
  .hero-trust { flex-direction: column; gap: 8px; align-items: center; }
  .hero-trust span { justify-content: center; font-size: .82rem; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; max-width: 320px; justify-content: center; }
}

/* Categories grid: 2 colunas em telefone */
@media (max-width: 599px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .cat-card { padding: 16px 10px; }
  .cat-icon { font-size: 1.6rem; }
  .cat-name { font-size: .85rem; line-height: 1.25; }
  .cat-count { font-size: .72rem; }
}

/* Products grid: 2 colunas em mobile */
@media (max-width: 599px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 10px 8px 12px; }
  .product-name { font-size: .85rem; line-height: 1.25; }
  .product-desc { font-size: .72rem; -webkit-line-clamp: 2; line-clamp: 2; }
  .product-price-old { font-size: .72rem; }
  .product-price-new { font-size: .9rem; }
  .product-price-new small { font-size: .65rem; display: block; }
  .product-stars { font-size: .8rem; }
  .product-badge { font-size: .65rem; padding: 3px 8px; top: 6px; left: 6px; }
}
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* Section titles + sub */
@media (max-width: 599px) {
  .section-title { font-size: clamp(1.3rem, 5vw, 1.7rem); text-align: center; }
  .section-sub { font-size: .9rem; text-align: center; }
}

/* Benefits 1 coluna mobile */
@media (max-width: 699px) {
  .benefits-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .benefit-card { padding: 18px; }
}

/* Reviews 1 coluna em mobile */
@media (max-width: 699px) {
  .reviews-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .review { padding: 18px 18px 16px; }
  .review-head { gap: 6px 8px; margin-bottom: 12px; }
  .review-stars { font-size: 1rem; letter-spacing: 1.5px; }
  .review-date { font-size: .74rem; }
  .review-meta strong { font-size: .9rem; }
  .review-loc { font-size: .74rem; }
  .review p { font-size: .9rem; line-height: 1.55; margin-bottom: 12px; }
  .review-verif { font-size: .7rem; }
}

/* FAQ */
@media (max-width: 599px) {
  .faq-item summary { padding: 14px; font-size: .92rem; padding-right: 36px; }
  .faq-item p { padding: 0 14px 14px; font-size: .88rem; }
}

/* Filtros categoria */
@media (max-width: 699px) {
  .cat-filter-row { flex-direction: column; gap: 8px; }
  .cat-filter-item { width: 100%; min-width: 0; }
}

/* PDP */
@media (max-width: 767px) {
  .pdp { padding: 24px 0 60px; }
  .pdp-wrap { grid-template-columns: 1fr; gap: 18px; }
  .pdp-gal-main img { max-height: 320px; object-fit: contain; }
  .pdp-title { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .pdp-rating { flex-wrap: wrap; gap: 4px; font-size: .85rem; }
  .pdp-trust { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pdp-trust-item { padding: 10px 6px; }
  .pdp-trust-item strong { font-size: .78rem; }
  .pdp-trust-item small { font-size: .68rem; }
  .pdp-cta { padding: 14px 18px; font-size: 1rem; width: 100%; justify-content: center; }
}

/* Offers */
@media (max-width: 599px) {
  .offers-v2 { gap: 8px; }
  .offer-card-v2 { padding: 14px 10px; }
  .offer-card-v2 h3 { font-size: .85rem; }
  .offer-card-v2 .price-big { font-size: 1.3rem; }
}

/* Sticky CTA */
@media (max-width: 767px) {
  .sticky-cta { padding: 10px 12px; }
  .sticky-cta .sticky-inner { gap: 8px; }
  .sticky-price { font-size: 1rem; }
  .sticky-label { font-size: .72rem; }
  .sticky-btn { padding: 10px 18px; font-size: .88rem; }
}

/* Footer cols */
@media (max-width: 767px) {
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ft-col h4 { font-size: .85rem; }
  .ft-col ul { font-size: .82rem; }
}
@media (max-width: 480px) {
  .ft-cols { grid-template-columns: 1fr; gap: 20px; }
  .ft-bottom { font-size: .75rem; padding: 14px 0; }
}

/* Crumb compacto */
@media (max-width: 599px) {
  .crumb { font-size: .78rem; padding: 10px 14px; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
}

/* Quality cert pills */
@media (max-width: 599px) {
  .quality .container > div[style*="grid-template-columns"] { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
}

/* Cat-intro / blog post tipografia */
@media (max-width: 599px) {
  .cat-intro h2, .post-page h2 { font-size: clamp(1.2rem, 5.5vw, 1.5rem) !important; }
  .cat-intro h3, .post-page h3 { font-size: 1rem !important; }
  .cat-intro p, .post-page p { font-size: .92rem !important; }
  .cat-intro ul, .post-page ul, .cat-intro ol, .post-page ol { padding-left: 18px; font-size: .92rem; }
  .post-page { padding: 24px 14px 40px; }
  .post-lede { font-size: 1rem; padding: 14px 16px; }
  .post-hero img, .post-figure img { border-radius: 10px; }
  .post-figure figcaption { font-size: .78rem; }
}

/* Tabelas com scroll horizontal */
@media (max-width: 599px) {
  table { font-size: .82rem !important; }
  table th, table td { padding: 10px !important; }
}

/* Disclaimer EFSA */
@media (max-width: 599px) {
  div[style*="border-left:4px solid"] { padding: 14px 16px !important; font-size: .85rem !important; }
}

/* Posts relacionados */
@media (max-width: 599px) {
  .post-related-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .post-related-card { padding: 14px; }
  .post-related-card h3 { font-size: .85rem; }
}
@media (max-width: 380px) {
  .post-related-grid { grid-template-columns: 1fr !important; }
}

/* Mega-menu hidden mobile */
@media (max-width: 767px) {
  .hd-megamenu { display: none !important; }
}

/* Cookie banner mobile */
@media (max-width: 480px) {
  #cdnCookieBanner { left: 8px; right: 8px; bottom: 8px; }
  .cdn-ck-card { padding: 14px; }
  .cdn-ck-title { font-size: .92rem; }
  .cdn-ck-text p { font-size: .78rem; }
  .cdn-ck-btn { padding: 9px 12px; font-size: .8rem; }
}

/* Popup mobile */
@media (max-width: 480px) {
  .cdn-pop-card { padding: 22px 18px 18px; max-height: 90vh; overflow-y: auto; }
  .cdn-pop-card h3 { font-size: 1.25rem; }
  .cdn-pop-icon { font-size: 38px; }
  .cdn-pop-coupon { padding: 8px 12px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .cdn-pop-coupon strong { font-size: .95rem; }
}

/* Banner promo */
@media (max-width: 480px) {
  #promoBanner { padding: 8px 12px !important; font-size: .78rem !important; line-height: 1.4 !important; }
}

/* Imagens responsivas */
img { max-width: 100%; height: auto; }

/* Anti-overflow horizontal global */
html, body { max-width: 100%; overflow-x: hidden; }
@media (max-width: 599px) {
  body * { max-width: 100%; }
  pre, code, table { max-width: 100%; overflow-x: auto; }
}

/* Touch targets minimos 44px (WCAG) */
@media (max-width: 767px) {
  .hd-burger, .hd-cta, .pdp-cta, .sticky-btn, .cdn-pop-copy,
  .nf-btn, .cdn-ck-btn, .ck-btn-cta, .ck-btn-back-sm,
  .post-cta-end .btn, .ty-btn { min-height: 44px; }
}
