/* ======================================================
   MEOPACK , DESIGN SYSTEM
   Cores brand + sistema cromático por SKU (do Brandbook)
   ====================================================== */
:root {
  /* Institucional */
  --chumbo: #2B2F36;
  --chumbo-2: #1a1d22;
  --branco: #F4F5F0;
  --laranja: #F26C1F;
  --laranja-dk: #D85A12;
  --laranja-lt: #FFB380;
  --concreto: #8A8E95;
  --off: #EEF0EA;
  --linha: rgba(43,47,54,.12);

  /* Sistema cromático por SKU, cores REAIS dos rótulos de embalagem */
  --m01: #60A8D8; /* Azul Céu          - Redondo 200ml */
  --m02: #F07848; /* Laranja Abóbora   - Redondo 250ml */
  --m03: #60A848; /* Verde Folha       - Redondo 500ml */
  --m04: #F0C048; /* Amarelo Ouro      - Redondo 750ml */
  --m05: #784890; /* Roxo Uva          - Redondo 1000ml */
  --m06: #C04848; /* Vermelho Tomate   - Redondo 1500ml */
  --m07: #30A8A8; /* Turquesa          - Redondo 1800ml */
  --m08: #F0A848; /* Laranja Claro     - Retangular 250ml */
  --m09: #78C060; /* Verde Limão       - Retangular 500ml */

  --r-card: 18px;
  --r-btn: 100px;
  --r-sm: 10px;

  --shadow: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03);
  --shadow-md: 0 12px 32px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 30px 60px rgba(0,0,0,.18), 0 10px 20px rgba(0,0,0,.08);
  --shadow-pri: 0 20px 40px rgba(242,108,31,.35);

  --ease: cubic-bezier(.2,.7,.2,1);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-brand: 'Archivo Black', 'Plus Jakarta Sans', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--branco);
  color: var(--chumbo);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Container */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1520px; margin: 0 auto; padding: 0 24px; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .4s var(--ease);
  background: rgba(244,245,240,0);
  backdrop-filter: blur(0);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(244,245,240,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--linha);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1520px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; color: var(--chumbo); transition: color .4s; }
.logo svg { height: 36px; width: auto; }
.nav-menu { display: flex; gap: 6px; align-items: center; }
.nav-menu a {
  padding: 10px 18px;
  font-weight: 600; font-size: 14.5px;
  border-radius: var(--r-btn);
  transition: all .25s var(--ease);
  position: relative;
}
.nav-menu a:hover { background: rgba(43,47,54,.06); }
.nav-menu a.btn-cta {
  background: var(--chumbo); color: var(--branco);
  padding: 12px 22px;
}
.nav-menu a.btn-cta:hover {
  background: var(--laranja); transform: translateY(-2px);
  box-shadow: var(--shadow-pri);
}
/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  margin: 0 8px;
  padding: 4px;
  background: rgba(43,47,54,.06);
  border-radius: 100px;
}
.lang-btn {
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em;
  color: #6b6f76;
  border-radius: 100px;
  transition: all .2s;
  cursor: pointer;
}
.lang-btn:hover { color: var(--chumbo); }
.lang-btn.active { background: var(--chumbo); color: white; }

.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; background: var(--chumbo); color: white; }
.nav-burger span { display: block; width: 18px; height: 2px; background: currentColor; margin: 3px auto; transition: .3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--branco) 0%, #fff 50%, var(--branco) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}

/* Blobs coloridos flutuando */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .45;
  animation: blobMove 18s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--m03); top: -100px; left: -100px; }
.blob-2 { width: 560px; height: 560px; background: var(--m07); top: 20%; right: -180px; animation-delay: -6s; }
.blob-3 { width: 380px; height: 380px; background: var(--m06); bottom: -100px; left: 30%; animation-delay: -12s; }

@keyframes blobMove {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(.95); }
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(43,47,54,.06);
  border: 1px solid var(--linha);
  border-radius: var(--r-btn);
  font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 96px);
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero h1 .ital { font-style: italic; color: var(--laranja); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--chumbo);
  color: transparent;
  font-style: italic;
}
.hero h1 span { display: inline-block; }

.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: #4b4f57;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-sub strong { color: var(--chumbo); font-weight: 700; }

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 700; font-size: 15px;
  border-radius: var(--r-btn);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--chumbo); color: var(--branco);
  box-shadow: 0 10px 24px rgba(43,47,54,.25);
}
.btn-primary:hover {
  background: var(--laranja); transform: translateY(-3px);
  box-shadow: var(--shadow-pri);
}
.btn-ghost {
  background: transparent; color: var(--chumbo);
  border: 1.5px solid var(--chumbo);
}
.btn-ghost:hover {
  background: var(--chumbo); color: var(--branco);
  transform: translateY(-3px);
}
.btn-laranja { background: var(--laranja); color: white; box-shadow: var(--shadow-pri); }
.btn-laranja:hover { background: var(--laranja-dk); transform: translateY(-3px); }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--linha);
}
.stat-num {
  font-family: var(--font-brand);
  font-size: 40px; line-height: 1;
  color: var(--chumbo);
  margin-bottom: 6px;
}
.stat-num .un { font-size: 16px; color: var(--laranja); }
.stat-lbl { font-size: 13px; color: #6b6f76; font-weight: 500; }

/* Hero visual , pote 3D flutuando */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.stage {
  position: relative;
  width: 100%; height: 100%;
  min-height: 560px;
  perspective: 1200px;
}
@media (max-width: 1024px) {
  .hero-visual, .stage { min-height: 440px; }
  .bp-xl { width: 280px; }
  .bp-m  { width: 200px; }
  .bp-s  { width: 150px; }
}
@media (max-width: 640px) {
  .hero-visual, .stage { min-height: 360px; }
  .bp-xl { width: 220px; }
  .bp-m  { width: 160px; }
  .bp-s  { width: 120px; }
}
/* ===== HERO BLUEPRINT FLOAT ===== */
.blueprint {
  position: absolute;
  color: var(--chumbo);
  transition: transform 1s var(--ease);
  animation: potFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.blueprint img, .blueprint object {
  width: 100%; height: auto;
  filter: drop-shadow(0 20px 24px rgba(43,47,54,.08));
  pointer-events: none;
}
.bp-xl { top: 26%; right: 0%;  width: 320px; z-index: 3; animation-delay: 0s;    transform: rotate(-5deg); }
.bp-m  { top: 0%;  left: 0%;   width: 220px; z-index: 2; animation-delay: -2.2s; transform: rotate(6deg); opacity: .9; }
.bp-s  { bottom: 0%; left: 24%; width: 160px; z-index: 1; animation-delay: -4.2s; transform: rotate(-8deg); opacity: .55; }

@keyframes potFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot,0deg)); }
  50% { transform: translateY(-20px) rotate(var(--rot,0deg)); }
}

/* Ticker infinito */
.ticker {
  position: relative; z-index: 2;
  margin-top: 80px;
  padding: 16px 0;
  background: var(--chumbo);
  color: var(--branco);
  overflow: hidden;
  transform: rotate(-1.5deg);
  margin-left: -20px; margin-right: -20px;
}
.ticker-track {
  display: flex; gap: 48px; align-items: center;
  animation: tickerSlide 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 48px;
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: 28px;
  letter-spacing: -.02em;
}
.ticker-item::after {
  content: '•'; color: var(--laranja); font-size: 24px;
}
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SEÇÃO PADRÃO ============ */
section { padding: 120px 0; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--laranja);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--laranja);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  max-width: 900px;
}
.section-title .ital { font-style: italic; color: var(--laranja); }
.section-sub {
  font-size: 18px; color: #5a5e66;
  max-width: 680px; line-height: 1.55;
  margin-bottom: 64px;
}

/* ============ PILARES ============ */
.pilares-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pilar-card {
  background: var(--chumbo);
  color: var(--branco);
  padding: 32px 28px 36px;
  border-radius: var(--r-card);
  position: relative; overflow: hidden;
  transition: all .5s var(--ease);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.pilar-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 10%, var(--accent), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.pilar-card:hover::before { opacity: .5; }
.pilar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pilar-card:nth-child(1) { --accent: var(--m03); }
.pilar-card:nth-child(2) { --accent: var(--m07); }
.pilar-card:nth-child(3) { --accent: var(--m06); }
.pilar-card:nth-child(4) { --accent: var(--m09); }

.pilar-card .num {
  font-family: var(--font-mono);
  font-size: 13px; opacity: .5;
  letter-spacing: .2em;
  position: relative; z-index: 1;
}
.pilar-card .ico {
  width: 56px; height: 56px; color: var(--accent);
  margin: 14px 0 22px; position: relative; z-index: 1;
}
.pilar-card h3 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 26px; line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.pilar-card p {
  font-size: 14.5px; line-height: 1.55; opacity: .75;
  position: relative; z-index: 1;
}

/* ============ CATÁLOGO / LINHA ============ */
.linha-sec {
  background: var(--chumbo);
  color: var(--branco);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.linha-sec .section-title { color: var(--branco); }
.linha-sec .section-sub { color: #b4b8c0; }

.linha-bg-text {
  position: absolute; left: 0; right: 0; bottom: -60px;
  font-family: var(--font-brand);
  font-size: clamp(120px, 22vw, 340px);
  color: rgba(255,255,255,.04);
  line-height: 1; letter-spacing: -.04em;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

.produtos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.prod-card {
  background: linear-gradient(145deg, #373c44, #2a2e35);
  border-radius: var(--r-card);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
  transition: all .5s var(--ease);
  cursor: pointer;
}
.prod-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, var(--sku-color), transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.prod-card:hover::before { opacity: .22; }
.prod-card:hover { transform: translateY(-10px); border-color: var(--sku-color); }
.prod-card > * { position: relative; z-index: 1; }
.prod-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 20px;
}
.prod-cod {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .15em;
  color: var(--sku-color);
  font-weight: 600;
}
.prod-formato { font-size: 12px; color: #9aa0aa; letter-spacing: .1em; text-transform: uppercase; }
.prod-visual {
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sku-color);
  margin: 20px 0;
  position: relative;
}
.prod-visual::before {
  content: '';
  position: absolute; inset: 10% 8%;
  background: radial-gradient(ellipse at 50% 45%, var(--sku-color) 0%, var(--sku-color) 20%, transparent 65%);
  opacity: .28;
  filter: blur(42px);
  z-index: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.prod-card:hover .prod-visual::before { opacity: .55; transform: scale(1.08); }
.prod-visual::after {
  content: '';
  position: absolute; left: 20%; right: 20%; bottom: 12%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0,0,0,.45), transparent 70%);
  filter: blur(8px);
  z-index: 0;
}
.prod-visual img {
  max-width: 85%; max-height: 100%;
  width: auto; height: auto;
  position: relative; z-index: 1;
  transition: transform .6s var(--ease);
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.35));
}
.prod-card:hover .prod-visual img { transform: scale(1.06) rotate(-3deg); }
.prod-capacidade {
  font-family: var(--font-brand);
  font-size: 46px; line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.prod-capacidade .ml { color: var(--sku-color); font-size: 24px; }
.prod-nome {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  margin-bottom: 16px;
  color: #e4e7ec;
}
.prod-apelido {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sku-color);
  color: var(--chumbo);
  font-size: 11px; font-weight: 700;
  letter-spacing: .05em;
  border-radius: var(--r-btn);
  margin-bottom: 20px;
}
.prod-pack {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: #b4b8c0;
}
.prod-pack strong { color: var(--branco); }

/* ============ PACK SHOTS GRID ============ */
.packs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.pack-card {
  position: relative;
  background: linear-gradient(145deg, #373c44, #2a2e35);
  border-radius: var(--r-card);
  padding: 28px 20px 24px;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: all .5s var(--ease);
  text-align: center;
}
.pack-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--sku-color), transparent 60%);
  opacity: .15;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.pack-card:hover { transform: translateY(-8px); border-color: var(--sku-color); }
.pack-card:hover::before { opacity: .35; }
.pack-card img {
  width: 100%; height: auto;
  max-height: 340px; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 24px 28px rgba(0,0,0,.35));
  transition: transform .5s var(--ease);
}
.pack-card:hover img { transform: scale(1.05); }
.pack-card figcaption {
  position: relative; z-index: 1;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sku-color);
  font-weight: 600;
}

/* ============ CRISTAL / TRANSPARÊNCIA ============ */
.cristal-sec {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--branco) 0%, var(--off) 100%);
  position: relative;
  overflow: hidden;
}
.cristal-sec::before {
  content: '';
  position: absolute;
  top: 20%; right: -200px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,108,31,.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.cristal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cristal-list {
  list-style: none;
  margin-top: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cristal-list li {
  font-family: var(--font-mono);
  font-size: 14px;
  color: #4a4e56;
  letter-spacing: .02em;
}
.cristal-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cristal-visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle at 50% 45%, rgba(43,47,54,.12), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.cristal-visual img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 32px 40px rgba(0,0,0,.18)) drop-shadow(0 10px 16px rgba(0,0,0,.08));
}
@media (max-width: 1024px) {
  .cristal-grid { grid-template-columns: 1fr; gap: 40px; }
  .cristal-visual { aspect-ratio: 4 / 3; }
}
@media (max-width: 640px) {
  .cristal-sec { padding: 70px 0; }
  .cristal-list { font-size: 13px; }
}

/* ============ SISTEMA CROMÁTICO , FAIXA ============ */
.sistema-sec { padding: 140px 0; background: var(--off); position: relative; }
.cromatico-row {
  display: grid; grid-template-columns: repeat(9, 1fr);
  margin-top: 40px;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cromatico-col {
  padding: 40px 14px;
  text-align: center;
  color: var(--chumbo);
  transition: all .5s var(--ease);
  cursor: pointer;
  position: relative;
  min-height: 260px;
}
.cromatico-col:hover { flex-grow: 2; padding-top: 60px; }
.cromatico-col .code {
  font-family: var(--font-mono);
  font-size: 12px; opacity: .7; letter-spacing: .15em;
  font-weight: 600;
}
.cromatico-col .vol {
  font-family: var(--font-brand);
  font-size: 28px;
  margin-top: 12px;
  line-height: 1;
}
.cromatico-col .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  margin-top: 8px;
}

/* ============ FÁBRICA / SOBRE ============ */
.sobre-sec { padding: 140px 0; }
.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.sobre-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--m03), var(--m07));
}
.sobre-visual::before {
  content: 'BOM JARDIM/RJ';
  position: absolute; top: 40px; left: 40px;
  font-family: var(--font-mono);
  font-size: 12px; color: rgba(255,255,255,.7);
  letter-spacing: .3em;
  z-index: 2;
}
.factory-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--branco);
}
.factory-art svg { width: 80%; }

.sobre-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}
.sobre-content p {
  font-size: 17px; color: #4a4e56; line-height: 1.7;
  margin-bottom: 20px;
}
.sobre-content p .big-q { color: var(--laranja); font-weight: 700; }

.sobre-coords {
  margin-top: 32px;
  padding: 24px;
  background: var(--off);
  border-left: 3px solid var(--laranja);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #3a3e46;
}

/* ============ DEPOIMENTO / ME AJUDA ============ */
.meajuda-sec {
  background: var(--laranja);
  color: white;
  padding: 140px 0;
  position: relative; overflow: hidden;
}
.meajuda-sec::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,.2), transparent 60%);
}
.meajuda-inner { position: relative; z-index: 1; text-align: center; }
.meajuda-inner .quote-mark {
  font-family: var(--font-display);
  font-size: 180px; line-height: .6;
  opacity: .25;
  margin-bottom: -30px;
}
.meajuda-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  max-width: 1000px;
  margin: 0 auto 32px;
  letter-spacing: -.02em;
}
.meajuda-quote span { display: inline-block; }
.meajuda-author {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}

/* ============ CTA FINAL / AMOSTRA ============ */
.cta-sec { padding: 120px 0; }
.cta-card {
  background: var(--chumbo);
  border-radius: 28px;
  padding: 80px 60px;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
  color: var(--branco);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-card::before {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--laranja) 0%, transparent 70%);
  opacity: .4;
  pointer-events: none;
}
.cta-card::after {
  content: 'amostra';
  position: absolute; left: 40%; bottom: -30px;
  font-family: var(--font-brand);
  font-size: 180px;
  color: rgba(255,255,255,.05);
  line-height: 1;
  letter-spacing: -.03em;
  pointer-events: none;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-card h2 .ital { font-style: italic; color: var(--laranja); }
.cta-card p { opacity: .75; margin-bottom: 32px; font-size: 17px; }

.cta-form {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.form-row { display: flex; flex-direction: column; gap: 14px; }
.form-row input, .form-row select {
  padding: 14px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--branco);
  border-radius: 10px;
  font-family: inherit; font-size: 14px;
  transition: all .2s;
}
.form-row input:focus, .form-row select:focus {
  outline: none;
  border-color: var(--laranja);
  background: rgba(255,255,255,.12);
}
.form-row input::placeholder { color: rgba(255,255,255,.4); }
.form-row select option { background: var(--chumbo); }

/* ============ FOOTER ============ */
footer {
  background: var(--chumbo-2);
  color: #b4b8c0;
  padding: 80px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-logo { color: var(--branco); margin-bottom: 20px; display: block; }
.foot-logo svg { height: 32px; }
.foot-sobre { font-size: 14px; line-height: 1.65; max-width: 360px; }
.foot-col h4 {
  color: var(--branco);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; transition: color .2s; }
.foot-col a:hover { color: var(--laranja); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}

/* ============ FILTRO DE CATÁLOGO ============ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
  padding: 8px;
  background: white;
  border-radius: var(--r-btn);
  box-shadow: var(--shadow);
  width: fit-content;
}
.filter-btn {
  padding: 10px 20px;
  font-weight: 600; font-size: 13px;
  border-radius: var(--r-btn);
  transition: all .25s;
  color: #5a5e66;
}
.filter-btn.active { background: var(--chumbo); color: var(--branco); }
.filter-btn:not(.active):hover { background: rgba(43,47,54,.06); color: var(--chumbo); }

/* ============ TABELA TÉCNICA ============ */
.tbl-wrap { overflow-x: auto; border-radius: var(--r-card); box-shadow: var(--shadow); }
table.tech {
  width: 100%; border-collapse: collapse;
  background: white;
  font-size: 14px;
}
table.tech thead th {
  text-align: left; padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: #6b6f76; font-weight: 600;
  background: var(--off);
  border-bottom: 1px solid var(--linha);
}
table.tech tbody td {
  padding: 18px;
  border-bottom: 1px solid var(--linha);
}
table.tech tbody tr:hover { background: #fffaf2; }
table.tech tbody tr:last-child td { border-bottom: 0; }
.sku-chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700;
}
.sku-chip::before {
  content: ''; width: 20px; height: 20px; border-radius: 6px; background: var(--sku-color);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* ============ WHATS FAB ============ */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .3s var(--ease);
  animation: waPulse 2s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1) rotate(-8deg); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============ LEAD GATE MODAL (baixar catálogo) ============ */
.lead-modal {
  position: fixed; inset: 0;
  background: rgba(26,29,34,.8);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: modalFade .3s ease;
}
.lead-modal.open { display: flex; }
@keyframes modalFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes modalPop { from { opacity: 0; transform: translateY(20px) scale(.96) } to { opacity: 1; transform: none } }

.lead-card {
  background: white;
  border-radius: 22px;
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  padding: 40px 40px 32px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
  animation: modalPop .4s var(--ease);
}
.lead-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--off);
  color: var(--chumbo);
  font-size: 20px; line-height: 1;
  transition: all .2s;
}
.lead-close:hover { background: var(--chumbo); color: white; transform: rotate(90deg); }

.lead-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 14px;
  font-weight: 600;
}
.lead-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--laranja);
}
.lead-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.lead-card h2 .ital { font-style: italic; color: var(--laranja); }
.lead-card .lead-sub {
  font-size: 14.5px;
  color: #5a5e66;
  line-height: 1.55;
  margin-bottom: 26px;
}

.lead-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: #6b6f76;
  margin-bottom: 6px;
  margin-top: 14px;
}
.lead-form label:first-child { margin-top: 0; }
.lead-form input, .lead-form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--off);
  border: 1.5px solid transparent;
  color: var(--chumbo);
  border-radius: 10px;
  font-family: inherit; font-size: 14.5px;
  transition: all .2s;
}
.lead-form input:focus, .lead-form select:focus {
  outline: none;
  border-color: var(--laranja);
  background: white;
  box-shadow: 0 0 0 4px rgba(242,108,31,.12);
}
.lead-form .lead-row2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 520px) {
  .lead-card { padding: 32px 24px 24px; }
  .lead-form .lead-row2 { grid-template-columns: 1fr; }
}

.lead-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding: 14px;
  background: var(--off); border-radius: 10px;
  font-size: 12.5px; line-height: 1.5; color: #5a5e66;
}
.lead-consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--laranja); flex: 0 0 16px; }
.lead-consent label {
  font-family: inherit !important;
  font-size: 12.5px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: #5a5e66 !important;
  font-weight: 500 !important;
  margin: 0 !important;
  cursor: pointer;
}
.lead-consent a { color: var(--laranja); text-decoration: underline; }

.lead-submit {
  width: 100%;
  padding: 16px;
  margin-top: 22px;
  background: var(--chumbo); color: white;
  font-weight: 700; font-size: 15px;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .3s var(--ease);
}
.lead-submit:hover {
  background: var(--laranja);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pri);
}
.lead-submit:disabled { opacity: .6; cursor: wait; }

.lead-trust {
  margin-top: 16px;
  font-size: 11.5px;
  color: #8a8e95;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}

/* SUCCESS STATE */
.lead-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.lead-success.show { display: block; animation: modalPop .5s var(--ease); }
.lead-success-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #10b981);
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 12px 24px rgba(34,197,94,.3);
}
.lead-success h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 400;
}
.lead-success p {
  color: #5a5e66;
  font-size: 14.5px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.lead-success-dl {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--laranja);
  color: white !important;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: var(--shadow-pri);
  transition: all .3s;
  font-size: 14.5px;
}
.lead-success-dl:hover { background: var(--laranja-dk); transform: translateY(-2px); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ============ PAGE HEADER (páginas internas) ============ */
.page-head {
  padding: 180px 0 80px;
  background: var(--chumbo);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; top: 40%; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--laranja), transparent 70%);
  opacity: .3;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  letter-spacing: -.03em;
  max-width: 900px;
  position: relative; z-index: 1;
}
.page-head h1 .ital { font-style: italic; color: var(--laranja); }
.page-head .crumb {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
  position: relative; z-index: 1;
}

/* ============ FAIXA DE BENEFÍCIOS ============ */
.benef-faixa {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
}
.benef-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.benef-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  color: #5a5e66;
  transition: color .3s;
}
.benef-item:hover { color: var(--laranja); }
.benef-item svg { width: 44px; height: 44px; margin-bottom: 12px; stroke-width: 2.5; }
.benef-item span {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; }
  .pilares-grid { grid-template-columns: repeat(2, 1fr); }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-card { grid-template-columns: 1fr; padding: 50px 32px; gap: 32px; }
  .cta-card::after { font-size: 110px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cromatico-row { grid-template-columns: repeat(3, 1fr); }
  .benef-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 80px 0; }
  .wrap, .wrap-sm, .wrap-wide { padding: 0 18px; }
  .nav-menu { display: none; position: fixed; top: 70px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch; background: white;
    padding: 16px; border-radius: 18px; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .nav-burger { display: flex; flex-direction: column; justify-content: center; }
  .pilares-grid { grid-template-columns: 1fr; }
  .produtos-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .cromatico-row { grid-template-columns: repeat(2, 1fr); }
  .benef-grid { grid-template-columns: repeat(2, 1fr); }
  .ticker-item { font-size: 20px; gap: 32px; }

  /* CTA amostra ajuste mobile */
  .cta-sec { padding: 60px 0; }
  .cta-card {
    padding: 36px 22px;
    border-radius: 20px;
    gap: 24px;
  }
  .cta-card h2 { font-size: 28px; margin-bottom: 14px; }
  .cta-card p { font-size: 15px; margin-bottom: 20px; }
  .cta-card::before { width: 240px; height: 240px; right: -80px; top: -80px; }
  .cta-card::after { font-size: 72px; left: auto; right: 8px; bottom: -12px; }
  .cta-content { min-width: 0; }
  .cta-form { padding: 20px; }
  .form-row input, .form-row select { padding: 12px 14px; font-size: 15px; min-width: 0; width: 100%; }
  .form-row .btn { width: 100%; padding: 14px; }

  .page-head { padding: 140px 0 60px; }
}
