/* ==========================================================================
   BP TECH — Loja | Design System v6 (2026-06-26)
   Topo escuro premium (header + hero + trust band + faixa whatsapp)
   Corpo claro (produtos, categorias, conteúdo) — fiel ao mockup de referência
   ========================================================================== */

:root {
  /* Escala tipográfica (base 16px, razão ~1.125) */
  --fs-2xs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 21px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 38px;
  --fs-5xl: 48px;

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Superfícies escuras (topo) — azul-escuro oficial da marca: #131420 */
  --bp-darker: #0c0d14;
  --bp-dark: #131420;
  --bp-dark-soft: #171829;
  --bp-border-dark: rgba(255,255,255,.10);
  --bp-border-dark-strong: rgba(255,255,255,.16);

  /* Superfícies claras (corpo) */
  --bp-bg: #f7f8fa;
  --bp-white: #ffffff;
  --bp-border: #e7e9ee;
  --bp-ink: #12161f;
  --bp-ink-soft: #5b6472;
  --bp-ink-mute: #8b93a1;

  /* Texto sobre fundo escuro */
  --bp-text-on-dark: rgba(255,255,255,.92);
  --bp-text-on-dark-soft: rgba(255,255,255,.72);
  --bp-text-on-dark-mute: rgba(255,255,255,.52);

  /* Marca — valores oficiais da identidade visual BP Tech */
  --bp-blue: #579bca;
  --bp-blue-strong: #6cb4e0;
  --bp-blue-soft: rgba(87,155,202,.12);
  --bp-blue-glow: rgba(87,155,202,.35);
  --bp-whatsapp: #25d366;

  --bp-success: #1fae57;
  --bp-danger: #e0473f;
  --bp-warning: #e0a022;

  --bp-radius: 14px;
  --bp-radius-lg: 18px;
  --shadow-card: 0 8px 24px rgba(20,30,50,.08);
  --shadow-card-hover: 0 16px 36px rgba(20,30,50,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bp-ink);
  background: var(--bp-bg);
  font-size: var(--fs-base);
  line-height: 1.5;
}
h1, h2, h3, h4 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
ul { margin: 0; padding: 0; }
.container { width: min(1480px, calc(100% - 64px)); margin: 0 auto; }

/* ==========================================================================
   HEADER (compacto)
   ========================================================================== */
.site-header {
  background: var(--bp-darker);
  color: var(--bp-white);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-top {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 13px 0;
}
.header-top .brand { flex: 0 0 auto; }
.header-top .search-form { flex: 1 1 auto; }
.header-top .header-actions { flex: 0 0 auto; }
.brand { display: flex; align-items: center; }
.brand img { width: 148px; height: 38px; object-fit: contain; object-position: left center; }

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--bp-border-dark-strong);
  border-radius: 10px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
}
.search-form input {
  width: 100%;
  color: var(--bp-white);
  background: transparent;
  border: 0;
  outline: none;
  padding: 11px 44px 11px 14px;
  font-size: var(--fs-sm);
}
.search-form input::placeholder { color: var(--bp-text-on-dark-mute); }
.search-form button {
  position: absolute;
  right: 5px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--bp-text-on-dark-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.search-form button:hover { color: var(--bp-blue-strong); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.quick-whatsapp {
  border: 1px solid var(--bp-whatsapp);
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.quick-whatsapp .wa-icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--bp-whatsapp); }
.quick-whatsapp .wa-copy { display: grid; gap: 0; line-height: 1.15; }
.quick-whatsapp .wa-copy strong { font-size: var(--fs-xs); font-weight: 800; letter-spacing: .01em; color: var(--bp-white); }
.quick-whatsapp .wa-copy span { font-size: var(--fs-2xs); color: var(--bp-text-on-dark-mute); }

.cart-icon {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  color: var(--bp-white);
  flex-shrink: 0;
}
.cart-icon svg { width: 21px; height: 21px; }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--bp-blue-strong);
  color: #04131c;
  font-size: var(--fs-2xs);
  font-weight: 900;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 3px;
}

.main-nav { border-top: 1px solid var(--bp-border-dark); }
.nav-inner { display: flex; align-items: center; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a {
  padding: 13px 0;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bp-text-on-dark-soft);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-inner a.active,
.nav-inner a:hover { color: var(--bp-blue-strong); border-color: var(--bp-blue-strong); }

/* ==========================================================================
   HERO — fiel ao mockup de referência: texto à esquerda, composição de
   produtos à direita, fundo gradiente azul-escuro de ponta a ponta.
   ========================================================================== */
.hero {
  position: relative;
  color: var(--bp-white);
  overflow: hidden;
  background: linear-gradient(115deg, #060911 0%, #0a1726 55%, #0d2336 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(87,155,202,.10) 49.5% 50%, transparent 50% 100%);
  background-size: 180px 180px;
  opacity: .4;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
  min-height: 0;
}
.hero-grid .hero-copy { flex: 1 1 50%; min-width: 0; }
.hero-grid .hero-visual { flex: 1 1 50%; min-width: 0; }
.hero h1 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 60px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-weight: 800;
}
.hero h1 span { color: var(--bp-blue-strong); }
.hero-text {
  margin: 18px 0 24px;
  color: var(--bp-text-on-dark-soft);
  max-width: min(460px, 38vw);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: var(--fs-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--bp-blue-strong), #1976c4); color: #04131c; box-shadow: 0 10px 22px rgba(87,155,202,.3); }
.btn-outline { background: rgba(255,255,255,.04); color: var(--bp-white); border-color: var(--bp-border-dark-strong); }
.btn-outline:hover { border-color: var(--bp-blue-strong); }
.btn-outline-dark { background: rgba(255,255,255,.04); color: var(--bp-white); border-color: var(--bp-border-dark-strong); }
.btn-whatsapp { background: var(--bp-whatsapp); color: #052e16; }
.btn-ghost { background: transparent; color: inherit; border-color: var(--bp-border-dark-strong); }

/* Composição de produtos: até a foto real entrar, mostra um placeholder
   discreto do mesmo tamanho/posição. Quando a foto for adicionada, troque
   o conteúdo de .hero-visual por uma <img> e remova "is-placeholder". */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-visual img { width: 100%; max-width: min(640px, 44vw); height: auto; display: block; }
.hero-visual.is-placeholder {
  width: 100%;
  height: 100%;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.hero-visual.is-placeholder .placeholder-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.3);
  font-size: var(--fs-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-visual.is-placeholder .placeholder-hint svg { width: 36px; height: 36px; opacity: .5; }

/* ==========================================================================
   TRUST BAND
   ========================================================================== */
.trust-band { background: #050810; color: var(--bp-white); border-top: 1px solid var(--bp-border-dark); }
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 0;
}
.trust-grid div { flex: 1 1 0; min-width: 160px; display: flex; flex-direction: column; gap: 3px; }
.trust-grid strong { color: var(--bp-blue-strong); text-transform: uppercase; font-size: var(--fs-xs); letter-spacing: .03em; }
.trust-grid span { color: var(--bp-text-on-dark-soft); font-size: var(--fs-sm); line-height: 1.4; }

/* ==========================================================================
   SECTIONS / PRODUCTS (corpo claro)
   ========================================================================== */
.page-body { background: var(--bp-bg); }
.section { padding: 36px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 20px; }
.section-head h2 {
  margin: 0; font-size: clamp(24px, 2.4vw, 36px); letter-spacing: -.01em; color: var(--bp-ink);
}
.section-head a { color: var(--bp-blue); font-weight: 800; font-size: var(--fs-sm); display: inline-flex; align-items: center; gap: 3px; }
.section-head a:hover { color: var(--bp-blue-strong); }
.section-kicker { margin: 0 0 4px; color: var(--bp-ink-mute); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }

.product-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.product-grid .product-card { flex: 1 1 calc(20% - 13px); min-width: 200px; }
.product-card {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--bp-blue-strong); box-shadow: var(--shadow-card-hover); }
.product-image { display: block; aspect-ratio: 4/3; background: #f3f4f6; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder {
  height: 100%; min-height: 150px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #f1f3f6, #e6e9ee);
  color: var(--bp-blue);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: var(--fs-sm);
}
.product-placeholder.detail { min-height: 420px; border-radius: var(--bp-radius); }
.fav-btn {
  position: absolute; top: 9px; right: 9px;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--bp-border);
  display: grid; place-items: center;
  color: var(--bp-ink-soft);
  box-shadow: 0 2px 6px rgba(20,30,50,.08);
}
.fav-btn svg { width: 15px; height: 15px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: var(--fs-2xs);
  font-weight: 800;
  white-space: nowrap;
}
.product-image .status-pill { position: absolute; top: 9px; left: 9px; }
.status-available { background: rgba(31,174,87,.12); color: #15803d; }
.status-reserved { background: rgba(224,160,34,.14); color: #b45309; }
.status-sold { background: rgba(224,71,63,.12); color: #b91c1c; }
.status-hidden { background: rgba(139,147,161,.14); color: var(--bp-ink-mute); }
.product-info { padding: 14px; display: flex; flex-direction: column; flex: 1; }
.product-title { display: block; font-weight: 800; line-height: 1.25; margin-bottom: 4px; color: var(--bp-ink); font-size: var(--fs-md); }
.product-specs, .installment { margin: 0 0 8px; color: var(--bp-ink-mute); font-size: var(--fs-xs); }
.price-row { display: grid; gap: 1px; margin-bottom: 2px; }
.price-row strong, .summary-price strong { color: var(--bp-blue); font-size: var(--fs-lg); }
.old-price { text-decoration: line-through; color: var(--bp-ink-mute); font-size: var(--fs-xs); }
.availability-row { display: flex; align-items: center; gap: 6px; margin: 8px 0 10px; font-size: var(--fs-xs); color: var(--bp-ink-soft); }
.availability-row .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--bp-success); flex-shrink: 0; }
.card-link { color: var(--bp-blue); font-weight: 800; font-size: var(--fs-sm); margin-top: auto; }

.empty-state { border: 1px dashed var(--bp-border); border-radius: var(--bp-radius); padding: 36px; color: var(--bp-ink-mute); background: var(--bp-white); text-align: center; font-size: var(--fs-md); }

/* ==========================================================================
   WHATSAPP STRIP (escura, sobre fundo claro)
   ========================================================================== */
.whatsapp-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border-radius: var(--bp-radius-lg);
  color: var(--bp-white);
  background: linear-gradient(120deg, #060911, #0c2236);
  flex-wrap: wrap;
}
.whatsapp-strip-text { display: flex; align-items: flex-start; gap: 13px; }
.whatsapp-strip-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  background: rgba(37,211,102,.14); display: grid; place-items: center; color: var(--bp-whatsapp);
}
.whatsapp-strip-icon svg { width: 20px; height: 20px; }
.whatsapp-strip div.copy { display: grid; gap: 3px; }
.whatsapp-strip strong { font-size: var(--fs-md); }
.whatsapp-strip span { color: var(--bp-text-on-dark-soft); font-size: var(--fs-sm); }
.whatsapp-strip-perks { display: flex; gap: 22px; flex-wrap: wrap; }
.whatsapp-strip-perks span { display: flex; align-items: center; gap: 6px; color: var(--bp-text-on-dark-soft); font-size: var(--fs-sm); white-space: nowrap; }
.whatsapp-strip-perks svg { width: 15px; height: 15px; color: var(--bp-blue-strong); flex-shrink: 0; }
.whatsapp-strip a.btn-whatsapp { white-space: nowrap; flex-shrink: 0; }

/* ==========================================================================
   CATEGORIES
   ========================================================================== */
.category-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.category-grid .category-card { flex: 1 1 calc(14.2857% - 10.3px); min-width: 130px; }
.category-card {
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius);
  padding: 16px 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  background: var(--bp-white);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.category-card:hover { border-color: var(--bp-blue-strong); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.category-card span {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--bp-blue-soft);
  color: var(--bp-blue);
  font-weight: 900;
  font-size: var(--fs-sm);
}
.category-card strong { font-size: var(--fs-sm); color: var(--bp-ink); }
.category-card small { color: var(--bp-ink-mute); font-size: var(--fs-xs); }

/* ==========================================================================
   SEO BLOCK
   ========================================================================== */
.seo-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}
.seo-block > div:first-child { flex: 1 1 60%; min-width: 280px; }
.seo-block .seo-list { flex: 1 1 35%; min-width: 240px; }
.seo-block h2 { margin-top: 0; font-size: var(--fs-3xl); letter-spacing: -.02em; color: var(--bp-ink); }
.seo-block p { color: var(--bp-ink-soft); line-height: 1.7; }
.seo-list { display: flex; flex-wrap: wrap; align-content: center; gap: 9px; }
.seo-list span { border: 1px solid var(--bp-border); background: var(--bp-bg); color: var(--bp-ink); padding: 10px 13px; border-radius: 999px; font-weight: 700; font-size: var(--fs-sm); }

/* ==========================================================================
   PAGE HERO (catálogo / produto / contato / estáticas) — segue mesmo padrão
   ========================================================================== */
.page-main { background: var(--bp-bg); }
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--bp-white);
  background: linear-gradient(115deg, #060911, #0d2336);
}
.page-hero.small .container { position: relative; z-index: 1; padding: 46px 0; }
.page-hero h1 { margin: 0 0 10px; font-size: clamp(28px, 3.4vw, 46px); letter-spacing: -.02em; }
.page-hero p:not(.eyebrow) { max-width: 680px; margin: 0; color: var(--bp-text-on-dark-soft); font-size: var(--fs-md); line-height: 1.6; }

.catalog-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.catalog-grid .product-card { flex: 1 1 calc(20% - 13px); min-width: 200px; }

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.product-page { background: var(--bp-bg); }
.product-detail { display: flex; gap: 32px; padding: 40px 0; flex-wrap: wrap; }
.product-detail .gallery { flex: 1 1 50%; min-width: 320px; }
.product-detail .product-summary { flex: 1 1 45%; min-width: 320px; }
.gallery, .product-summary, .product-description {
  background: var(--bp-white);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.main-product-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 13px; background: #f1f3f6; }
.thumbs { display: flex; gap: 9px; margin-top: 13px; overflow-x: auto; }
.thumbs button { border: 1px solid var(--bp-border); background: var(--bp-white); padding: 0; width: 78px; height: 64px; border-radius: 11px; overflow: hidden; cursor: pointer; }
.thumbs button:hover { border-color: var(--bp-blue-strong); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb { color: var(--bp-blue); font-weight: 800; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .03em; }
.product-summary h1 { font-size: clamp(26px, 3.2vw, 46px); line-height: 1.1; letter-spacing: -.02em; margin: 12px 0 8px; color: var(--bp-ink); }
.summary-specs { color: var(--bp-ink-mute); font-size: var(--fs-md); }
.summary-price { display: grid; gap: 5px; margin: 20px 0; }
.summary-price strong { font-size: var(--fs-3xl); }
.summary-price small { color: var(--bp-ink-mute); }
.summary-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 20px; }
.info-cards { display: grid; gap: 9px; }
.info-cards div { border: 1px solid var(--bp-border); border-radius: 13px; padding: 13px; display: grid; gap: 3px; background: var(--bp-bg); }
.info-cards strong { color: var(--bp-ink); font-size: var(--fs-sm); }
.info-cards span { color: var(--bp-ink-mute); font-size: var(--fs-sm); }
.product-description { display: flex; gap: 28px; margin-bottom: 18px; flex-wrap: wrap; }
.product-description > div:first-child { flex: 1 1 60%; min-width: 280px; }
.product-description > div:last-child { flex: 1 1 35%; min-width: 240px; }
.product-description h2 { margin-top: 0; color: var(--bp-ink); }
.product-description p, .product-description li { line-height: 1.7; color: var(--bp-ink-soft); }

/* ==========================================================================
   CONTENT / STATIC PAGES
   ========================================================================== */
.content-page { max-width: 800px; color: var(--bp-ink-soft); }
.content-step { display: grid; grid-template-columns: 44px 1fr; gap: 15px; border-bottom: 1px solid var(--bp-border); padding: 20px 0; }
.content-step span { width: 36px; height: 36px; border-radius: 50%; background: var(--bp-blue-strong); color: #04131c; display: grid; place-items: center; font-weight: 900; }
.content-step p { margin: 0; line-height: 1.7; color: var(--bp-ink-soft); }
.contact-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.contact-grid .contact-card { flex: 1 1 calc(50% - 10px); min-width: 280px; }
.contact-card { border: 1px solid var(--bp-border); border-radius: var(--bp-radius-lg); padding: 26px; box-shadow: var(--shadow-card); background: var(--bp-white); }
.contact-card.primary { background: linear-gradient(120deg, #060911, #0c2540); color: var(--bp-white); }
.contact-card p { color: var(--bp-ink-soft); line-height: 1.7; }
.contact-card.primary p { color: rgba(255,255,255,.8); }
.error-pre { background: #0a1120; color: #fff; padding: 16px; overflow-x: auto; border-radius: 12px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--bp-darker); color: var(--bp-text-on-dark-soft); padding-top: 44px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 32px; }
.footer-grid > div:first-child { flex: 1 1 calc(32.5% - 24px); min-width: 220px; }
.footer-grid > div:not(:first-child) { flex: 1 1 calc(22.5% - 24px); min-width: 160px; }
.footer-logo { width: 150px; height: 40px; object-fit: contain; object-position: left center; margin-bottom: 12px; }
.site-footer h3 { color: var(--bp-white); margin: 0 0 12px; font-size: var(--fs-md); }
.site-footer a { display: block; margin-bottom: 9px; color: var(--bp-text-on-dark-soft); font-size: var(--fs-sm); }
.site-footer p { font-size: var(--fs-sm); margin: 0 0 9px; color: var(--bp-text-on-dark-soft); }
.site-footer a:hover { color: var(--bp-blue-strong); }
.footer-whatsapp { color: var(--bp-whatsapp) !important; font-weight: 800; }
.footer-bottom { border-top: 1px solid var(--bp-border-dark); text-align: center; padding: 16px; margin-top: 32px; font-size: var(--fs-xs); color: var(--bp-text-on-dark-mute); }

/* ==========================================================================
   ADMIN (mantido como estava — claro, sem mudanças funcionais)
   ========================================================================== */
.admin-login-page { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg, #080b14, #10253d); padding: 24px; }
.admin-login-card { width: min(420px, 100%); background: #ffffff; border-radius: 22px; padding: 30px; box-shadow: 0 22px 60px rgba(8,11,20,.16); }
.admin-login-card img { width: 220px; height: 64px; object-fit: contain; object-position: left center; background: #131420; border-radius: 12px; padding: 8px; }
.admin-login-card h1 { margin: 22px 0 6px; color: #131420; }
.admin-login-card p { color: #6b7280; }
.admin-header { background: #131420; color: #ffffff; }
.admin-header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.admin-brand { font-weight: 900; color: #13a8df; }
.admin-header nav { display: flex; gap: 18px; flex-wrap: wrap; }
.admin-header nav a { color: rgba(255,255,255,.82); font-weight: 800; }
.admin-main { padding: 36px 0 80px; background: #f5f7fb; min-height: 100vh; }
.admin-title-row { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.admin-title-row h1 { margin: 0; font-size: var(--fs-4xl); letter-spacing: -.04em; color: #131420; }
.alert { border-radius: 12px; padding: 14px 16px; margin: 16px 0; font-weight: 800; }
.alert.success { background: rgba(22,163,74,.12); color: #15803d; }
.alert.error { background: rgba(220,38,38,.12); color: #b91c1c; }
.admin-table-wrap { border: 1px solid #e5e7eb; border-radius: 18px; overflow: auto; background: #ffffff; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 14px 16px; border-bottom: 1px solid #e5e7eb; text-align: left; vertical-align: middle; color: #131420; }
.admin-table th { background: #f8fafc; color: #374151; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .06em; }
.admin-product-cell { display: flex; align-items: center; gap: 12px; }
.admin-product-cell img { width: 70px; height: 54px; object-fit: cover; border-radius: 10px; background: #f5f7fb; }
.admin-product-cell small { display: block; color: #6b7280; margin-top: 4px; }
.table-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.table-actions a, .table-actions button, .image-actions button { color: #0074d9; background: transparent; border: 0; padding: 0; font-weight: 900; cursor: pointer; }
.table-actions form { display: inline; }
.table-actions button[type="submit"] { color: #dc2626; }
.admin-form label { display: grid; gap: 8px; font-weight: 900; color: #374151; }
.admin-form input, .admin-form textarea, .admin-form select {
  width: 100%; border: 1px solid #e5e7eb; border-radius: 12px; padding: 13px 14px; outline: none; background: #ffffff; color: #131420;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-color: #13a8df; box-shadow: 0 0 0 4px rgba(19,168,223,.1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-panel { border: 1px solid #e5e7eb; border-radius: 18px; padding: 22px; background: #ffffff; display: grid; gap: 16px; align-content: start; }
.form-panel h2 { margin: 0; color: #131420; }
.two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox-label { display: flex !important; flex-direction: row; align-items: center; gap: 10px !important; margin-top: 26px; }
.checkbox-label input { width: auto; }
.form-help { color: #6b7280; margin: 0; line-height: 1.6; font-size: var(--fs-sm); }
.form-actions { display: flex; gap: 12px; margin-top: 22px; }
.admin-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.admin-images img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; background: #f5f7fb; }
.image-actions { display: flex; gap: 10px; margin-top: 8px; align-items: center; }
.image-actions span { font-size: var(--fs-sm); font-weight: 900; color: #16a34a; }
.category-form-panel { margin-bottom: 24px; }
.category-form { grid-template-columns: repeat(3, 1fr); display: grid; gap: 14px; }
.category-form label:nth-child(4) { grid-column: 1 / -1; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1150px) {
  .product-grid .product-card, .catalog-grid .product-card { flex-basis: calc(33.333% - 11px); }
  .category-grid .category-card { flex-basis: calc(25% - 9px); }
}

@media (max-width: 1050px) {
  .header-top { flex-wrap: wrap; padding: 12px 0; gap: 10px; justify-content: center; }
  .header-top .search-form { order: 3; flex-basis: 100%; }
  .brand { justify-content: center; }
  .header-actions { justify-content: space-between; }
  .quick-whatsapp { flex: 1; justify-content: center; }
  .hero-grid { flex-wrap: wrap; }
  .hero-grid .hero-copy, .hero-grid .hero-visual { flex-basis: 100%; }
  .product-detail .gallery, .product-detail .product-summary,
  .product-description > div:first-child, .product-description > div:last-child,
  .seo-block > div:first-child, .seo-block .seo-list,
  .contact-grid .contact-card { flex-basis: 100%; min-width: 0; }
  .hero-visual { order: -1; min-height: 220px; margin-bottom: 4px; }
  .hero-visual img, .hero-visual svg { max-width: 360px; }
  .trust-grid div { flex-basis: calc(50% - 9px); }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .product-grid .product-card, .catalog-grid .product-card { flex-basis: calc(50% - 8px); min-width: 0; }
  .category-grid .category-card { flex-basis: calc(33.333% - 8px); min-width: 0; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 22px, 1200px); }
  .brand img { width: 132px; height: 34px; }
  .nav-inner { justify-content: flex-start; gap: 18px; }
  .hero-grid { padding: 32px 0; }
  .hero h1 { font-size: var(--fs-3xl); }
  .hero-text { font-size: var(--fs-md); }
  .hero-visual { min-height: 220px; margin-top: 26px; }
  .hero-visual.is-placeholder .placeholder-hint svg { width: 30px; height: 30px; }
  .product-grid .product-card, .catalog-grid .product-card { flex-basis: calc(50% - 8px); min-width: 0; }
  .trust-grid div { flex-basis: calc(50% - 9px); min-width: 0; }
  .category-grid .category-card { flex-basis: calc(50% - 6px); min-width: 0; }
  .section-head, .admin-title-row { align-items: flex-start; flex-direction: column; }
  .whatsapp-strip { flex-direction: column; align-items: stretch; text-align: left; padding: 20px; }
  .whatsapp-strip-perks { gap: 12px; }
  .whatsapp-strip a.btn-whatsapp { width: 100%; text-align: center; }
  .footer-grid > div:first-child,
  .footer-grid > div:not(:first-child) { flex-basis: 100%; min-width: 0; }
  .summary-actions .btn, .form-actions .btn { width: 100%; }
  .two-cols, .category-form { grid-template-columns: 1fr; }
  .admin-header-inner { flex-direction: column; align-items: flex-start; padding: 16px 0; }
  .header-top { flex-wrap: wrap; }
  .header-actions { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .product-grid .product-card, .catalog-grid .product-card,
  .category-grid .category-card { flex-basis: calc(50% - 6px); min-width: 0; }
  .product-grid, .catalog-grid, .category-grid { gap: 10px; }
  .quick-whatsapp .wa-copy span { display: none; }
}

/* ==========================================================================
   BP TECH PATCH v16 CLEAN
   Remove a direção feia do v15: menu não fica esticado, hero volta a ser
   equilibrado, imagem fica menor e mais integrada.
   ========================================================================== */

:root {
  --bp-layout-max: 1320px;
  --bp-layout-pad: 48px;
  --bp-cyan: #13a8df;
}

.container {
  width: min(var(--bp-layout-max), calc(100% - var(--bp-layout-pad)));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  background: radial-gradient(circle at 72% -35%, rgba(19,168,223,.10), transparent 38%), #080b13;
}

.header-top {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}

.brand img {
  width: 178px;
  height: 42px;
  object-fit: contain;
}

.search-form {
  flex: 1 1 560px;
  max-width: 620px;
  margin-left: 18px;
}

.header-actions {
  margin-left: auto;
}

.quick-whatsapp {
  min-height: 48px;
  border-color: #25d366;
}

.main-nav {
  background: rgba(8,11,19,.92);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner {
  justify-content: flex-start;
  gap: 34px;
}

.nav-inner a {
  padding: 15px 0;
  font-size: 12px;
}

.hero {
  min-height: 0;
  background: radial-gradient(circle at 68% 42%, rgba(19,168,223,.22), transparent 34%), linear-gradient(115deg, #060914 0%, #091421 48%, #0b2538 100%);
}

.hero:before {
  background-image: linear-gradient(135deg, transparent 49.45%, rgba(87,155,202,.10) 49.5% 50%, transparent 50.05% 100%);
  background-size: 220px 220px;
  opacity: .36;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(44px, 5vw, 72px);
  padding: clamp(42px, 3.3vw, 54px) 0 clamp(34px, 2.8vw, 46px);
  min-height: clamp(390px, 31vw, 470px);
}

.hero-grid .hero-copy,
.hero-grid .hero-visual {
  min-width: 0;
}

.hero h1 {
  max-width: 500px;
  font-size: clamp(38px, 3.05vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.hero h1 span {
  color: #13a8df;
}

.hero-text {
  max-width: 500px;
  margin: 20px 0 26px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.75);
}

.hero-actions {
  gap: 14px;
}

.hero .btn {
  min-height: 46px;
  border-radius: 10px;
  padding: 0 22px;
}

.hero .btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #16b7ff, #0878cf);
  box-shadow: 0 12px 26px rgba(19,168,223,.28);
}

.hero .btn-outline {
  color: #fff;
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.20);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 330px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 74%;
  height: 72%;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 58% 52%, rgba(19,168,223,.22), transparent 62%);
  filter: blur(24px);
  opacity: .9;
  z-index: -1;
}

.hero-visual img {
  width: min(760px, 52vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-right: -8px;
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.25));
  mix-blend-mode: screen;
  opacity: .96;
  -webkit-mask-image: radial-gradient(ellipse at 54% 54%, #000 0%, #000 62%, rgba(0,0,0,.72) 80%, transparent 100%);
  mask-image: radial-gradient(ellipse at 54% 54%, #000 0%, #000 62%, rgba(0,0,0,.72) 80%, transparent 100%);
}

.trust-band {
  background: linear-gradient(180deg, #050810, #070b14);
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 22px 0;
}

.trust-grid div {
  min-width: 0;
  padding-right: 22px;
  border-right: 1px solid rgba(19,168,223,.25);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  color: #13a8df;
  font-size: 12px;
  letter-spacing: .045em;
  margin-bottom: 4px;
}

.trust-grid span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.page-body {
  background: linear-gradient(180deg, #f6f7fa 0%, #fff 70%);
}

.section {
  padding: 34px 0;
}

.footer-contact-line {
  margin: 0 0 9px;
}

.footer-contact-line small {
  display: block;
  color: var(--bp-text-on-dark-mute);
  font-size: 11px;
  margin-bottom: 1px;
}

.footer-contact-line a,
.contact-card a.inline-link {
  color: var(--bp-blue-strong);
  font-weight: 800;
}

.contact-data-list {
  display: grid;
  gap: 10px;
}

.contact-data-list p {
  margin: 0;
}

@media (min-width: 1500px) {
  :root {
    --bp-layout-max: 1380px;
    --bp-layout-pad: 72px;
  }

  .search-form {
    max-width: 680px;
  }

  .hero-grid {
    grid-template-columns: 490px minmax(650px, 1fr);
    min-height: 500px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-visual img {
    width: min(820px, 52vw);
  }
}

@media (min-width: 1900px) {
  :root {
    --bp-layout-max: 1460px;
    --bp-layout-pad: 96px;
  }

  .hero-grid {
    grid-template-columns: 510px minmax(760px, 1fr);
    min-height: 520px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-visual img {
    width: min(880px, 50vw);
  }
}

@media (max-width: 1180px) {
  :root {
    --bp-layout-max: 1080px;
    --bp-layout-pad: 42px;
  }

  .header-top {
    gap: 18px;
  }

  .search-form {
    margin-left: 0;
    max-width: 520px;
  }

  .nav-inner {
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(340px, 450px) minmax(420px, 1fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 4vw, 50px);
  }

  .hero-visual img {
    width: min(650px, 50vw);
  }
}

@media (max-width: 980px) {
  :root {
    --bp-layout-max: 820px;
    --bp-layout-pad: 32px;
  }

  .header-top {
    flex-wrap: wrap;
  }

  .search-form {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
    padding: 36px 0 30px;
  }

  .hero h1,
  .hero-text {
    max-width: 640px;
  }

  .hero-visual {
    justify-content: center;
    min-height: 0;
  }

  .hero-visual img {
    width: min(720px, 100%);
    margin-right: 0;
    mix-blend-mode: screen;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --bp-layout-pad: 24px;
  }

  .brand img {
    width: 156px;
  }

  .quick-whatsapp .wa-copy {
    display: none;
  }

  .hero h1 {
    font-size: clamp(33px, 10.5vw, 43px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-grid div,
  .trust-grid div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(19,168,223,.18);
    padding: 0 0 14px;
  }

  .trust-grid div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
