/* =====================================================
   Ledlenser Brasil — home (prévia)
   Design system: ledlenser.com.md (extraído do site oficial)
   ===================================================== */

/* ---------- Fontes (Barlow = substituto DIN-like, self-hosted) ---------- */
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/barlow-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --red: #CD0000;
  --red-dark: #A50000;
  --bg: #F5F5F5;
  --surface: #FFFFFF;
  --dark: #000000;
  --ink: #000000;
  --ink-2: #4D4D4D;
  --ink-3: #878787;
  --line: #EBEBEB;
  --line-2: #C3C3C3;
  --shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  --r-chip: 4px;
  --r-btn: 8px;
  --r-card: 12px;
  --font: 'Barlow', 'Roboto Condensed', Arial, sans-serif;
  --container: 1320px;
  --skew: -12deg;
  /* z-index semântico */
  --z-sticky: 100;
  --z-menu: 200;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
ul { list-style: none; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.22; text-wrap: balance; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 24px;
  z-index: var(--z-menu);
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ---------- CTA paralelogramo (assinatura da marca) ---------- */
.cta {
  display: inline-block;
  transform: skewX(var(--skew));
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.cta > span { display: inline-block; transform: skewX(calc(var(--skew) * -1)); }
.cta--red { background: var(--red); color: #fff; }
.cta--red:hover { background: var(--red-dark); }
.cta--dark { background: var(--dark); color: #fff; }
.cta--dark:hover { background: #2b2b2b; }
.cta--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.cta--ghost:hover { background: rgba(255, 255, 255, 0.28); }
.cta--lg { padding: 18px 44px; font-size: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand img { height: 26px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}
.site-nav > a:not(.cta) {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s ease-in-out;
}
.site-nav > a:not(.cta):hover { border-bottom-color: var(--red); }
.nav-cta { padding: 10px 24px; font-size: 15px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative;
  width: 100%;
  color: #fff;
  padding-block: clamp(64px, 12vh, 128px);
}
.hero-chip {
  display: inline-block;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: var(--r-chip);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  max-width: 54ch;
  margin-top: 20px;
  color: #ECECEC;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-left: 6px; /* compensa o skew do primeiro CTA */
}

/* ---------- Categorias ---------- */
.categorias {
  background: var(--surface);
  padding-block: 40px;
  border-bottom: 1px solid var(--line);
}
.cat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-tile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg);
  border: 0;
  border-radius: var(--r-card);
  padding: 20px 16px;
  text-align: center;
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cat-tile:hover { background: #EBEBEB; }
.cat-tile img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 8px;
}
.cat-name { font-weight: 700; font-size: 18px; }
.cat-count { font-size: 14px; color: var(--ink-2); }

/* ---------- Seções (cabeçalho padrão) ---------- */
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}
.section-head h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.section-lead { color: var(--ink-2); font-size: 18px; max-width: 60ch; }

/* ---------- Produtos ---------- */
.produtos { padding-block: clamp(56px, 8vw, 96px); }
.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.chip {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-btn);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card-produto { display: block; }
.card-produto.is-hidden { display: none; }
.card-produto > a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}
.card-produto > a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.tag-destaque {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--r-chip);
  transform: skewX(var(--skew));
}
.tag-destaque--atex { background: var(--dark); }
.card-produto figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 24px;
  background: var(--surface);
}
.card-produto figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.15s ease-in-out;
}
.card-produto > a:hover figure img { transform: scale(1.04); }
.card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  padding: 8px 24px 24px;
  border-top: 1px solid var(--line);
}
.card-cat {
  font-size: 14px;
  color: var(--ink-2);
  padding-top: 12px;
}
.card-info h3 { font-size: 24px; font-weight: 700; }
.card-spec { font-size: 15px; color: var(--ink-2); }
.card-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
}
.card-produto > a:hover .card-link { text-decoration: underline; }
.produtos-nota {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-2);
}

/* ---------- ATEX ---------- */
.atex {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(56px, 8vw, 96px);
}
.atex-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.atex h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}
.atex h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.atex-texto > p { color: #ECECEC; font-size: 18px; max-width: 55ch; }
.atex-specs {
  margin-block: 32px;
  display: grid;
  gap: 16px;
}
.atex-specs li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 16px;
}
.atex-specs strong { font-size: 20px; white-space: nowrap; }
.atex-specs span { color: #C3C3C3; font-size: 16px; }
.atex-foto {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 32px;
  text-align: center;
}
.atex-foto img { margin-inline: auto; }
.atex-foto figcaption {
  color: var(--ink-2);
  font-size: 14px;
  padding-top: 12px;
}

/* ---------- Revenda ---------- */
.revenda {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.revenda-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.revenda-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.35) 100%);
}
.revenda-content {
  position: relative;
  padding-block: clamp(72px, 12vw, 144px);
  max-width: min(var(--container), 100%);
}
.revenda h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  max-width: 18ch;
}
.revenda-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #ECECEC;
  max-width: 52ch;
  margin-top: 20px;
}
.revenda-pontos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 32px;
  margin-block: 40px;
}
.revenda-pontos strong { display: block; font-size: 18px; margin-bottom: 4px; }
.revenda-pontos span { color: #C3C3C3; font-size: 15px; line-height: 1.45; display: block; }
.revenda .cta { margin-left: 8px; }

/* ---------- Onde comprar ---------- */
.onde-comprar { padding-block: clamp(56px, 8vw, 96px); }
.canais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.canal {
  border-radius: var(--r-card);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.canal--b2b { background: var(--dark); color: #fff; }
.canal--varejo { background: var(--surface); box-shadow: var(--shadow); }
.canal-rotulo { font-weight: 700; font-size: 15px; color: var(--red); }
.canal--b2b .canal-rotulo { color: #FF6B6B; }
.canal h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); text-transform: uppercase; }
.canal p { max-width: 44ch; }
.canal--b2b p { color: #ECECEC; }
.canal--varejo p { color: var(--ink-2); }
.canal .cta { margin-top: 20px; margin-left: 6px; }

/* ---------- Sobre ---------- */
.sobre {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: clamp(56px, 8vw, 96px);
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
}
.sobre h2 {
  font-size: 28px;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}
.sobre h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.sobre p { color: var(--ink-2); max-width: 58ch; font-size: 17px; }
.sobre strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #ECECEC;
  padding-block: 56px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 23px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; color: #C3C3C3; max-width: 40ch; }
.footer-nav, .footer-canais {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-canais a {
  color: #ECECEC;
  text-decoration: none;
  font-size: 15px;
  width: fit-content;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease-in-out;
}
.footer-nav a:hover, .footer-canais a:hover { border-bottom-color: var(--red); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 24px;
}
.footer-legal p { font-size: 13px; color: #A8A8A8; }

/* ---------- Reveal (progressivo: visível por padrão, anima só com JS) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =====================================================
   Páginas internas (produto · onde comprar · sobre)
   ===================================================== */

/* ---------- Hero curto de página ---------- */
.page-hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.72) 100%);
}
.page-hero-content {
  position: relative;
  padding-block: clamp(56px, 9vw, 112px);
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-transform: uppercase;
  max-width: 22ch;
}
.page-hero .hero-sub { margin-top: 16px; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 14px;
  font-size: 14px;
  color: var(--ink-2);
}
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: var(--line-2); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Produto: vitrine ---------- */
.pd-hero { padding-block: clamp(40px, 6vw, 72px); }
.pd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.pd-galeria { position: sticky; top: 96px; }
.pd-foto-principal {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: clamp(24px, 4vw, 48px);
}
.pd-foto-principal img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.pd-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.pd-thumb {
  width: 76px;
  height: 76px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  padding: 8px;
  transition: border-color 0.15s ease-in-out;
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.pd-thumb:hover { border-color: var(--ink); }
.pd-thumb[aria-current="true"] { border: 2px solid var(--red); }
.pd-cat {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
}
.pd-info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-top: 4px;
}
.pd-sku { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.pd-resumo {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 55ch;
  margin-top: 16px;
}
.pd-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.pd-stats > div {
  flex: 1 1 auto;
  padding: 16px 24px 16px 0;
  margin-right: 24px;
  min-width: 96px;
}
.pd-stats strong { display: block; font-size: 26px; font-weight: 700; line-height: 1.1; }
.pd-stats span { font-size: 14px; color: var(--ink-2); }
.pd-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-left: 6px;
}
.pd-nota-foto { font-size: 13px; color: var(--ink-3); margin-top: 20px; }
.pd-destaques { margin-top: 32px; display: grid; gap: 14px; }
.pd-destaques li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
  max-width: 58ch;
}
.pd-destaques li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.pd-destaques strong { color: var(--ink); }

/* ---------- Produto: modos de luz (faixa escura) ---------- */
.pd-modos {
  background: var(--dark);
  color: #fff;
  padding-block: clamp(48px, 7vw, 88px);
}
.pd-modos h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 8px;
}
.pd-modos h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.pd-modos-sub { color: #C3C3C3; margin-bottom: 32px; max-width: 60ch; }
.tabela-scroll { overflow-x: auto; }
.tabela-modos {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.tabela-modos th, .tabela-modos td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.tabela-modos th {
  font-size: 14px;
  font-weight: 600;
  color: #C3C3C3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tabela-modos td { font-size: 17px; }
.tabela-modos td:first-child { font-weight: 700; }
.tabela-modos .modo-max td { color: #fff; }

/* ---------- Produto: ficha técnica ---------- */
.pd-ficha {
  background: var(--surface);
  padding-block: clamp(48px, 7vw, 88px);
}
.ficha-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin-top: 8px;
}
.ficha-grupo h3 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 4px;
}
.ficha-grupo dl { margin: 0; }
.ficha-grupo > dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
}
.ficha-grupo dt { color: var(--ink-2); font-size: 15px; }
.ficha-grupo dd { font-weight: 600; font-size: 15px; text-align: right; }

/* ---------- Produto: na caixa ---------- */
.pd-caixa { padding-block: clamp(48px, 7vw, 80px); }
.pd-caixa-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 8px;
}
.pd-caixa-lista li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  color: var(--ink-2);
}
.pd-caixa-lista li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}

/* ---------- Produto: foto de ambiente ---------- */
.pd-ambiente {
  position: relative;
  max-height: 560px;
  overflow: hidden;
  background: var(--dark);
}
.pd-ambiente img { width: 100%; height: 100%; max-height: 560px; object-fit: cover; }

/* ---------- Produto: relacionados ---------- */
.pd-relacionados { padding-block: clamp(48px, 7vw, 88px); }

/* ---------- Faixa B2B compacta ---------- */
.b2b-band {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
.b2b-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.b2b-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.4) 100%);
}
.b2b-band-content {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px);
}
.b2b-band h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  max-width: 22ch;
}
.b2b-band p {
  color: #ECECEC;
  font-size: 17px;
  max-width: 58ch;
  margin-top: 14px;
}
.b2b-band .cta { margin-top: 28px; margin-left: 6px; }

/* ---------- Onde comprar: revendas ---------- */
.revendas { padding-block: clamp(48px, 7vw, 88px); }
.revendas-controles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}
.btn-localizar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #fff;
  border: 0;
  border-radius: var(--r-btn);
  padding: 13px 22px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.15s ease-in-out;
}
.btn-localizar:hover { background: #2b2b2b; }
.btn-localizar svg { flex: none; }
.revendas-busca {
  flex: 1 1 260px;
  max-width: 380px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-btn);
  padding: 12px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
}
.revendas-busca::placeholder { color: var(--ink-2); }
.revendas-status {
  font-size: 15px;
  color: var(--ink-2);
  min-height: 1.4em;
  margin-bottom: 20px;
}
.revendas-status[data-tone="erro"] { color: var(--red); }
.revendas-lista {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.revenda-item {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.revenda-item h3 { font-size: 19px; font-weight: 700; }
.revenda-cidade { color: var(--ink-2); font-size: 15px; }
.revenda-endereco { color: var(--ink-2); font-size: 15px; }
.revenda-distancia {
  display: inline-block;
  width: fit-content;
  background: var(--bg);
  border-radius: var(--r-chip);
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 4px;
}
.revenda-tag-exemplo {
  display: inline-block;
  width: fit-content;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-chip);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.revenda-rota {
  margin-top: auto;
  padding-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}
.revenda-rota:hover { text-decoration: underline; }
.revendas-vazio {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: clamp(32px, 5vw, 56px);
  max-width: 720px;
}
.revendas-vazio h3 { font-size: 22px; margin-bottom: 10px; }
.revendas-vazio p { color: var(--ink-2); max-width: 58ch; }
.revendas-vazio .revendas-saidas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-left: 6px;
}
.revendas-nota { font-size: 13px; color: var(--ink-3); margin-top: 24px; }

/* ---------- Sobre ---------- */
.sobre-blocos {
  padding-block: clamp(48px, 7vw, 88px);
  display: grid;
  gap: clamp(40px, 6vw, 72px);
}
.sobre-bloco {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.sobre-bloco:nth-child(even) .sobre-bloco-foto { order: 2; }
.sobre-bloco-foto {
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
}
.sobre-bloco-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sobre-bloco-texto h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 16px;
}
.sobre-bloco-texto h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--red);
  transform: skewX(var(--skew));
}
.sobre-bloco-texto p { color: var(--ink-2); font-size: 17px; max-width: 58ch; }
.sobre-bloco-texto p + p { margin-top: 14px; }
.sobre-bloco-texto strong { color: var(--ink); }
.motivos {
  background: var(--surface);
  padding-block: clamp(48px, 7vw, 88px);
}
.motivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: 8px;
}
.motivo h3 {
  font-size: 19px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 10px;
}
.motivo p { color: var(--ink-2); font-size: 16px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .atex-inner { grid-template-columns: 1fr; }
  .atex-foto { max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) and (min-width: 821px) {
  .pd-grid { gap: 32px; }
}

@media (max-width: 820px) {
  .pd-grid { grid-template-columns: 1fr; }
  .pd-galeria { position: static; }
  .pd-stats > div { flex: 1 1 40%; margin-right: 0; }
  .sobre-bloco { grid-template-columns: 1fr; }
  .sobre-bloco:nth-child(even) .sobre-bloco-foto { order: 0; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(16px, 4vw, 32px) 32px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .canais { grid-template-columns: 1fr; }
  .sobre-inner { grid-template-columns: 1fr; }
  .revenda-pontos { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 560px) {
  .cat-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-tile { padding: 16px 8px; }
  .cat-tile img { width: 72px; height: 72px; }
  .cat-name { font-size: 15px; }
  .hero { min-height: 78vh; }
  .hero-actions .cta { flex: 1 1 100%; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
