/* ============================================================
   BONNKE PROFISSIONAL — site.css
   Padrões de página: header, hero, seções da Home, footer.
============================================================ */

/* ============================================================
   HEADER / NAV
============================================================ */
.brand-logo { height: 26px; width: auto; }
@media (min-width: 768px) { .brand-logo { height: 30px; } }

.nav-burger {
  display: none; flex-direction: column; gap: 5px; width: 26px; padding: 8px 0;
  background: none; border: none;
}
.nav-burger span { height: 2px; width: 100%; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) { .nav-burger { display: flex; } }

.nav-mobile {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 95;
  background: #fff; transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: transform .3s var(--ease-expo), opacity .25s ease;
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile-inner { padding: 28px 24px 40px; display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  padding: 16px 4px; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.15rem;
  border-bottom: 1px solid var(--border); color: var(--ink);
}
.nav-mobile .btn { margin-top: 20px; }

/* ============================================================
   HERO
============================================================ */
.home-hero {
  position: relative; overflow: hidden; padding-top: 68px;
  min-height: 92vh; display: flex; align-items: center;
}
.home-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.home-hero-grid { position: absolute; inset: 0; z-index: 1; }
.home-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,13,0.62) 0%, rgba(13,13,13,0.72) 45%, rgba(13,13,13,0.92) 100%);
}
/* .home-hero-inner também leva a classe .ds-container (padding 0 24px).
   Como .home-hero é flex, um item sem largura própria "encolhe" para o
   conteúdo e fica centralizado pelo margin:auto do .ds-container, saindo
   do mesmo eixo esquerdo do logo/trust-bar. width:100% + padding só no
   eixo vertical (sem tocar left/right) resolve, mantendo os 24px do
   .ds-container intactos. */
.home-hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 64px; padding-bottom: 56px; }
.home-hero-copy { max-width: 900px; }
.home-hero-title { color: #fff; margin-top: 24px; text-wrap: balance; }
.home-hero-title em { font-style: normal; color: var(--orange-light); }
.home-hero-lead { color: rgba(255,255,255,0.86); margin-top: 24px; max-width: 620px; }
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.home-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 640px;
}
.home-hero-stat-value {
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.9rem; color: var(--orange-light);
}
.home-hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 4px; line-height: 1.4; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: -64px; position: relative; z-index: 3;
}
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.trust-item {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 28px 18px; text-align: center; border: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s ease, border-color 0.35s ease;
}
.trust-item:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--orange-pale);
}
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-pale); color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-expo);
}
.trust-item:hover .trust-icon { background: var(--orange); color: #fff; transform: scale(1.08) rotate(-4deg); }
.trust-icon svg { width: 26px; height: 26px; }
.trust-item .heading-sm { font-size: 0.92rem; line-height: 1.35; }

/* ============================================================
   SOBRE A BONNKE
============================================================ */
/* Vídeo isolado e vertical na coluna esquerda (~30% da seção); título +
   texto ocupam a coluna direita (~70%) em largura cheia. A foto da fachada
   não fica mais espremida ao lado do título (ficava minúscula e cortada);
   agora é um badge de localização sobreposto na base do vídeo, um padrão
   comum em seções institucionais para dar contexto sem competir com a
   headline. */
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start; margin-top: 64px; }
@media (min-width: 992px) { .sobre-grid { grid-template-columns: 3fr 7fr; } }

.sobre-media { display: flex; justify-content: center; padding-bottom: 28px; }
.sobre-media-frame { position: relative; width: 100%; max-width: 320px; margin: 0 auto; }
.sobre-video-frame {
  position: relative; width: 100%;
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 9 / 16; background: var(--ink);
}
.sobre-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.sobre-location-badge {
  position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: 272px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); padding: 8px 16px 8px 8px;
}
.sobre-location-badge img {
  width: 46px; height: 46px; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0;
}
.sobre-location-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.sobre-location-eyebrow { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); font-weight: 700; }
.sobre-location-city { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.94rem; color: var(--ink); }

.sobre-copy h2 { max-width: 22ch; }
.sobre-highlights { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.sobre-highlight { display: flex; align-items: flex-start; gap: 16px; }
.sobre-highlight-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--orange-pale); color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
}
.sobre-highlight-icon svg { width: 22px; height: 22px; }

/* ============================================================
   SOLUÇÕES COMPLETAS (3 cards com foto)
   Referência de acabamento: instagram-slides (índice mono, grid
   pontilhado sutil e glow "flashlight" que segue o cursor).
============================================================ */
.solucoes-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 44px; }
@media (min-width: 860px) { .solucoes-grid { grid-template-columns: repeat(3, 1fr); } }
.solucao-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.10);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-expo);
}
.solucao-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,0,0,0.55); border-color: rgba(255,122,51,0.35); }
.solucao-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s var(--ease-expo); }
.solucao-card:hover img { transform: scale(1.08); }
.solucao-card img[data-face="1"] { object-position: center 12%; }
.solucao-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.12) 0%, rgba(13,13,13,0.32) 46%, rgba(13,13,13,0.94) 100%);
}
/* Textura pontilhada sutil (padrão instagram-slides) para dar profundidade
   técnica sem competir com a foto. */
.solucao-card-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.16) 1px, transparent 0);
  background-size: 22px 22px;
  mix-blend-mode: overlay; opacity: 0.5;
}
/* Glow que segue o cursor (--mx/--my via site.js), reforça o efeito
   "flashlight" do card em destaque do instagram-slides. */
.solucao-card-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx,50%) var(--my,50%), rgba(255,122,51,0.55), transparent 62%);
  mix-blend-mode: screen; transition: opacity 0.45s ease;
}
.solucao-card:hover .solucao-card-glow { opacity: 1; }
.solucao-card-head {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 0;
}
.solucao-card-index {
  font-family: ui-monospace, "SF Mono", "Space Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.solucao-card-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-expo);
}
.solucao-card:hover .solucao-card-icon { background: var(--orange); border-color: var(--orange); transform: rotate(-6deg) scale(1.05); }
.solucao-card-icon svg { width: 21px; height: 21px; }
.solucao-card-body { position: relative; z-index: 2; padding: 24px 28px 28px; color: #fff; width: 100%; }
.solucao-card-body .heading-md { color: #fff; letter-spacing: -0.01em; }
.solucao-card-body p.body-sm { color: rgba(255,255,255,0.82); max-width: 34ch; margin-top: 8px; }

/* ============================================================
   ESTOQUE (galeria fixa de 6 + nav de categorias)
============================================================ */
/* Nav de categorias no lugar do antigo toggle Seminovos/Novos: organiza a
   leitura da seção por tipo de equipamento (como "All Items / Menswear /
   Womenswear" do padrão marketplace-light), não por estado do produto. */
.produtos-categorias { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.produtos-categoria {
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: var(--text-muted); padding-bottom: 6px; border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.produtos-categoria:hover { color: var(--ink); }
.produtos-categoria.is-active { color: var(--ink); border-bottom-color: var(--orange); }

/* Grade fixa: sempre 6 cards em 2 linhas completas (2+1+1 colunas cada),
   igual ao padrão de referência. Nunca sobra célula vazia porque o número
   de cards é fixo, não dinâmico. */
.produtos-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px;
}
@media (min-width: 768px) {
  .produtos-grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 340px 280px; gap: 20px; }
}

.produto-card {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(13,13,13,0.06);
  background: var(--steel-50);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-expo);
}
.produto-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

/* Papéis fixos dos 6 cards (mobile-first: linha 1 = hero cheio + 2 metades,
   linha 2 = banner cheio + 2 metades; no desktop os 6 preenchem as 2 linhas
   de 4 colunas sem sobra). */
.produto-card-hero, .produto-card-banner { grid-column: span 2; aspect-ratio: 16 / 10; }
.produto-card-tall, .produto-card-sm { grid-column: span 1; aspect-ratio: 1 / 1; }
@media (min-width: 768px) {
  .produto-card-hero, .produto-card-tall { grid-row: 1; aspect-ratio: auto; }
  .produto-card-banner, .produto-card-sm { grid-row: 2; aspect-ratio: auto; }
}

.produto-card img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-expo); }
.produto-card:hover img { transform: scale(1.06); }
/* Legibilidade: nossas fotos de produto (geladeiras/vitrines brancas) são
   muito mais claras que fotografia de moda, então a faixa escura precisa
   começar bem antes do rodapé (não só nos últimos pixels) pra garantir
   contraste do texto em qualquer imagem, clara ou escura. */
/* Overlay em duas camadas: gradiente preto de baixo pra cima garante
   contraste pro texto (legibilidade não pode depender de cor); um glow
   laranja subindo do canto onde o texto ancora dá a "voz" de marca por
   cima do preto, sem competir com o contraste. */
.produto-card::before {
  /* z-index acima da <img> (z-index:0): sem isso, a foto (mais nova no DOM
     que o ::before) pinta por cima do overlay e o preto/laranja some. */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,9,8,0) 0%, rgba(10,9,8,0.02) 30%, rgba(10,9,8,0.52) 66%, rgba(10,9,8,0.9) 100%),
    radial-gradient(130% 95% at 4% 100%, rgba(255,85,0,0.68) 0%, rgba(255,85,0,0.3) 34%, rgba(255,85,0,0) 64%);
  mix-blend-mode: normal;
  transition: background 0.35s ease;
}
.produto-card:hover::before {
  background:
    linear-gradient(180deg, rgba(10,9,8,0.08) 0%, rgba(10,9,8,0.12) 30%, rgba(10,9,8,0.62) 66%, rgba(10,9,8,0.94) 100%),
    radial-gradient(130% 95% at 4% 100%, rgba(255,85,0,0.78) 0%, rgba(255,85,0,0.36) 34%, rgba(255,85,0,0) 64%);
}
/* Banner (2 colunas, mais baixo): texto ancorado à esquerda, então o
   gradiente vem da esquerda pra direita, não de baixo pra cima. */
@media (min-width: 768px) {
  .produto-card-banner::before {
    background:
      linear-gradient(90deg, rgba(10,9,8,0.82) 0%, rgba(10,9,8,0.48) 40%, rgba(10,9,8,0.04) 72%, rgba(10,9,8,0) 100%),
      radial-gradient(95% 140% at -4% 50%, rgba(255,85,0,0.62) 0%, rgba(255,85,0,0.22) 42%, rgba(255,85,0,0) 66%);
  }
  .produto-card-banner:hover::before {
    background:
      linear-gradient(90deg, rgba(10,9,8,0.88) 0%, rgba(10,9,8,0.56) 40%, rgba(10,9,8,0.08) 72%, rgba(10,9,8,0) 100%),
      radial-gradient(95% 140% at -4% 50%, rgba(255,85,0,0.72) 0%, rgba(255,85,0,0.28) 42%, rgba(255,85,0,0) 66%);
  }
  .produto-card-banner .produto-card-body {
    left: 0; right: auto; bottom: 0; top: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 58%; padding: 0 24px 0 32px;
  }
}
.produto-tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.produto-arrow {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; color: #fff;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s var(--ease-expo);
}
.produto-arrow svg { width: 17px; height: 17px; }
.produto-card:hover .produto-arrow { background: var(--orange); border-color: var(--orange); transform: rotate(45deg); }
.produto-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 18px; color: #fff; }
.produto-card-caption {
  color: rgba(255,255,255,0.82); font-weight: 700; letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.produto-card-body .heading-sm, .produto-card-body .heading-lg {
  color: #fff; letter-spacing: -0.01em; text-shadow: 0 2px 14px rgba(0,0,0,0.3);
}
.produto-link {
  display: none; align-items: center; gap: 6px; margin-top: 10px;
  color: #fff; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.produto-card-hero .produto-link, .produto-card-banner .produto-link { display: inline-flex; }
.produto-link svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.produto-card:hover .produto-link svg { transform: translateX(3px); }
@media (max-width: 767px) { .produto-card-body .heading-lg { font-size: 1.35rem; } }

/* ============================================================
   FAQ
============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) { .faq-layout { grid-template-columns: 0.8fr 1.2fr; gap: 56px; } }
.faq-intro { max-width: 420px; }
@media (min-width: 992px) { .faq-intro { position: sticky; top: 110px; align-self: start; } }

/* Ícone-selo no topo do bloco: ancora a leitura antes do eyebrow, mesma
   lógica visual dos ícones circulares do trust bar e dos cards de solução,
   pra a coluna de texto não parecer só texto empilhado. */
.faq-intro-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: rgba(255,122,51,0.1); color: var(--orange-dark);
}
.faq-intro-icon svg { width: 24px; height: 24px; }

/* Bloco de destaques: substitui o vácuo entre o parágrafo e o botão por
   2 informações objetivas (garantia + atendimento), com ícone + título +
   descrição curta, mesma gramática visual dos cards da página. */
.faq-highlights {
  display: flex; flex-direction: column; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.faq-highlight { display: flex; align-items: flex-start; gap: 14px; }
.faq-highlight-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--steel-50); color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
}
.faq-highlight-icon svg { width: 18px; height: 18px; }
.faq-highlight-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--ink); }
.faq-highlight-text { font-size: 0.85rem; line-height: 1.45; color: var(--text-muted); margin-top: 3px; }

/* CTA: botão principal + telefone como alternativa direta, lado a lado
   (o botão sozinho ficava "solto" no fim do bloco). */
.faq-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.faq-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--ink);
  transition: color 0.25s ease;
}
.faq-cta-phone svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.faq-cta-phone:hover { color: var(--orange-dark); }

.faq-wrap { display: flex; flex-direction: column; gap: 14px; }
.faq-wrap .accordion-item {
  border: 1px solid var(--border); border-bottom: 1px solid var(--border);
  border-radius: var(--radius-lg); background: #fff; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-wrap .accordion-item:hover { border-color: var(--steel-200); box-shadow: var(--shadow-sm); }
.faq-wrap .accordion-item.open { border-color: var(--orange); box-shadow: var(--shadow-md); }
.faq-wrap .accordion-trigger {
  display: flex; align-items: center; gap: 16px; padding: 20px 20px;
  width: 100%; background: none; border: none; text-align: left;
}
.accordion-num {
  font-family: 'JetBrains Mono', monospace; font-size: 0.78rem; font-weight: 600;
  color: var(--steel-300); flex-shrink: 0; letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.faq-wrap .accordion-item.open .accordion-num { color: var(--orange); }
.accordion-question {
  flex: 1; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink);
}
.faq-wrap .accordion-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--steel-50); color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s var(--ease-expo);
}
.faq-wrap .accordion-icon svg { width: 15px; height: 15px; }
.faq-wrap .accordion-item.open .accordion-icon { background: var(--orange); color: #fff; transform: rotate(135deg); }
.faq-wrap .accordion-item.open .accordion-trigger { background: none; border-radius: 0; }
.faq-wrap .accordion-panel-inner { padding: 0 20px 22px 52px; }

/* ============================================================
   SHOWROOM / PROFUNDIDADE (slider de fotos entre estoque/FAQ e time)
============================================================ */
.showroom-depth { position: relative; overflow: hidden; background: var(--ink); padding: 88px 0 64px; }
.showroom-depth-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.showroom-depth-glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.showroom-depth-glow-1 { width: 420px; height: 420px; background: rgba(255,85,0,0.22); top: -140px; left: -100px; }
.showroom-depth-glow-2 { width: 380px; height: 380px; background: rgba(255,122,51,0.14); bottom: -160px; right: -80px; }
.showroom-depth-glow-3 { width: 380px; height: 380px; background: rgba(255,85,0,0.18); top: -120px; right: -90px; }
.showroom-depth-glow-4 { width: 340px; height: 340px; background: rgba(255,122,51,0.14); bottom: -140px; left: -90px; }

/* Kit de profundidade reaproveitado em .section-dark (Contato): mesmo --ink,
   mesma textura .bg-grid-dark, mesmos glows laranja do Showroom (variante
   3/4 para não repetir o mesmo enquadramento). O conteúdo real da seção
   precisa ficar acima da camada decorativa. */
#contato .ds-container { position: relative; z-index: 1; }

.showroom-depth-head { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.showroom-depth-head h2 { color: #fff; }
.showroom-depth-head p { color: rgba(255,255,255,0.62); }
.showroom-depth-nav { display: flex; gap: 10px; }
.showroom-nav-btn {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.06); flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.16); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.showroom-nav-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.showroom-nav-btn svg { width: 18px; height: 18px; }
.showroom-nav-btn:disabled { opacity: .35; cursor: default; }
.showroom-nav-btn:disabled:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); transform: none; }

.showroom-slider {
  position: relative; z-index: 1; display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 4px 24px 14px; scroll-behavior: smooth;
  -ms-overflow-style: none; scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 3%, black 97%, transparent);
}
.showroom-slider::-webkit-scrollbar { display: none; }
@media (min-width: 1328px) { .showroom-slider { padding-left: calc(50vw - 640px + 24px); padding-right: calc(50vw - 640px + 24px); } }
.showroom-slide {
  position: relative; flex-shrink: 0; width: 78vw; max-width: 320px; aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl); overflow: hidden; scroll-snap-align: center;
  border: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-xl);
}
@media (min-width: 640px) { .showroom-slide { width: 300px; } }
.showroom-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-expo); }
.showroom-slide:hover img { transform: scale(1.06); }
.showroom-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0) 55%, rgba(13,13,13,0.85) 100%); }
.showroom-slide-caption { position: absolute; left: 16px; bottom: 16px; z-index: 1; color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.92rem; }

.showroom-dots { position: relative; z-index: 1; display: flex; gap: 8px; justify-content: center; margin-top: 8px; }
.showroom-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.22); transition: background .3s ease, transform .3s ease; cursor: pointer; border: none; padding: 0; }
.showroom-dot.is-active { background: var(--orange); transform: scale(1.35); }

/* ============================================================
   TIME (fundo claro — cards de foto seguram o contraste sozinhos)
============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4;
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease-expo), box-shadow .35s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-expo); }
.team-card:hover img { transform: scale(1.05); }
.team-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0) 45%, rgba(13,13,13,0.92) 100%);
}
.team-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px; }
.team-card-body .name { display: block; font-weight: 700; color: #fff; font-size: 0.95rem; }
.team-card-body .role { color: var(--orange-light); font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }

/* ============================================================
   CONTATO (fundo escuro)
============================================================ */
.contato-grid { display: grid; grid-template-columns: 1fr; gap: 44px; margin-top: 40px; }
@media (min-width: 992px) { .contato-grid { grid-template-columns: 0.85fr 1.15fr; } }
.contato-info-item { display: flex; align-items: flex-start; gap: 14px; margin-top: 20px; }
.contato-info-item svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.contato-info-item span, .contato-info-item a { color: rgba(255,255,255,0.85); transition: color .2s ease; }
.contato-info-item a:hover { color: var(--orange-light); }

/* Substitui o formulário inline: mapa + CTA único pro drawer de lead
   (kestriah-lead-form). Contato não tem 2 caminhos de captura na mesma
   página, só 1 — consistente com o resto do site. */
.contato-visit { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); }
.contato-visit-map { position: relative; width: 100%; aspect-ratio: 16 / 11; background: var(--ink-2); }
.contato-visit-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: invert(92%) hue-rotate(180deg) brightness(0.94) contrast(1.05) saturate(1.1);
}
.contato-visit-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; }
.contato-visit-title { color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 1.05rem; }
.contato-visit-text { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-top: 3px; }
.contato-visit-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contato-visit-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-weight: 700; font-size: 0.88rem; white-space: nowrap; transition: color .2s ease; }
.contato-visit-link svg { width: 15px; height: 15px; }
.contato-visit-link:hover { color: var(--orange-light); }
@media (max-width: 560px) { .contato-visit-cta { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   FOOTER
============================================================ */
.social-strip { background: var(--orange); padding: 22px 0; }
.social-strip .ds-container { display: flex; align-items: center; justify-content: center; gap: 28px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-3px); }

.site-footer { background: var(--ink); color: rgba(255,255,255,0.62); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h4 { color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.62); font-size: 0.9rem; padding: 5px 0; transition: color .2s ease; }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45);
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28); transition: transform .25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }

/* ============================================================
   PÁGINAS INSTITUCIONAIS (padrão reaproveitável)
   Componentes genéricos usados em Quem Somos e nas próximas páginas
   internas, seguindo o mesmo sistema de fundo/tipografia da Home:
   .page-hero (abertura escura compacta, breadcrumb) e .split-grid
   (bloco foto + texto alternável) evitam recriar layout a cada página.
============================================================ */
.page-hero {
  position: relative; overflow: hidden; background: var(--ink);
  min-height: 380px; display: flex; align-items: center;
  padding: 118px 0 52px;
}
.page-hero .ds-container { position: relative; z-index: 2; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-current { color: #fff; font-weight: 700; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* --- Página de produto: linha "Voltar" + breadcrumb --- */
.produto-breadcrumb-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.produto-back {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--ink);
  padding: 8px 16px 8px 12px; border-radius: var(--radius-full); border: 1px solid var(--border);
  background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.produto-back svg { color: var(--orange-dark); transition: transform 0.2s ease; flex-shrink: 0; }
.produto-back:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.produto-back:hover svg { transform: translateX(-2px); }
@media (max-width: 640px) {
  /* No mobile o breadcrumb completo (Home / Estoque / Categoria / Nome)
     costuma quebrar ou truncar; o botão "Voltar" já cobre a navegação. */
  .produto-breadcrumb-row .breadcrumb { display: none; }
}
.page-hero-title { color: #fff; margin-top: 20px; max-width: 30ch; }
.page-hero-lead { color: rgba(255,255,255,0.7); margin-top: 18px; max-width: 56ch; }

/* Bloco foto + texto alternável (usado em "O Que Nos Move" / "Parceria de
   verdade" etc.). Modificador --reverse troca o lado da foto sem duplicar
   CSS, mantendo o mesmo componente em qualquer página institucional. */
.split-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 992px) {
  .split-grid { grid-template-columns: 1fr 1.15fr; gap: 64px; }
  .split-grid--reverse .split-grid-media { order: 2; }
  .split-grid--reverse .split-grid-copy { order: 1; }
}
.split-grid-media { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-grid-media img { width: 100%; height: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.split-grid-copy h2 { max-width: 20ch; }

.stat-row { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 36px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); justify-content: start; }
.stat-number { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2.35rem; color: var(--ink); line-height: 1; }
.stat-row .caption { margin-top: 6px; display: block; }

/* Cards com ícone circular (reaproveita .trust-icon) para blocos de
   estrutura/diferenciais dentro de section-surface + .bg-grid. */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .feature-grid.feature-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.feature-card { padding: 36px 32px; }
.feature-card .trust-icon { margin-bottom: 20px; }
.feature-card h3 { margin-bottom: 10px; }

/* Página /contato/: mapa grande + card único (CTA pro drawer, sem 2º
   caminho de captura na mesma página) em fundo claro — variação de
   .contato-grid (fundo escuro, usado só no bloco final da Home). */
.contato-page-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
@media (min-width: 992px) { .contato-page-grid { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; } }
.contato-page-map {
  position: relative; width: 100%; min-height: 320px; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--steel-50);
}
@media (min-width: 992px) { .contato-page-map { min-height: 460px; } }
.contato-page-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contato-page-card {
  border-radius: var(--radius-xl); border: 1px solid var(--border); background: #fff;
  box-shadow: var(--shadow-md); padding: 40px 36px; display: flex; flex-direction: column;
  justify-content: center; gap: 8px;
}
.contato-page-card .eyebrow { margin-bottom: 4px; }
.contato-page-card-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.contato-page-card-actions .btn { width: 100%; justify-content: center; }

/* Lista editorial numerada (01/02/03), usada em Quem Somos para os
   diferenciais de atendimento/equipamento/entrega. Número grande e sutil
   no fundo do card, ícone circular por cima, mesmo padrão do trust-icon. */
.numbered-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 8px; }
@media (min-width: 860px) { .numbered-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.numbered-item {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 32px 28px 30px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s ease, border-color 0.35s ease;
}
.numbered-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-pale); }
.numbered-index {
  position: absolute; top: 6px; right: 22px; z-index: 0;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 3.6rem;
  color: var(--border); line-height: 1; user-select: none;
}
.numbered-item .trust-icon, .numbered-item h3, .numbered-item p { position: relative; z-index: 1; }

/* Variante escura (dentro de .section-dark + .bg-grid-orange): cards
   "flutuam" no preto, como na Soluções Completas da Home. */
.section-dark .numbered-item {
  background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
.section-dark .numbered-item:hover { border-color: rgba(255,122,51,0.45); background: rgba(255,255,255,0.07); }
.section-dark .numbered-index { color: rgba(255,255,255,0.08); }
.section-dark .numbered-item h3 { color: #fff; }
.section-dark .numbered-item p { color: rgba(255,255,255,0.68) !important; }
.section-dark .numbered-item .trust-icon { background: rgba(255,85,0,0.16); color: var(--orange-light); }
.section-dark .numbered-item:hover .trust-icon { background: var(--orange); color: #fff; }

/* Bloco "O Que Nos Move": estatística com régua lateral + parágrafo,
   sem foto (segue o conteúdo real da página institucional). */
.move-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border);
}
@media (min-width: 860px) { .move-grid { grid-template-columns: 0.85fr 1.6fr; gap: 56px; } }
.move-grid--stacked, .move-grid--stacked.move-grid { grid-template-columns: 1fr !important; gap: 24px; }
.move-stat { border-left: 3px solid var(--orange); padding-left: 22px; }
.stat-number-lg { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2.6rem; color: var(--ink); line-height: 1; margin-top: 8px; }

/* Faixa de logos de clientes (grayscale -> cor no hover). */
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.brand-strip img {
  height: 38px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.brand-strip img:hover { filter: grayscale(0); opacity: 1; }

/* Carrossel infinito de logos de clientes: duas trilhas idênticas lado a
   lado, translateX(-50%) em loop. Mascara nas bordas esconde o corte. */
.brand-marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.brand-marquee-track { display: flex; width: max-content; animation: brand-marquee-scroll 26s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee-group { display: flex; align-items: center; flex-shrink: 0; gap: 64px; padding-right: 64px; }
.brand-marquee-group img {
  height: 58px; width: auto; object-fit: contain; flex-shrink: 0;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.brand-marquee-group img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.06); }
@keyframes brand-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .brand-marquee-group img { height: 44px; } .brand-marquee-group { gap: 44px; padding-right: 44px; } }
@media (prefers-reduced-motion: reduce) { .brand-marquee-track { animation: none; } }

/* ============================================================
   ESTOQUE — LISTAGEM COMPLETA (/estoque-de-equipamentos/)
   Fidelidade ao padrão marketplace-light: aside de navegação fixo à
   esquerda no desktop (categorias + condição + CTA, mesmo papel da
   sidebar "Marketplace" da referência), virando tabs sublinhadas +
   pills empilhadas no mobile/tablet — sem grade nova no conteúdo: o
   grid assimétrico 2+1+1/2+1+1 é o mesmo .produtos-grid da Home,
   repetido a cada lote de 6 produtos.
============================================================ */
.estoque-layout { display: block; }
@media (min-width: 1024px) {
  .estoque-layout { display: grid; grid-template-columns: 236px 1fr; gap: 40px; align-items: start; }
}

/* --- Sidebar (desktop) --- */
.estoque-sidebar { display: none; }
@media (min-width: 1024px) { .estoque-sidebar { display: block; position: sticky; top: 104px; } }
.estoque-sidebar-inner {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 26px 20px; box-shadow: var(--shadow-sm);
}
.estoque-sidebar-title {
  display: flex; align-items: center; gap: 8px; font-family: 'Manrope', sans-serif; font-weight: 700;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 12px;
}
.estoque-sidebar-title svg { width: 14px; height: 14px; color: var(--orange-dark); flex-shrink: 0; }
.estoque-sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.estoque-sidebar-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-md); font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 0.86rem; color: var(--text-muted); transition: background 0.2s ease, color 0.2s ease;
}
.estoque-sidebar-link:hover { background: rgba(13,13,13,0.045); color: var(--ink); }
.estoque-sidebar-link.is-active { background: var(--ink); color: #fff; }
.estoque-sidebar-count { font-size: 0.75rem; font-weight: 600; opacity: 0.5; }
.estoque-sidebar-link.is-active .estoque-sidebar-count { opacity: 0.65; }
.estoque-sidebar-divider { height: 1px; background: var(--border); margin: 20px 0; }
.estoque-sidebar-cta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.estoque-sidebar-cta a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.84rem; color: var(--ink);
}
.estoque-sidebar-cta a svg { width: 15px; height: 15px; color: var(--orange-dark); transition: transform 0.25s ease; }
.estoque-sidebar-cta a:hover svg { transform: translateX(3px); }

/* --- Tabs (mobile/tablet <1024px), mesma fonte de dados da sidebar --- */
.estoque-toolbar-mobile {
  display: flex; flex-direction: column; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .estoque-toolbar-mobile { display: none; } }
.estoque-tabs {
  flex: 1 1 auto; flex-wrap: nowrap; overflow-x: auto; min-width: 0; gap: 24px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.estoque-tabs::-webkit-scrollbar { display: none; }
.estoque-tabs .produtos-categoria { white-space: nowrap; flex-shrink: 0; }
.estoque-tab-count { opacity: 0.5; font-weight: 500; font-size: 0.78em; margin-left: 3px; }
.estoque-condicao-group {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px; align-self: flex-start;
  background: rgba(13,13,13,0.05); border-radius: var(--radius-full);
}
.estoque-condicao-btn {
  font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 0.78rem; white-space: nowrap;
  color: var(--text-muted); padding: 7px 15px; border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.estoque-condicao-btn:hover { color: var(--ink); }
.estoque-condicao-btn.is-active { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }

/* --- Cabeçalho do conteúdo principal (contagem + busca), sempre visível --- */
.estoque-main { min-width: 0; }
.estoque-main-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 22px; }
@media (min-width: 1024px) { .estoque-main-header { padding-top: 4px; } }

.estoque-search-pill {
  position: relative; display: flex; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 0 14px; height: 38px; transition: border-color 0.2s ease; flex-shrink: 0;
}
.estoque-search-pill:focus-within { border-color: var(--orange); }
.estoque-search-pill svg { width: 15px; height: 15px; color: var(--text-light); flex-shrink: 0; }
.estoque-search-pill input {
  border: none; background: transparent; font-family: 'Manrope', sans-serif; font-size: 0.82rem;
  color: var(--ink); padding: 0 0 0 8px; width: 128px;
}
.estoque-search-pill input:focus { outline: none; }
@media (min-width: 640px) { .estoque-search-pill input { width: 168px; } }

.estoque-result-count { color: var(--text-light); font-size: 0.8rem; }
.estoque-result-count strong { color: var(--text-muted); font-weight: 700; }

.estoque-empty {
  text-align: center; padding: 80px 24px; border: 1px dashed var(--border); border-radius: var(--radius-xl);
  margin-top: 24px; background: var(--bg-surface);
}
.estoque-empty p { color: var(--text-muted); margin-top: 10px; }

.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination-item {
  display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 4px;
  border-radius: var(--radius-md); font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.88rem;
  color: var(--text-muted); border: 1px solid var(--border); transition: all 0.2s ease;
}
.pagination-item:hover { color: var(--ink); border-color: var(--steel-300); }
.pagination-item.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination-item.is-disabled { opacity: 0.35; pointer-events: none; }
.pagination-item svg { width: 16px; height: 16px; }

/* ============================================================
   ESTOQUE — PÁGINA DE PRODUTO (/estoque/{slug}/)
============================================================ */
.produto-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 960px) { .produto-layout { grid-template-columns: 1.15fr 0.85fr; gap: 64px; } }

.produto-gallery-main {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; background: var(--steel-50);
  aspect-ratio: 4 / 3; border: 1px solid var(--border);
}
.produto-gallery-main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: revealUp 0.5s var(--ease-expo);
}
.produto-gallery-main .tag { position: absolute; top: 16px; left: 16px; z-index: 2; }
.produto-gallery-count {
  position: absolute; bottom: 14px; right: 14px; z-index: 2; background: rgba(13,13,13,0.65); color: #fff;
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; padding: 5px 11px; border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}
.produto-gallery-thumbs {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 10px; margin-top: 14px;
}
.produto-gallery-thumb {
  aspect-ratio: 1 / 1; border-radius: var(--radius-md); overflow: hidden; border: 2px solid transparent;
  cursor: pointer; background: var(--steel-50); transition: border-color 0.2s ease, opacity 0.2s ease;
  padding: 0;
}
.produto-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.produto-gallery-thumb:hover { opacity: 0.85; }
.produto-gallery-thumb.is-active { border-color: var(--orange); }

.produto-info-panel { display: flex; flex-direction: column; }
.produto-meta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.produto-sku { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.03em; }
.produto-info-panel .display-lg { margin-top: 14px; }
.produto-info-panel .produto-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.produto-trust-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.produto-trust-item { display: flex; align-items: flex-start; gap: 12px; }
.produto-trust-item svg { width: 19px; height: 19px; color: var(--orange-dark); flex-shrink: 0; margin-top: 2px; }
.produto-trust-item span { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; }

.produto-descricao-box {
  background: var(--bg-surface); border-radius: var(--radius-lg); padding: 24px 26px; margin-top: 32px;
}
.produto-descricao-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.similares-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
@media (min-width: 640px) { .similares-grid { grid-template-columns: repeat(3, 1fr); } }
.produto-card-similar { aspect-ratio: 4 / 5; }

.produto-not-found { text-align: center; padding: 100px 24px; }
.produto-not-found p { color: var(--text-muted); margin-top: 12px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.produto-not-found .btn { margin-top: 28px; }

/* ============================================================
   PÁGINA /links/ (link-in-bio: mesmo bg escuro + grid + scrim do
   .home-hero, só que a página inteira é o "hero", sem navbar/footer
   do site — é a página que recebe tráfego direto do bio do Instagram).
============================================================ */
.links-page {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 20px;
}
.links-page-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.links-page-grid { position: absolute; inset: 0; z-index: 1; }
.links-page-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.78) 40%, rgba(13,13,13,0.92) 100%);
}
.links-page-inner { position: relative; z-index: 2; width: 100%; max-width: 440px; }
.links-page-logo { display: block; height: 42px; width: auto; margin: 0 auto; }
.links-page-lead {
  text-align: center; color: rgba(255,255,255,0.72); margin-top: 18px;
}
.links-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }
.links-btn {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: rgba(255,255,255,0.97); border-radius: var(--radius-full);
  padding: 15px 22px; box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.links-btn:hover {
  transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-xl);
  border-color: var(--orange); background: #fff;
}
.links-btn-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-pale); color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-expo);
}
.links-btn:hover .links-btn-icon { background: var(--orange); color: #fff; transform: rotate(-6deg) scale(1.06); }
.links-btn-icon svg { width: 19px; height: 19px; }
.links-btn-label {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 0.94rem; color: var(--ink);
  line-height: 1.3;
}
.links-btn-arrow {
  margin-left: auto; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--steel-300); transition: color 0.3s ease, transform 0.3s var(--ease-expo);
}
.links-btn:hover .links-btn-arrow { color: var(--orange); transform: translateX(3px); }
.links-btn-arrow svg { width: 15px; height: 15px; }
/* Primeiro link (WhatsApp / Time Comercial) é a ação principal da página:
   mesmo tamanho dos demais (preserva a hierarquia igual do site original),
   só com o ícone já laranja de saída pra guiar o primeiro olhar. */
.links-btn.is-primary .links-btn-icon { background: var(--orange); color: #fff; }
.links-page-footer {
  text-align: center; margin-top: 40px; color: rgba(255,255,255,0.4);
}

/* ============================================================
   PÁGINAS LEGAIS (Política de Privacidade) — artigo numerado
   centrado, reaproveitando .page-hero para a abertura.
============================================================ */
.legal-article { max-width: 720px; margin: 0 auto; }
.legal-updated { display: block; margin-top: 8px; }
.legal-section { padding: 34px 0; border-top: 1px solid var(--border); }
.legal-section:first-child { padding-top: 0; border-top: none; }
.legal-section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.legal-section-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.95rem;
  color: var(--orange); flex-shrink: 0; letter-spacing: 0.02em;
}
.legal-section h2 { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.01em; color: var(--ink); }
.legal-section p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; }
.legal-section p + p { margin-top: 14px; }
.legal-section ul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; padding-left: 0; }
.legal-section ul li {
  list-style: none; position: relative; padding-left: 22px;
  color: var(--text-muted); font-size: 0.96rem; line-height: 1.65;
}
.legal-section ul li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}
.legal-section ul li strong { color: var(--ink); }
.legal-highlight {
  margin-top: 16px; padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--orange-pale); border-left: 3px solid var(--orange);
}
.legal-highlight p { color: var(--orange-dark) !important; font-weight: 600; font-size: 0.92rem; }
.legal-contact-box {
  margin-top: 8px; padding: 32px 30px; text-align: left;
}
.legal-contact-box .btn { margin-top: 22px; }
.legal-contact-list { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.legal-contact-list a { color: var(--ink); font-weight: 700; font-size: 0.92rem; transition: color 0.2s ease; }
.legal-contact-list a:hover { color: var(--orange-dark); }

/* ============================================================
   PÁGINA /obrigado/ — mesmo bg escuro + grid + scrim das outras
   páginas, sem navbar (o foco é 1 única ação: seguir pro WhatsApp).
============================================================ */
.obrigado-page {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 20px; text-align: center;
}
.obrigado-page-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.obrigado-page-grid { position: absolute; inset: 0; z-index: 1; }
.obrigado-page-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,13,0.86) 0%, rgba(13,13,13,0.8) 40%, rgba(13,13,13,0.94) 100%);
}
.obrigado-inner { position: relative; z-index: 2; width: 100%; max-width: 480px; }
.obrigado-check {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 26px;
  background: rgba(52, 211, 153, 0.14); color: #34D399;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(52, 211, 153, 0.06);
}
.obrigado-check svg { width: 38px; height: 38px; }
.obrigado-title { color: #fff; margin-top: 4px; }
.obrigado-title em { font-style: normal; color: var(--orange-light); }
.obrigado-lead { color: rgba(255,255,255,0.68); margin-top: 16px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.obrigado-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 32px; }
.obrigado-actions .btn { width: 100%; max-width: 320px; }
.obrigado-actions .btn svg { width: 18px; height: 18px; }
.obrigado-home { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s ease; }
.obrigado-home:hover { color: #fff; }
.obrigado-timer { color: rgba(255,255,255,0.4); margin-top: 22px; }

/* ============================================================
   LANDING PAGES (Indique e Ganhe, Monte Sua Cozinha, Projetos Redes)
   Header minimalista: só a logo, sem nav/burger — tráfego de campanha,
   foco total na conversão da própria página, sem rota de saída no topo.
   Reaproveitado nas 3 LPs pra manter o mesmo "sub-padrão" entre elas.
============================================================ */
.lp-header { position: absolute; top: 0; left: 0; right: 0; z-index: 5; padding: 28px 0; }
.lp-header .ds-container { display: flex; align-items: center; justify-content: space-between; }
.lp-header-logo { height: 30px; width: auto; }
.lp-header-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* Rodapé minimalista das LPs: sem colunas de menu (evita rota de saída
   competindo com o CTA único da página), só marca + social + volta pro
   site + copyright. */
.lp-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 44px 0 28px; text-align: center; }
.lp-footer-logo { height: 24px; width: auto; margin: 0 auto 18px; display: block; }
.lp-footer-back { color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 600; transition: color 0.2s ease; }
.lp-footer-back:hover { color: var(--orange-light); }
.lp-footer-social { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; }
.lp-footer-bottom { margin-top: 22px; font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* Grid 2x2 pra blocos numerados com 4 itens (em vez do wrap 3+1 do
   .numbered-grid padrão, que é pensado pra múltiplos de 3). */
@media (min-width: 640px) { .numbered-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .numbered-grid.numbered-grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Lista com marcador circular "check" — variante escura de .legal-section
   ul li, usada em blocos de texto sobre fundo .section-dark (ex.: "Quem
   você pode indicar"). */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.check-list li {
  list-style: none; display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.78); font-size: 0.97rem; line-height: 1.55;
}
.check-list-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: rgba(255,85,0,0.18); color: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
}
.check-list-icon svg { width: 12px; height: 12px; }

/* Cards de comissão (Indique e Ganhe): percentual gigante + rótulo,
   reaproveita .card como base e .legal-highlight pro aviso do PDF. */
.commission-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
@media (min-width: 700px) { .commission-grid { grid-template-columns: repeat(2, 1fr); } }
.commission-card {
  text-align: center; padding: 40px 28px; border-radius: var(--radius-xl);
  border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s ease, border-color 0.35s ease;
}
.commission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange-pale); }
.commission-value {
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 3.4rem; line-height: 1;
  color: var(--orange-dark);
}
.commission-card h3 { margin-top: 10px; }
.commission-card p { color: var(--text-muted); margin-top: 6px; }

/* Seção de cadastro (form + vídeo), fundo escuro, mesma família visual do
   Showroom (.bg-grid-dark + glow laranja). */
.indicar-cadastro-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; margin-top: 40px; }
@media (min-width: 992px) { .indicar-cadastro-grid { grid-template-columns: 1.05fr 0.95fr; } }
.indicar-form-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 36px 32px;
}
.indicar-form-card .field-label { color: rgba(255,255,255,0.85); }
.indicar-form-card .field-input, .indicar-form-card .field-select {
  background: rgba(255,255,255,0.94); border-color: transparent;
}
.indicar-form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 22px; }
@media (min-width: 560px) { .indicar-form-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.indicar-form-card .btn { width: 100%; margin-top: 6px; justify-content: center; }
.indicar-form-msg { margin-top: 14px; font-size: 0.85rem; }
.indicar-form-msg.is-error { color: #FF8A6B; }
.indicar-form-msg.is-ok { color: #34D399; }
.indicar-video-card {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  padding: 8px 4px;
}
.indicar-video-frame {
  position: relative; width: 100%; aspect-ratio: 4/3.2; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.12);
}
.indicar-video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.indicar-video-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 16px; text-align: center; }
