/* ============================================================
   CATÁLOGO B2B NATIVA ALIMENTOS — catalogo-novo.css
   Mobile-first: 375px (base) / 600px / 768px / 1024px+
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --forest:      #1C2B1A;
  --moss:        #C8D97A;
  --linen:       #F5F0E8;
  --terra:       #8B4513;
  --cream:       #FAFAF7;
  --ink:         #1A1A18;
  --ink-mid:     #4A4A44;
  --ink-light:   #8A8A80;
  --border:      #E8E4DC;
  --border-dark: rgba(255,255,255,0.10);

  --moss-dim:    rgba(200,217,122,0.12);
  --forest-mid:  rgba(28,43,26,0.70);
  --shadow-sm:   0 2px 8px rgba(26,26,24,0.08);
  --shadow-md:   0 8px 32px rgba(26,26,24,0.12);
  --shadow-lg:   0 20px 60px rgba(26,26,24,0.18);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --page-width: 800px;
  --gutter: 20px;
}

@media (min-width: 768px)  { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 48px; } }

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { font-family: var(--font-body); background: var(--cream); color: var(--ink); line-height: 1.6; }

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── Page Container ── */
.page { width: 100%; max-width: var(--page-width); margin: 0 auto; background: var(--cream); }

/* ── Grain Texture ── */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════
   NAVEGAÇÃO GLOBAL
══════════════════════════════════════════ */
.nav-global {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px var(--gutter);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links-desktop { display: none; }

@media (min-width: 1024px) {
  .nav-links-desktop {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .nav-link-desktop {
    font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.65);
    transition: color 0.2s;
  }
  .nav-link-desktop:hover { color: var(--moss); }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--linen);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) { .nav-hamburger { display: none; } }

/* Drawer overlay */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  visibility: hidden;
  pointer-events: none;
}

.nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,43,26,0.60);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--forest);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 64px 24px 40px;
  gap: 2px;
  overflow-y: auto;
}

.nav-drawer.open { visibility: visible; pointer-events: auto; }
.nav-drawer.open .nav-overlay { opacity: 1; }
.nav-drawer.open .nav-panel   { transform: translateX(0); }

.nav-panel-link {
  display: block;
  padding: 13px 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245,240,232,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav-panel-link:hover { color: var(--moss); }

.nav-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(245,240,232,0.60);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.nav-close:hover { color: var(--linen); }

/* ══════════════════════════════════════════
   SECTIONS BASE
══════════════════════════════════════════ */
section {
  position: relative;
  padding: 40px var(--gutter);
}

@media (min-width: 768px)  { section { padding: 56px var(--gutter); } }
@media (min-width: 1024px) { section { padding: 64px var(--gutter); } }

section.dark  { background: var(--forest); color: var(--linen); overflow: hidden; }
section.light { background: var(--cream); color: var(--ink); }
section.linen { background: var(--linen); color: var(--ink); }

/* ── Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--moss); flex-shrink: 0; }

section.light .section-label,
section.linen .section-label { color: var(--terra); }
section.light .section-label::before,
section.linen .section-label::before { background: var(--terra); }

/* ── Typography ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 700; line-height: 1.18; letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  font-weight: 600; line-height: 1.25;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 600; line-height: 1.3;
}

.italic { font-style: italic; }

.body-lg { font-size: 1.0rem; line-height: 1.7; color: var(--ink-mid); }
.body-md { font-size: 0.925rem; line-height: 1.65; color: var(--ink-mid); }
.body-sm { font-size: 0.80rem; line-height: 1.6; color: var(--ink-light); }

section.dark .body-lg,
section.dark .body-md { color: rgba(245,240,232,0.75); }
section.dark .body-sm { color: rgba(245,240,232,0.50); }

/* ── Divider ── */
.divider { width: 48px; height: 2px; background: var(--moss); margin: 18px 0; }
section.light .divider,
section.linen .divider { background: var(--terra); }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-moss    { background: var(--moss);   color: var(--forest); }
.badge-forest  { background: var(--forest); color: var(--moss);   }
.badge-terra   { background: var(--terra);  color: #fff;          }
.badge-outline { background: transparent; border: 1.5px solid var(--border); color: var(--ink-mid); }
.badge-map     { background: var(--moss);   color: var(--forest); font-size: 0.68rem; padding: 3px 10px; }

/* ══════════════════════════════════════════
   SEÇÃO 0 — CAPA
══════════════════════════════════════════ */
.capa {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 var(--gutter);
}

@media (min-width: 768px)  { .capa { min-height: 580px; } }
@media (min-width: 1024px) { .capa { height: 640px; min-height: unset; } }

.capa .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.30;
}
.capa .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,43,26,0.55) 0%, rgba(28,43,26,0.75) 60%, rgba(28,43,26,0.90) 100%);
}

.capa .capa-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding-bottom: 70px;
}

.capa .logo-wrap img {
  height: 72px; width: auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px)  { .capa .logo-wrap img { height: 96px; }  }
@media (min-width: 1024px) { .capa .logo-wrap img { height: 120px; } }

.capa .tagline {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--moss);
}

.capa .headline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.7rem, 6vw, 2.8rem);
  font-weight: 700; line-height: 1.12; color: var(--linen); max-width: 560px;
}

.capa .sub-headline {
  font-size: clamp(0.85rem, 2.5vw, 1.0rem);
  color: rgba(245,240,232,0.70); max-width: 420px; line-height: 1.6;
}

.capa-bottom {
  position: absolute; bottom: 20px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 16px; z-index: 2;
  padding: 0 var(--gutter);
}
@media (min-width: 600px)  { .capa-bottom { gap: 28px; } }
@media (min-width: 768px)  { .capa-bottom { gap: 36px; bottom: 28px; } }
@media (min-width: 1024px) { .capa-bottom { gap: 40px; bottom: 32px; } }

.capa-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.capa-stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 3vw, 1.6rem);
  font-weight: 700; color: var(--moss); line-height: 1.2;
}
.capa-stat .stat-label {
  font-size: 0.57rem; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(245,240,232,0.55); text-align: center;
}
@media (min-width: 600px) { .capa-stat .stat-label { font-size: 0.63rem; } }

.capa-divider { width: 1px; height: 32px; background: var(--border-dark); align-self: center; }
@media (min-width: 768px) { .capa-divider { height: 48px; } }

/* ══════════════════════════════════════════
   SEÇÃO 1 — O MOMENTO É AGORA
══════════════════════════════════════════ */
.momento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px; margin-top: 24px;
}
@media (min-width: 600px) { .momento-grid { grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; } }

.data-card {
  background: var(--moss-dim);
  border: 1px solid rgba(200,217,122,0.25);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
@media (min-width: 1024px) { .data-card { padding: 28px 24px; } }

.data-card .card-value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 700; color: var(--moss); line-height: 1;
}
.data-card .card-title  { font-size: 0.92rem; font-weight: 600; color: var(--linen); }
.data-card .card-desc   { font-size: 0.78rem; color: rgba(245,240,232,0.60); line-height: 1.5; }
.data-card .card-source { font-size: 0.65rem; color: rgba(245,240,232,0.35); margin-top: 4px; letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   SEÇÃO 2 — LANÇAMENTOS
══════════════════════════════════════════ */
.lancamentos-header {
  display: flex;
  flex-direction: column;
  gap: 20px; margin-bottom: 24px;
}
@media (min-width: 768px) {
  .lancamentos-header { flex-direction: row; gap: 32px; align-items: flex-start; margin-bottom: 36px; }
}

.lancamentos-hero-img {
  width: 160px; height: 160px; object-fit: contain;
}
@media (min-width: 768px) { .lancamentos-hero-img { width: 200px; height: 200px; flex-shrink: 0; } }

.lancamentos-header-text { flex: 1; }

.lancamentos-grid {
  display: grid;
  grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 600px) { .lancamentos-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }

.produto-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
}

.produto-card .card-img-wrap {
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  height: 200px; padding: 24px;
}
@media (min-width: 768px)  { .produto-card .card-img-wrap { height: 260px; } }
@media (min-width: 1024px) { .produto-card .card-img-wrap { height: 300px; padding: 32px; } }

.produto-card .card-img-wrap img { max-height: 100%; width: auto; object-fit: contain; }

.produto-card .card-body {
  padding: 16px 16px 20px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}

.produto-card .card-nome   { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.produto-card .card-destaque { font-size: 0.85rem; font-weight: 600; color: var(--terra); }
.produto-card .card-desc   { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.55; flex: 1; }

.produto-card .card-meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border);
}
.card-sku { font-size: 0.72rem; color: var(--ink-light); letter-spacing: 0.04em; }
.card-ean { font-size: 0.70rem; font-family: 'Courier New', monospace; color: var(--ink-light); }
.card-cx  { font-size: 0.72rem; color: var(--ink-light); margin-left: auto; }

/* ══════════════════════════════════════════
   SEÇÃO 3 — VIDA NATIVA
══════════════════════════════════════════ */
.vida-nativa-header {
  position: relative;
  width: calc(100% + 2 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  margin-top: -40px; margin-bottom: 36px;
  height: 130px; overflow: hidden; display: flex; align-items: center;
}
@media (min-width: 768px)  { .vida-nativa-header { height: 150px; margin-top: -56px; } }
@media (min-width: 1024px) { .vida-nativa-header { height: 160px; margin-top: -64px; } }

.vida-nativa-header img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.vida-nativa-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,43,26,0.55) 0%, rgba(28,43,26,0.25) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 var(--gutter);
}

.vn-subcategoria-titulo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.vn-subcategoria-titulo span {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--linen);
}

.subcategoria-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--moss-dim); border: 1px solid rgba(200,217,122,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.0rem; flex-shrink: 0;
}

.vn-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr); gap: 12px;
}
@media (min-width: 600px) { .vn-grid { grid-template-columns: repeat(3,1fr); gap: 16px; } }

.vn-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color 0.2s;
}
.vn-card:hover { border-color: rgba(200,217,122,0.35); }

.vn-img {
  background: rgba(255,255,255,0.05);
  height: 140px; display: flex; align-items: center; justify-content: center; padding: 14px;
}
@media (min-width: 600px)  { .vn-img { height: 168px; padding: 18px; } }
@media (min-width: 1024px) { .vn-img { height: 200px; padding: 20px; } }

.vn-img img { max-height: 100%; width: auto; object-fit: contain; }

.vn-nome { font-size: 0.78rem; font-weight: 600; color: var(--linen); padding: 10px 12px 3px; line-height: 1.3; }
.vn-peso { font-size: 0.70rem; color: var(--moss); font-weight: 500; padding: 0 12px 4px; }
.vn-sku  { font-size: 0.62rem; color: rgba(245,240,232,0.35); font-family: 'Courier New', monospace; padding: 0 12px 10px; margin-top: auto; }

/* ══════════════════════════════════════════
   SEÇÃO 4 — GRANOLAS
══════════════════════════════════════════ */
.granola-header-img {
  width: calc(100% + 2 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  margin-top: -40px; height: 140px; object-fit: cover; margin-bottom: 36px; opacity: 0.75;
}
@media (min-width: 768px)  { .granola-header-img { height: 160px; margin-top: -56px; } }
@media (min-width: 1024px) { .granola-header-img { height: 180px; margin-top: -64px; } }

.granola-segmento { margin-bottom: 28px; }

.segmento-titulo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.segmento-linha  { flex: 1; height: 1px; background: var(--border); }

.granola-cards {
  display: grid;
  grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .granola-cards { grid-template-columns: repeat(2,1fr); gap: 16px; } }

.granola-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--cream);
}

.granola-card .gc-img {
  background: var(--linen); height: 200px;
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
@media (min-width: 768px)  { .granola-card .gc-img { height: 220px; } }
@media (min-width: 1024px) { .granola-card .gc-img { height: 240px; padding: 16px; } }

.granola-card .gc-img img { max-height: 100%; object-fit: contain; }

.granola-card .gc-body { padding: 14px 14px 18px; }
.granola-card .gc-nome { font-family: var(--font-display); font-size: 1.0rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.granola-card .gc-beneficio { font-size: 0.80rem; color: var(--terra); font-weight: 500; margin-bottom: 8px; }
.granola-card .gc-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }

.gc-sku { font-size: 0.70rem; color: var(--ink-light); }
.gc-ean { font-size: 0.68rem; color: var(--ink-light); font-family: 'Courier New', monospace; }
.gc-cx  { font-size: 0.70rem; color: var(--ink-light); margin-left: auto; }

/* ══════════════════════════════════════════
   SEÇÃO 5 — ÓLEO DE COCO
══════════════════════════════════════════ */
.oleo-grid {
  display: grid;
  grid-template-columns: 1fr; gap: 16px; margin-top: 28px;
}
@media (min-width: 600px) { .oleo-grid { grid-template-columns: repeat(2,1fr); gap: 24px; } }

.oleo-card {
  background: var(--linen); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.oleo-card .oc-img {
  background: white; width: 100%; height: 220px;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
@media (min-width: 600px)  { .oleo-card .oc-img { height: 260px; } }
@media (min-width: 1024px) { .oleo-card .oc-img { height: 300px; padding: 24px; } }

.oleo-card .oc-img img { max-height: 100%; object-fit: contain; }

.oleo-card .oc-body {
  padding: 20px 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%;
}
.oleo-card .oc-volume { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--terra); line-height: 1; }
.oleo-card .oc-nome   { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.oleo-card .oc-desc   { font-size: 0.80rem; color: var(--ink-mid); line-height: 1.5; }
.oleo-card .oc-meta   { display: flex; flex-direction: column; gap: 4px; padding-top: 12px; border-top: 1px solid var(--border); width: 100%; }
.oleo-card .oc-meta span { font-size: 0.72rem; color: var(--ink-light); text-align: center; }

/* ══════════════════════════════════════════
   SEÇÃO 6 — LINHA CLÁSSICA
══════════════════════════════════════════ */
.classica-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px;
}
@media (min-width: 600px)  { .classica-grid { grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; } }
@media (min-width: 1024px) { .classica-grid { gap: 16px; } }

.classica-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--cream); }

.classica-card .cc-img {
  background: var(--linen); height: 150px;
  display: flex; align-items: center; justify-content: center; padding: 14px;
}
@media (min-width: 600px)  { .classica-card .cc-img { height: 185px; padding: 18px; } }
@media (min-width: 1024px) { .classica-card .cc-img { height: 220px; padding: 20px; } }

.classica-card .cc-img img { max-height: 100%; object-fit: contain; }

.classica-card .cc-body { padding: 11px 12px 14px; display: flex; flex-direction: column; gap: 4px; }
.classica-card .cc-nome { font-size: 0.83rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.classica-card .cc-peso { font-size: 0.73rem; color: var(--terra); font-weight: 500; }
.classica-card .cc-meta { display: flex; flex-direction: column; gap: 3px; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 6px; }
.classica-card .cc-meta span { font-size: 0.63rem; color: var(--ink-light); font-family: 'Courier New', monospace; }

/* ══════════════════════════════════════════
   SEÇÃO 7 — MARCA PRÓPRIA / WHITE-LABEL
══════════════════════════════════════════ */
.whitelabel-bg     { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.whitelabel-content { position: relative; z-index: 2; }

.whitelabel-cards {
  display: grid;
  grid-template-columns: 1fr; gap: 14px; margin: 24px 0;
}
@media (min-width: 600px) { .whitelabel-cards { grid-template-columns: repeat(3,1fr); gap: 16px; margin: 32px 0; } }

.wl-card {
  background: rgba(245,240,232,0.12); border: 1px solid rgba(245,240,232,0.25);
  border-radius: var(--radius-md); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 10px; backdrop-filter: blur(4px);
}
.wl-card .wl-icon  { width: 44px; height: 44px; border-radius: 50%; background: var(--moss); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.wl-card .wl-titulo { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--linen); }
.wl-card .wl-desc  { font-size: 0.82rem; color: rgba(245,240,232,0.85); line-height: 1.55; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  padding: 13px 22px; border-radius: 100px; letter-spacing: 0.02em;
  transition: filter 0.2s;
}
.btn-whatsapp:hover { filter: brightness(1.08); }
.btn-whatsapp svg   { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SEÇÃO 8 — PROVA SOCIAL
══════════════════════════════════════════ */
.provas-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
@media (min-width: 600px) { .provas-grid { grid-template-columns: repeat(2,1fr); gap: 16px; } }

.prova-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 10px; }
.prova-stars { color: #F4B942; font-size: 0.85rem; letter-spacing: 2px; }
.prova-texto { font-family: var(--font-display); font-style: italic; font-size: 1.0rem; color: var(--ink); line-height: 1.6; }
.prova-autor { display: flex; align-items: center; gap: 10px; }
.prova-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--linen); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.80rem; font-weight: 600; color: var(--ink-mid); text-transform: uppercase; flex-shrink: 0; }
.prova-nome    { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.prova-empresa { font-size: 0.75rem; color: var(--ink-light); }

.provas-cta-banner {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.provas-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
}
@media (max-width: 600px) {
  .provas-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .provas-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════
   SEÇÃO 9 — PORTFÓLIO (TABELA)
══════════════════════════════════════════ */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-top: 24px;
}

.portfolio-table {
  width: 100%; min-width: 580px;
  border-collapse: collapse; font-size: 0.78rem;
}
.portfolio-table th:nth-child(2) { width: 52px; }
.portfolio-table th:nth-child(3) { width: 56px; }
.portfolio-table th:nth-child(4) { width: 132px; }
.portfolio-table th:nth-child(5) { width: 56px; }
.portfolio-table thead th:last-child,
.portfolio-table tbody td:last-child { padding-right: 16px; white-space: nowrap; }
.portfolio-table thead tr { background: var(--forest); color: var(--linen); }
.portfolio-table thead th { padding: 10px 12px; text-align: left; font-weight: 600; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.portfolio-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.portfolio-table tbody tr:nth-child(even) { background: var(--linen); }
.portfolio-table tbody td { padding: 8px 12px; color: var(--ink-mid); vertical-align: middle; }
.portfolio-table tbody td:first-child { color: var(--ink); font-weight: 500; }
.portfolio-table tbody td.ean-col { font-family: 'Courier New', monospace; font-size: 0.72rem; letter-spacing: 0.03em; white-space: nowrap; }
.portfolio-table tbody td.sku-col { font-weight: 600; color: var(--terra); }
.table-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .table-scroll-hint { display: block; }
}

.table-categoria-row td { background: var(--moss-dim) !important; padding: 7px 12px !important; font-weight: 700 !important; font-size: 0.68rem !important; letter-spacing: 0.10em !important; text-transform: uppercase !important; color: var(--forest) !important; }

/* ══════════════════════════════════════════
   SEÇÃO 10 — CONTRACAPA
══════════════════════════════════════════ */
.contracapa {
  position: relative; width: 100%;
  min-height: 320px; background: var(--forest);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px var(--gutter); overflow: hidden;
}

.contracapa .logo-contracapa img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 20px; }
@media (min-width: 768px) { .contracapa .logo-contracapa img { height: 52px; margin-bottom: 32px; } }

.contatos-grid {
  display: grid;
  grid-template-columns: 1fr; gap: 16px;
  width: 100%; max-width: 560px; margin: 0 auto; text-align: left;
}
@media (min-width: 600px) { .contatos-grid { grid-template-columns: repeat(2,1fr); gap: 20px; } }

.contato-item  { display: flex; flex-direction: column; gap: 4px; }
.contato-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); font-weight: 600; }
.contato-valor { font-size: 0.88rem; color: var(--linen); line-height: 1.5; }
.contato-item a { color: var(--moss); font-weight: 500; }

.contracapa-footer {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; width: 100%; max-width: 560px;
}
.contracapa-footer .cnpj    { font-size: 0.65rem; color: rgba(245,240,232,0.40); letter-spacing: 0.04em; }
.contracapa-footer .horarios { font-size: 0.65rem; color: rgba(245,240,232,0.40); text-align: right; }

/* ══════════════════════════════════════════
   INLINE GRID OVERRIDES (mobile-first)
   Os 6 containers com inline display:grid precisam de !important
   para sobrescrever inline styles em breakpoints menores
══════════════════════════════════════════ */
.g3col {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
@media (min-width: 600px) {
  .g3col { grid-template-columns: repeat(3,1fr) !important; }
}

/* Oculta bordas laterais dos itens do meio em mobile */
@media (max-width: 599px) {
  .g3col-mid {
    border-left: none !important;
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ══════════════════════════════════════════
   FLOATING WHATSAPP CTA
══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 18px;
  z-index: 950;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.50); }
.whatsapp-float svg   { width: 28px; height: 28px; fill: #fff; }

@media (min-width: 1024px) { .whatsapp-float { display: none; } }

/* ══════════════════════════════════════════
   PROTEÍNA HIGHLIGHT — Lançamentos
══════════════════════════════════════════ */

.badges-lancamento-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* === PROTEINA BADGE === */
.proteina-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #1C2B1A !important;
  border: 1.5px solid #C8D97A !important;
  border-radius: 100px !important;
  padding: 6px 14px !important;
  width: fit-content !important;
  margin: 8px 0 !important;
  text-decoration: none !important;
}
.proteina-badge::before {
  content: "⚡";
  font-size: 0.85rem;
  flex-shrink: 0;
}
.proteina-num {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: #C8D97A !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.proteina-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.75rem !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.card-body .proteina-badge {
  display: inline-flex !important;
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.mt-8  { margin-top:  8px;  }
.mt-16 { margin-top: 16px;  }
.mt-24 { margin-top: 24px;  }
.mt-28 { margin-top: 28px;  }
.mt-32 { margin-top: 32px;  }
.mt-40 { margin-top: 40px;  }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.text-moss   { color: var(--moss);   }
.text-terra  { color: var(--terra);  }
.text-linen  { color: var(--linen);  }
.text-forest { color: var(--forest); }

.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.gap-8        { gap:  8px; }
.gap-12       { gap: 12px; }
.gap-16       { gap: 16px; }

/* ── Print ── */
@media print {
  body { background: white; }
  .page { width: 210mm; }
  .nav-global, .whatsapp-float, .nav-drawer { display: none !important; }
}
