/* ========================================================================
   BCX CORE CSS, consolidado de style.css + base + components + patterns
   Gerado automaticamente, NÃO editar este arquivo diretamente.
   Pra editar, modifique os fontes em assets/css/ e re-rode build.
   ======================================================================== */

/* ─── 1. style.css (variáveis CSS + theme info) ─── */
Requires at least: 6.5
Requires PHP: 8.1
Tested up to: 6.9
License:      Proprietary, uso exclusivo BCX Capital
*/

   BCX Theme, Design Tokens (paleta Guedes Miranda do mockup aprovado)
   ═══════════════════════════════════════════════════════════════════ */
:root {
  /* Paleta Guedes Miranda */
  --gm-blue: #37B7FF;
  --gm-blue-dark: #1A9AE0;
  --gm-blue-light: #D6F0FF;
  --gm-red: #DD3333;
  --gm-red-dark: #B72929;
  --gm-yellow: #FBC312;
  --gm-green: #26AB5B;
  --gm-green-dark: #1F8F49;
  --gm-green-light: #E8F5EC;

  /* Neutros */
  --gm-text: #232323;
  --gm-text-mid: #444444;
  --gm-text-soft: #777777;
  --gm-bg: #F4F4F4;
  --gm-surface: #FFFFFF;
  --gm-border: #E5E5E5;

  /* Shadows */
  --gm-shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --gm-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --gm-shadow-lg: 0 6px 24px rgba(0,0,0,0.12);

  /* Radius */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-sm: 4px;
  --radius-full: 100px;

  /* Tipografia */
  --bcx-font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --bcx-font-heading: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --bcx-font-size-base: 15px;
  --bcx-line-height-base: 1.55;

  /* Aliases bcx-* compatibilidade (apontam pros tokens Guedes) */
  --bcx-primary: var(--gm-blue);
  --bcx-primary-dark: var(--gm-blue-dark);
  --bcx-primary-light: var(--gm-blue-light);
  --bcx-secondary: var(--gm-yellow);
  --bcx-accent: var(--gm-green);
  --bcx-text: var(--gm-text);
  --bcx-text-mid: var(--gm-text-mid);
  --bcx-text-soft: var(--gm-text-soft);
  --bcx-border: var(--gm-border);
  --bcx-bg: var(--gm-bg);
  --bcx-bg-soft: var(--gm-surface);
  --bcx-success: var(--gm-green);
  --bcx-warning: var(--gm-yellow);
  --bcx-danger: var(--gm-red);
  --bcx-info: var(--gm-blue);
  --bcx-shadow-sm: var(--gm-shadow-sm);
  --bcx-shadow: var(--gm-shadow);
  --bcx-shadow-md: var(--gm-shadow);
  --bcx-shadow-lg: var(--gm-shadow-lg);
  --bcx-radius-sm: var(--radius-sm);
  --bcx-radius: var(--radius);
  --bcx-radius-md: var(--radius);
  --bcx-radius-lg: var(--radius-lg);
  --bcx-radius-xl: 16px;
  --bcx-radius-full: var(--radius-full);

  /* Escala tipográfica */
  --bcx-font-size-xs: 11px;
  --bcx-font-size-sm: 12.5px;
  --bcx-font-size-md: 13.5px;
  --bcx-font-size-lg: 15px;
  --bcx-font-size-xl: 18px;
  --bcx-font-size-2xl: 22px;
  --bcx-font-size-3xl: 28px;
  --bcx-font-size-4xl: 36px;
  --bcx-letter-spacing-heading: -0.2px;

  /* Spacing scale */
  --bcx-space-1: 4px;
  --bcx-space-2: 8px;
  --bcx-space-3: 12px;
  --bcx-space-4: 16px;
  --bcx-space-5: 20px;
  --bcx-space-6: 24px;
  --bcx-space-8: 32px;
  --bcx-space-10: 40px;
  --bcx-space-12: 48px;
  --bcx-space-16: 64px;
  --bcx-space-20: 80px;

  /* Layout */
  --bcx-container-max: 1280px;
  --bcx-container-padding: 24px;
  --bcx-header-height: 86px;
  --bcx-header-height-mobile: 60px;

  /* Transitions */
  --bcx-transition-fast: 150ms ease;
  --bcx-transition: 250ms ease;
  --bcx-transition-slow: 400ms ease;

  /* Z-index */
  --bcx-z-base: 1;
  --bcx-z-dropdown: 10;
  --bcx-z-sticky: 50;
  --bcx-z-modal: 100;
  --bcx-z-toast: 200;
}

/* ─── 2. base.css ─── */
/* ═══════════════════════════════════════════════════════════════════
   BCX Theme, base.css
   Reset minimalista + tipografia + utilitários
   Carregado depois do style.css (que tem as CSS variables)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reset moderno ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }
body {
  font-family: var(--bcx-font-body);
  font-size: var(--bcx-font-size-base);
  line-height: var(--bcx-line-height-base);
  color: var(--bcx-text);
  background: var(--bcx-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: var(--bcx-primary); text-decoration: none; transition: color var(--bcx-transition-fast); }
a:hover { color: var(--bcx-primary-dark); }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }

/* ─── Tipografia BCX ───────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--bcx-font-heading);
  font-weight: 800;
  color: var(--bcx-text);
  letter-spacing: var(--bcx-letter-spacing-heading);
  line-height: 1.25;
  margin-bottom: var(--bcx-space-3);
}
h1 { font-size: var(--bcx-font-size-3xl); }
h2 { font-size: var(--bcx-font-size-2xl); }
h3 { font-size: var(--bcx-font-size-xl); }
h4 { font-size: var(--bcx-font-size-lg); font-weight: 700; }
h5 { font-size: var(--bcx-font-size-md); font-weight: 700; }
h6 { font-size: var(--bcx-font-size-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

p { margin-bottom: var(--bcx-space-4); }
small { font-size: var(--bcx-font-size-sm); }
strong, b { font-weight: 700; }

ul, ol { margin: 0 0 var(--bcx-space-4) var(--bcx-space-5); }
li { margin-bottom: var(--bcx-space-1); }
hr { border: 0; border-top: 1px solid var(--bcx-border); margin: var(--bcx-space-6) 0; }

/* ─── Container BCX ────────────────────────────────────────────────── */
.bcx-container {
  width: 100%;
  max-width: var(--bcx-container-max);
  margin-inline: auto;
  padding-inline: var(--bcx-container-padding);
}
.bcx-container-tight { max-width: 800px; }
.bcx-container-wide { max-width: 1440px; }

/* ─── Layout helpers ───────────────────────────────────────────────── */
.bcx-stack > * + * { margin-top: var(--bcx-space-4); }
.bcx-stack-sm > * + * { margin-top: var(--bcx-space-2); }
.bcx-stack-lg > * + * { margin-top: var(--bcx-space-6); }
.bcx-row { display: flex; flex-wrap: wrap; gap: var(--bcx-space-4); }
.bcx-grid { display: grid; gap: var(--bcx-space-5); }
.bcx-grid-2 { grid-template-columns: repeat(2, 1fr); }
.bcx-grid-3 { grid-template-columns: repeat(3, 1fr); }
.bcx-grid-4 { grid-template-columns: repeat(4, 1fr); }
.bcx-grid-6 { grid-template-columns: repeat(6, 1fr); }
.bcx-flex { display: flex; gap: var(--bcx-space-3); align-items: center; }
.bcx-flex-col { display: flex; flex-direction: column; gap: var(--bcx-space-3); }
.bcx-flex-between { display: flex; justify-content: space-between; align-items: center; gap: var(--bcx-space-3); }

/* ─── Skip link (a11y) ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--bcx-text); color: #fff;
  padding: var(--bcx-space-3) var(--bcx-space-4);
  z-index: var(--bcx-z-toast);
}
.skip-link:focus { left: 0; top: 0; }

/* ─── Focus visible (a11y) ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--bcx-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── Utilitários de visibilidade ──────────────────────────────────── */
.bcx-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.bcx-hidden { display: none !important; }
.bcx-mobile-only { display: none; }
.bcx-desktop-only { display: block; }

/* ─── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bcx-grid-6 { grid-template-columns: repeat(4, 1fr); }
  .bcx-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root {
    --bcx-container-padding: 16px;
    --bcx-header-height: var(--bcx-header-height-mobile);
  }
  h1 { font-size: var(--bcx-font-size-2xl); }
  h2 { font-size: var(--bcx-font-size-xl); }
  h3 { font-size: var(--bcx-font-size-lg); }
  .bcx-grid-2, .bcx-grid-3, .bcx-grid-4, .bcx-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .bcx-mobile-only { display: block; }
  .bcx-desktop-only { display: none; }
}
@media (max-width: 480px) {
  .bcx-grid-2, .bcx-grid-3 { grid-template-columns: 1fr; }
}

/* ─── Print ────────────────────────────────────────────────────────── */
@media print {
  .bcx-no-print { display: none !important; }
  body { background: #fff; color: #000; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.85em; }
}

/* ─── Prefers reduced motion (a11y) ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── 3. components.css ─── */
/* ═══════════════════════════════════════════════════════════════════
   BCX Theme, components.css (v1.2 padrão Guedes mockup aprovado)
   Topbar + Header + Pix-strip + Breadcrumb + Footer-pre + Footer +
   Botões + Badges + Mobile menu + WhatsApp FAB
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Helpers ──────────────────────────────────────────────────────── */
.ico { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.ico-inline { display: inline-flex; align-items: center; gap: 6px; }
svg { display: inline-block; vertical-align: middle; }
.tb-mobile { display: none; }
.tb-desktop { display: inline-flex; }

/* ═══════════════════════════════════════════════════════════════════
   TOPBAR azul
   ═══════════════════════════════════════════════════════════════════ */
.topbar {
  background: var(--gm-blue);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
  font-weight: 600;
}
.topbar-inner {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.topbar a:hover { opacity: 0.85; }
.tb-login {
  background: rgba(255,255,255,0.18);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}
.tb-wa {
  background: var(--gm-green);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
}
.tb-wa:hover { background: var(--gm-green-dark); }

/* ═══════════════════════════════════════════════════════════════════
   HEADER branco sticky
   ═══════════════════════════════════════════════════════════════════ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--gm-border);
  position: sticky;
  top: 0;
  z-index: var(--bcx-z-sticky);
  box-shadow: var(--gm-shadow-sm);
}
.header-inner {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 28px;
  align-items: center;
}
.logo { display: inline-block; }
.logo img { height: 54px; display: block; max-width: 100%; }
.bcx-logo-text {
  font-family: var(--bcx-font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--gm-blue);
  letter-spacing: -0.5px;
}
form.search {
  display: flex;
  border: 1.5px solid var(--gm-text);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
form.search input {
  flex: 1;
  padding: 11px 16px;
  border: 0;
  font-size: 13.5px;
  font-family: inherit;
  background: transparent;
  width: 100%;
  min-width: 0;
}
form.search input:focus { outline: none; }
form.search button {
  background: var(--gm-blue);
  color: #fff;
  border: 0;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
form.search button:hover { background: var(--gm-blue-dark); }
.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.ha-login {
  background: var(--gm-text);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  text-decoration: none;
}
.ha-login:hover { background: #000; }
.ha-social {
  display: flex; gap: 10px;
  color: var(--gm-blue);
  align-items: center;
}
.ha-social a {
  display: flex; align-items: center;
  color: inherit;
  transition: color 0.2s;
}
.ha-social a:hover { color: var(--gm-blue-dark); }
.ha-cart {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gm-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
  color: var(--gm-text) !important;
  text-decoration: none;
}
.ha-cart:hover { background: var(--gm-bg); }
.ha-cart-badge, .cart-float-badge, .bcx-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gm-red);
  color: #fff !important;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: var(--radius-full);
  min-width: 14px;
  text-align: center;
  line-height: 1.4;
}
.bcx-cart-count[data-count="0"] { display: none; }
.bcx-menu-toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--gm-text);
}

/* ═══════════════════════════════════════════════════════════════════
   PIX STRIP preta
   ═══════════════════════════════════════════════════════════════════ */
.pix-strip {
  background: var(--gm-text);
  color: #fff;
  padding: 12px 0;
}
.pix-strip-inner {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.pix-pig {
  width: 36px; height: 36px;
  background: var(--gm-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pix-text {
  font-size: 13.5px;
  line-height: 1.4;
}
.pix-text strong {
  color: var(--gm-green-light);
  font-weight: 800;
  font-size: 17px;
}

/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════════════ */
.breadcrumb-wrap { background: #fff; border-bottom: 1px solid var(--gm-border); }
.breadcrumb {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  color: var(--gm-text-soft);
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--gm-blue); }
.breadcrumb .sep, .breadcrumb .delimiter { margin: 0 6px; opacity: 0.5; }
.breadcrumb .current { color: var(--gm-text); font-weight: 700; }

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS BCX (compatibilidade)
   ═══════════════════════════════════════════════════════════════════ */
.bcx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--bcx-space-2);
  padding: 11px 22px;
  font-family: var(--bcx-font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.bcx-btn-primary { background: var(--gm-blue); color: #fff !important; }
.bcx-btn-primary:hover { background: var(--gm-blue-dark); color: #fff !important; }
.bcx-btn-ghost {
  background: transparent; color: var(--gm-text) !important; border-color: var(--gm-border);
  text-transform: none; letter-spacing: 0;
}
.bcx-btn-ghost:hover { background: var(--gm-bg); border-color: var(--gm-text-soft); }
.bcx-btn-success { background: var(--gm-green); color: #fff !important; }
.bcx-btn-success:hover { background: var(--gm-green-dark); color: #fff !important; }
.bcx-btn-lg { font-size: 14px; padding: 14px 28px; }
.bcx-btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   BADGES BCX
   ═══════════════════════════════════════════════════════════════════ */
.bcx-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 800;
  border-radius: var(--radius-full);
  line-height: 1;
  letter-spacing: 0.3px;
}
.bcx-badge-sale { background: var(--gm-green); color: #fff; }
.bcx-badge-info { background: var(--gm-blue); color: #fff; }
.bcx-badge-soft { background: var(--gm-blue-light); color: var(--gm-blue-dark); }
.bcx-badge-out  { background: var(--gm-text-soft); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER PRE azul, 4 trust badges
   ═══════════════════════════════════════════════════════════════════ */
.footer-pre {
  background: var(--gm-blue);
  color: #fff;
  padding: 28px 0;
}
.footer-pre-inner {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.footer-pre-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-pre-item .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.footer-pre-item .txt { text-align: left; font-size: 12.5px; line-height: 1.3; }
.footer-pre-item .txt strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER preto, 4 colunas + h4 amarelo
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--gm-text);
  color: #fff;
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--gm-yellow);
  font-family: inherit;
}
.footer p, .footer li, .footer a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  text-decoration: none;
}
.footer a:hover { color: var(--gm-yellow); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-bottom p { font-size: 12px; color: inherit; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════
   CART FLOAT (desktop fallback) + Sticky CTA mobile
   ═══════════════════════════════════════════════════════════════════ */
.cart-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: var(--gm-text);
  color: #fff !important;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--gm-shadow-lg);
  z-index: 40;
  text-decoration: none;
}
.cart-float .cart-float-badge { top: 6px; right: 6px; font-size: 10px; padding: 2px 6px; min-width: 18px; }

/* WhatsApp FAB do bcx-theme antigo, agora desabilitado em favor da topbar */
.bcx-whatsapp-fab { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE MENU off-canvas
   ═══════════════════════════════════════════════════════════════════ */
.bcx-mobile-menu {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--bcx-z-modal);
}
.bcx-mobile-menu[hidden] { display: none; }
.bcx-mobile-menu-inner {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 88%; max-width: 380px;
  background: #fff;
  padding: 20px;
  overflow-y: auto;
}
.bcx-mobile-menu-close {
  position: absolute; top: 6px; right: 14px;
  font-size: 36px; line-height: 1; color: var(--gm-text);
  background: transparent; border: 0; cursor: pointer;
}
.bcx-mobile-menu-section-title {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gm-blue);
  margin-top: 24px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gm-blue);
}
.bcx-mobile-menu-section-title:first-of-type { margin-top: 28px; }
.bcx-mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.bcx-mobile-menu-list li { border-bottom: 1px solid var(--gm-border); }
.bcx-mobile-menu-list a {
  display: block; padding: 12px 0;
  color: var(--gm-text); font-weight: 600; text-decoration: none;
  font-size: 14px;
}
.bcx-mobile-menu-list a:hover { color: var(--gm-blue); }
.bcx-mobile-menu-whats {
  margin-top: 24px !important;
  background: var(--gm-green) !important;
  color: #fff !important;
}
.bcx-mobile-menu-whats:hover { background: var(--gm-green-dark) !important; }

/* ═══════════════════════════════════════════════════════════════════
   CONTAINER + LAYOUT helpers (compatibilidade bcx-*)
   ═══════════════════════════════════════════════════════════════════ */
.bcx-container {
  width: 100%;
  max-width: var(--bcx-container-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.bcx-container-tight { max-width: 800px; }
.bcx-container-wide  { max-width: 1440px; }
.bcx-text-center { text-align: center; }

/* Skip link a11y */
.skip-link {
  position: absolute; left: -9999px;
  background: var(--gm-text); color: #fff;
  padding: 12px 16px;
  z-index: var(--bcx-z-toast);
}
.skip-link:focus { left: 0; top: 0; }
:focus-visible {
  outline: 2px solid var(--gm-blue);
  outline-offset: 2px;
  border-radius: 2px;
}
.bcx-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.bcx-hidden { display: none !important; }
.bcx-mobile-only { display: none; }
.bcx-desktop-only { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   404 page
   ═══════════════════════════════════════════════════════════════════ */
.bcx-404 { padding: 80px 0; text-align: center; }
.bcx-404-icon {
  font-size: 96px; font-weight: 900; line-height: 1;
  color: var(--gm-blue); margin-bottom: 16px;
}
.bcx-404-actions {
  display: flex; justify-content: center; gap: 12px;
  margin: 24px 0;
}
.bcx-404-search { margin-top: 32px; }

/* ═══════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════ */
.bcx-pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px;
}
.bcx-pagination .page-numbers, .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  padding: 8px 14px;
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--gm-text);
  font-weight: 600;
  background: #fff;
}
.bcx-pagination .page-numbers.current, .woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gm-blue); color: #fff; border-color: var(--gm-blue);
}
.bcx-pagination .page-numbers:hover:not(.current), .woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--gm-blue-light); border-color: var(--gm-blue);
}

/* ═══════════════════════════════════════════════════════════════════
   CONSENT BANNER LGPD
   ═══════════════════════════════════════════════════════════════════ */
.bcx-consent-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 720px; margin: 0 auto;
  background: var(--gm-text); color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--gm-shadow-lg);
  z-index: var(--bcx-z-toast);
  font-size: 13px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.bcx-consent-text { flex: 1 1 280px; }
.bcx-consent-text a { color: var(--gm-blue-light); text-decoration: underline; }
.bcx-consent-actions { display: flex; gap: 8px; }

/* ═══════════════════════════════════════════════════════════════════
   MOBILE responsive
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-pre-inner { grid-template-columns: repeat(2, 1fr); }
  .header-inner { grid-template-columns: 200px 1fr 280px; gap: 20px; }
}
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr; gap: 12px; }
  .header-actions { justify-content: flex-end; }
  /* Atenção: WP adiciona body.search em is_search(); precisa escopar dentro
     do header pra não esconder/reordenar a página inteira (calderon 17/05/2026). */
  .header-inner .search,
  .site-header .search { order: 3; }
}
@media (max-width: 768px) {
  .topbar { font-size: 11.5px; }
  .topbar-left { gap: 12px; }
  .tb-mobile { display: inline-flex; }
  .tb-desktop { display: none !important; }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 16px;
  }
  .logo img { height: 40px; }
  .bcx-logo-text { font-size: 18px; }
  /* Escopa pro form de busca do header. .search sozinho casava body.search
     (WP em is_search) e escondia a página inteira de resultados de busca
     (calderon 17/05/2026, bug task #278). */
  .header-inner .search,
  .site-header .search { display: none; }
  .header-actions { gap: 8px; }
  .ha-login, .ha-social { display: none; }

  .pix-strip { padding: 8px 0; }
  .pix-pig { width: 28px; height: 28px; }
  .pix-text { font-size: 12px; }
  .pix-text strong { font-size: 14px; }

  .breadcrumb { padding: 8px 16px; font-size: 11px; }

  .footer-pre { padding: 20px 0; }
  .footer-pre-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-pre-item { gap: 10px; justify-content: flex-start; }
  .footer-pre-item .icon { width: 36px; height: 36px; }

  .footer { padding: 32px 0 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding-top: 16px; }

  .cart-float { display: flex; }

  .bcx-mobile-only { display: block; }
  .bcx-desktop-only { display: none; }
}
@media (max-width: 480px) {
  .footer-pre-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { padding: 0 16px; }
  .pix-strip-inner { padding: 0 16px; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════════════ */
@media print {
  .topbar, .pix-strip, .footer-pre, .footer, .cart-float, .bcx-mobile-menu, .bcx-consent-banner { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ═══════════════════════════════════════════════════════════════════
   Reduced motion
   ═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── 4. patterns.css ─── */
/* ═══════════════════════════════════════════════════════════════════
   BCX Theme, patterns.css (v1.2 padrão Guedes)
   FAQ accordion, banner CTA, hero default, banner 42 anos.
   Trust strip movido pro footer-pre (components.css).
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Section padrão ─────────────────────────────────────────────── */
.bcx-section {
  padding: 56px 0;
}
.bcx-section-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 720px;
  margin-inline: auto;
}
.bcx-section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--gm-text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.bcx-section-sub {
  color: var(--gm-text-mid);
  font-size: 15px;
  line-height: 1.5;
}
.bcx-section-cta {
  text-align: center;
  margin-top: 32px;
}

/* ─── HERO Guedes (front-page) ─────────────────────────────────── */
.bcx-hero-guedes {
  background: linear-gradient(135deg, var(--gm-blue-light) 0%, #fff 65%);
  padding: 64px 0;
  border-bottom: 1px solid var(--gm-border);
}
.bcx-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.bcx-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gm-blue-dark);
  background: rgba(55,183,255,0.12);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.bcx-hero-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--gm-text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.bcx-hero-title strong { color: var(--gm-blue); }
.bcx-hero-sub {
  font-size: 16px;
  color: var(--gm-text-mid);
  margin-bottom: 24px;
  max-width: 560px;
  line-height: 1.55;
}
.bcx-hero-actions {
  display: flex; gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bcx-hero-bullets {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 16px;
}
.bcx-hero-bullets li {
  font-size: 13px;
  color: var(--gm-text-mid);
  font-weight: 600;
}
.bcx-hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.bcx-hero-badge {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gm-blue), var(--gm-blue-dark));
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 20px 50px rgba(55,183,255,0.32);
  text-align: center;
  border: 8px solid #fff;
  outline: 1px solid var(--gm-border);
}
.bcx-hero-badge-num {
  font-size: 100px; font-weight: 900; line-height: 1;
  letter-spacing: -4px;
  color: var(--gm-yellow);
}
.bcx-hero-badge-txt {
  font-size: 14px; font-weight: 800; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ─── Veículos grid ─────────────────────────────────────────────── */
.bcx-section-veiculos { background: #fff; }
.bcx-veiculos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bcx-veiculo-card {
  display: block;
  background: var(--gm-bg);
  border: 1px solid var(--gm-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--gm-text);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.bcx-veiculo-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gm-shadow);
  border-color: var(--gm-blue);
  color: var(--gm-text);
}
.bcx-veiculo-thumb {
  width: 100%; aspect-ratio: 4/3;
  background: #fff;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: var(--gm-text-soft);
  border-bottom: 1px solid var(--gm-border);
}
.bcx-veiculo-body {
  padding: 12px 16px;
  text-align: center;
}
.bcx-veiculo-nome {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--gm-text);
}
.bcx-veiculo-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  color: var(--gm-text-soft);
  margin-top: 4px;
}
.bcx-veiculo-anos { font-weight: 700; color: var(--gm-blue); }

/* ─── Banner 42 anos ────────────────────────────────────────────── */
.bcx-banner-42 {
  background: var(--gm-text);
  color: #fff;
  padding: 56px 0;
  margin: 56px 0;
}
.bcx-banner-42-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--bcx-container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.bcx-banner-42-num { text-align: center; }
.bcx-banner-42-num span {
  font-size: 130px; font-weight: 900; line-height: 0.9;
  color: var(--gm-yellow);
  display: block;
  letter-spacing: -6px;
}
.bcx-banner-42-num small {
  display: block;
  font-size: 16px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gm-blue-light);
  margin-top: 8px;
}
.bcx-banner-42-content h2 { color: #fff; font-size: 24px; margin-bottom: 12px; font-weight: 800; }
.bcx-banner-42-content p { color: rgba(255,255,255,0.78); margin-bottom: 16px; font-size: 14px; line-height: 1.65; }

/* ─── Banner CTA WhatsApp ──────────────────────────────────────── */
.bcx-banner-cta {
  background: linear-gradient(135deg, var(--gm-blue), var(--gm-blue-dark));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.bcx-banner-cta h2 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.bcx-banner-cta p { color: rgba(255,255,255,0.9); margin-bottom: 20px; font-size: 15px; }
.bcx-banner-cta .bcx-btn-primary {
  background: #fff; color: var(--gm-text) !important;
}
.bcx-banner-cta .bcx-btn-primary:hover { background: var(--gm-yellow); color: var(--gm-text) !important; }

/* ─── FAQ accordion (block pattern) ────────────────────────────── */
.bcx-faq-section { background: #fff; }
.bcx-pattern-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 800;
  color: var(--gm-text);
}
.bcx-faq-list { display: flex; flex-direction: column; gap: 8px; }
.bcx-faq-item {
  border: 1px solid var(--gm-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.bcx-faq-q {
  width: 100%; text-align: left;
  padding: 16px 20px;
  background: #fff;
  border: 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--gm-text);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.bcx-faq-q:hover { background: var(--gm-bg); }
.bcx-faq-arrow { transition: transform 0.2s; color: var(--gm-blue); font-weight: 900; }
.bcx-faq-item.open .bcx-faq-arrow { transform: rotate(180deg); }
.bcx-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-inline: 20px;
  color: var(--gm-text-mid);
  font-size: 14px;
  line-height: 1.65;
}
.bcx-faq-item.open .bcx-faq-a {
  max-height: 500px;
  padding-block: 0 20px;
}

/* ─── Mobile ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bcx-veiculos-grid { grid-template-columns: repeat(3, 1fr); }
  .bcx-hero-title { font-size: 34px; }
}
@media (max-width: 768px) {
  .bcx-section { padding: 40px 0; }
  .bcx-hero-guedes { padding: 40px 0; }
  .bcx-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .bcx-hero-visual { order: -1; }
  .bcx-hero-badge { width: 180px; height: 180px; }
  .bcx-hero-badge-num { font-size: 70px; }
  .bcx-hero-title { font-size: 28px; }
  .bcx-hero-sub { font-size: 14px; }
  .bcx-section-title { font-size: 22px; }
  .bcx-veiculos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bcx-banner-42 { padding: 40px 0; margin: 40px 0; }
  .bcx-banner-42-grid { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .bcx-banner-42-num span { font-size: 90px; }
  .bcx-banner-42-content h2 { font-size: 20px; }
  .bcx-banner-cta { padding: 32px 0; }
  .bcx-banner-cta h2 { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════
   GUEDES E MIRANDA, header + footer réplica produção (v1.3)
   ════════════════════════════════════════════════════════════════ */
.gm-topbar { background: #5BB0E5; color: #000; font-family: 'Nunito Sans', sans-serif; }
.gm-topbar-inner { max-width: 1280px; margin: 0 auto; padding: 8px 20px; display: flex; align-items: center; gap: 18px; min-height: 56px; }
.gm-logo { flex: 0 0 auto; line-height: 0; }
.gm-logo img, .gm-logo .custom-logo { height: 38px; width: auto; display: block; }
.gm-nav { display: flex; align-items: center; gap: 22px; flex: 1 1 auto; }
.gm-nav a { color: #000; font-weight: 600; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; }
.gm-nav a:hover { opacity: 0.7; }
.gm-login { background: #000; color: #fff; padding: 9px 18px; border-radius: 22px; font-weight: 700; font-size: 12.5px; text-transform: uppercase; text-decoration: none; letter-spacing: 0.3px; white-space: nowrap; }
.gm-login:hover { background: #222; color: #fff; }
.gm-socials { display: flex; align-items: center; gap: 10px; }
.gm-socials a, .gm-cart { color: #000; display: inline-flex; align-items: center; justify-content: center; }
.gm-socials a:hover, .gm-cart:hover { opacity: 0.7; }
.gm-cart { position: relative; }
.gm-cart-badge { position: absolute; top: -6px; right: -8px; background: #ff4444; color: #fff; font-size: 11px; font-weight: 700; border-radius: 50%; min-width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }
.gm-whatsapp-btn { background: #1FAE5A; color: #fff; padding: 10px 18px; border-radius: 30px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }
.gm-whatsapp-btn:hover { background: #199548; color: #fff; }
.gm-menu-toggle { display: none; background: transparent; border: 0; color: #000; padding: 6px; cursor: pointer; }

.gm-search-bar { background: #000; padding: 0; margin: 0; line-height: 0; }

/* Tira outline azul/roxo do browser nos clicks de logo, ícones e links do header.
   Mantém :focus-visible (navegação por teclado) pra acessibilidade. */
.gm-logo:focus, .gm-logo img:focus,
.gm-topbar a:focus, .gm-topbar button:focus,
.gm-search-bar a:focus, .gm-search-bar button:focus { outline: none; }
.gm-logo:focus-visible, .gm-topbar a:focus-visible, .gm-topbar button:focus-visible,
.gm-search-bar a:focus-visible, .gm-search-bar button:focus-visible {
  outline: 2px solid var(--bcx-primary, #37B7FF); outline-offset: 2px; border-radius: 3px;
}

/* ─── Search Autocomplete Dropdown (typeahead) ─── */
.bcx-search-dropdown {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
  z-index: 999; max-height: 480px; overflow-y: auto;
  line-height: normal;
}
.bcx-sa-list { list-style: none; margin: 0; padding: 4px 0; }
.bcx-sa-item a {
  display: flex; gap: 12px; padding: 10px 14px;
  color: #0F172A; text-decoration: none; align-items: center;
  transition: background 0.1s;
}
.bcx-sa-item:hover a,
.bcx-sa-item.is-selected a { background: #F1F5F9; }
.bcx-sa-thumb {
  flex: 0 0 56px; width: 56px; height: 56px;
  background: #F8FAFC; border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bcx-sa-thumb img { width: 100%; height: 100%; object-fit: contain; }
.bcx-sa-info { flex: 1; min-width: 0; }
.bcx-sa-title { font-size: 13px; font-weight: 600; line-height: 1.3; color: #0F172A; }
.bcx-sa-title mark { background: #DEF1FE; color: var(--bcx-primary-deep, #0F5E94); padding: 0 2px; border-radius: 2px; font-weight: 800; }
.bcx-sa-sku { font-size: 10.5px; color: #94A3B8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
.bcx-sa-price { font-size: 13px; font-weight: 800; color: #0F172A; margin-top: 3px; }
.bcx-sa-price del { color: #94A3B8; font-weight: 400; margin-right: 4px; font-size: 11px; }
.bcx-sa-badge-oos {
  display: inline-block; margin-top: 4px;
  background: #E2E8F0; color: #475569;
  font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px;
  padding: 2px 6px; border-radius: 4px;
}
.bcx-sa-item.is-oos .bcx-sa-thumb img { opacity: 0.6; }
.bcx-sa-loading, .bcx-sa-empty {
  padding: 16px 14px; font-size: 13px; color: #475569; text-align: center;
}
.bcx-sa-seeall {
  display: block; padding: 12px 14px; border-top: 1px solid #E2E8F0;
  background: #F8FAFC; color: #0F5E94; font-size: 12.5px; font-weight: 800;
  text-decoration: none; text-align: center;
}
.bcx-sa-seeall:hover { background: #DEF1FE; }
@media (max-width: 768px) {
  .bcx-search-dropdown { max-height: 360px; }
  .bcx-sa-thumb { flex: 0 0 44px; width: 44px; height: 44px; }
  .bcx-sa-title { font-size: 12.5px; }
}
.gm-search-inner { max-width: 1280px; margin: 0 auto; padding: 7px 20px; display: flex; align-items: center; gap: 14px; line-height: normal; flex-wrap: wrap; justify-content: center; }

/* Vehicle filter */
.gm-vehicle-form { display: flex; gap: 4px; margin: 0; flex: 0 0 auto; }
.gm-vehicle-form select { height: 30px; border: 0; padding: 0 22px 0 10px; font-size: 12px; background: #fff url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center; -webkit-appearance: none; appearance: none; border-radius: 3px; color: #111; font-family: inherit; cursor: pointer; min-width: 100px; }
.gm-vehicle-form select:hover { background-color: #f5f5f5; }
.gm-vehicle-btn { height: 30px; min-width: 36px; padding: 0 10px; background: #5BB0E5; color: #fff; border: 0; border-radius: 3px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.gm-vehicle-btn:hover { background: #4ba0d5; }

/* Busca */
.gm-search-form { flex: 1 1 360px; max-width: 480px; display: flex; border-radius: 4px; overflow: hidden; background: #fff; height: 30px; margin: 0 !important; }
.gm-search-form input { flex: 1 1 auto; border: 0; padding: 0 12px; font-size: 13px; outline: 0; background: #fff; color: #111; font-family: inherit; line-height: 30px; height: 30px; }
.gm-search-form button { background: #5BB0E5; color: #fff; border: 0; padding: 0 18px; font-weight: 800; font-size: 12px; letter-spacing: 0.5px; cursor: pointer; height: 30px; white-space: nowrap; }
.gm-search-form button:hover { background: #4ba0d5; }

/* Pix box */
.gm-pix-box { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; height: 30px; }
.gm-pix-box svg { color: #5BB0E5 !important; stroke: #5BB0E5 !important; width: 24px !important; height: 24px !important; }
.gm-pix-box svg circle { fill: #5BB0E5 !important; }
.gm-pix-text strong { display: block; color: #5BB0E5; font-weight: 800; font-size: 13px; line-height: 1.1; margin: 0; }
.gm-pix-text span { display: block; color: #fff; font-size: 11px; font-weight: 500; line-height: 1.1; margin: 1px 0 0; }
.bcx-page, .bcx-front-page, .bcx-main { margin-top: 0 !important; padding-top: 0 !important; }
.gm-search-bar + .bcx-page, .gm-search-bar + main, .gm-search-bar + #bcx-page { margin-top: 0; }

/* Mobile: vehicle + busca cada um em sua linha */
@media (max-width: 1100px) {
  .gm-search-inner { gap: 8px; padding: 8px 16px; }
  .gm-pix-box { flex: 1 1 100%; justify-content: center; }
  .gm-vehicle-form select { min-width: 88px; }
}
@media (max-width: 680px) {
  .gm-vehicle-form { flex: 1 1 100%; }
  .gm-vehicle-form select { flex: 1 1 auto; min-width: 0; }
  .gm-search-form { flex: 1 1 100%; max-width: none; }
}

.gm-benefits { background: #5BB0E5; color: #fff; padding: 20px 0; }
.gm-benefits-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gm-benefit { display: flex; align-items: center; gap: 14px; color: #fff; }
.gm-benefit-ico { flex: 0 0 auto; color: #fff; }
.gm-benefit strong { display: block; font-weight: 800; font-size: 16px; line-height: 1.2; }
.gm-benefit span { display: block; font-size: 13px; font-weight: 500; line-height: 1.3; }
.gm-benefit-link { display: inline-block; color: #fff; font-size: 12px; text-decoration: underline; margin-top: 4px; }

.gm-footer { background: #232323; color: #fff; padding: 50px 0 30px; font-family: 'Nunito Sans', sans-serif; }
.gm-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 48px; }
.gm-footer h3 { color: #fff; font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.gm-footer p { font-size: 14px; line-height: 1.6; margin: 0 0 12px; color: #d4d4d4; }
.gm-footer-brand p strong { color: #fff; }
.gm-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.gm-footer-social a { width: 38px; height: 38px; border-radius: 50%; background: #3a3a3a; display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background 0.15s; }
.gm-footer-social a:hover { background: #5BB0E5; }
.gm-footer-loja { text-align: center; }
.gm-footer-loja h3 { text-align: center; }
.gm-footer-loja-label { font-weight: 700; color: #fff; margin-top: 14px; }
.gm-footer-endereco { color: #5BB0E5; font-weight: 700; }
.gm-footer-conv { font-size: 13px; font-weight: 600; color: #fff; }
.gm-footer-btn { display: inline-block; background: #5BB0E5; color: #fff; padding: 10px 22px; border-radius: 22px; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; margin: 8px 0 18px; }
.gm-footer-btn:hover { background: #4ba0d5; color: #fff; }
.gm-footer-horario { font-size: 14px; color: #fff; margin: 12px 0; }
.gm-footer-selos { display: flex; justify-content: center; gap: 18px; margin-top: 18px; }
.gm-footer-selos img { height: 60px; width: auto; }
.gm-footer-phones { list-style: none; padding: 0; margin: 0 0 24px; }
.gm-footer-phones li { color: #fff; font-size: 16px; font-weight: 600; padding: 4px 0; }
.gm-footer-links { list-style: none; padding: 0; margin: 0 0 24px; }
.gm-footer-links a { color: #d4d4d4; font-size: 14px; text-decoration: none; padding: 4px 0; display: block; }
.gm-footer-links a:hover { color: #5BB0E5; }
.gm-footer-copy { font-size: 13px; color: #fff; margin: 16px 0 4px; }
.gm-footer-cnpj { font-size: 13px; color: #fff; margin: 4px 0; }

.gm-footer-bottom { background: #f0f0f0; padding: 18px 0; }
.gm-footer-bottom-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gm-footer-camp { display: flex; align-items: center; gap: 12px; }
.gm-footer-camp img { height: 40px; width: auto; }
.gm-footer-camp span { font-size: 14px; color: #444; }
.gm-footer-pay img { max-height: 28px; width: auto; }

@media (max-width: 1100px) {
  .gm-topbar-inner { flex-wrap: wrap; gap: 12px; }
  .gm-nav { order: 5; width: 100%; justify-content: center; }
  .gm-benefits-inner { grid-template-columns: repeat(2, 1fr); }
  .gm-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gm-footer-loja { text-align: left; }
  .gm-footer-loja h3, .gm-footer-selos { text-align: left; justify-content: flex-start; }
}
@media (max-width: 680px) {
  /* topbar mobile já gerenciado pelo grid lá no final do arquivo (logo|WA|cart|hamb) */
  .gm-topbar-inner { padding: 8px 12px; }
  .gm-nav { display: none; }
  .gm-menu-toggle { display: inline-flex; }

  /* Tarja benefícios em 4 colunas compactas no mobile (calderon 17/05/2026) */
  .gm-benefits { padding: 12px 0; }
  .gm-benefits-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 8px;
  }
  .gm-benefit {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
  .gm-benefit-ico { width: 26px; height: 26px; }
  .gm-benefit strong { font-size: 10px; line-height: 1.15; }
  .gm-benefit span { font-size: 9px; line-height: 1.15; }
  .gm-benefit-link { font-size: 9px; margin-top: 2px; }

  .gm-footer-bottom-inner { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Topbar fixo (calderon 16/05/2026) — só primeira linha sticky.
   .gm-topbar fixo, .gm-search-bar rola junto com o conteúdo.
   No checkout/cart já tem .bcx-checkout-header próprio sticky.
   ═══════════════════════════════════════════════════════════════════ */
body:not(.bcx-checkout-mode) .gm-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Ícone usuário só aparece em mobile (desktop já tem "Olá, faça seu login" texto) */
.gm-user-icon { display: none; }

/* Mobile, réplica da produção (calderon 17/05/2026 v3): LOGO esq | hamb | user | cart | WA quadrado verde grande.
   Padding e altura idênticos ao .bcx-checkout-header (cart) pra logo alinhar sem gap. */
@media (max-width: 680px) {
  .gm-topbar-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto auto auto auto;
    align-items: stretch;
    gap: 4px;
    padding: 0 !important;
    padding-left: 16px !important;
    min-height: 56px;
  }
  .gm-logo { order: 1; grid-column: 1; justify-self: start; align-self: center; padding: 6px 0; }
  .gm-logo img { max-height: 48px; width: auto; display: block; }
  .gm-nav { display: none !important; }
  .gm-login { display: none !important; }     /* texto "Olá faça seu login" só desktop */

  /* spacer invisivel ocupa o 1fr */
  .gm-topbar-inner::before { content: ''; grid-column: 2; }

  .gm-menu-toggle {
    order: 2; grid-column: 3;
    display: inline-flex;
    width: 44px; height: 44px;
    padding: 0; align-items: center; justify-content: center;
    color: #000;
  }
  .gm-user-icon {
    order: 3; grid-column: 4;
    display: inline-flex !important;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: #000; text-decoration: none;
  }
  .gm-socials {
    order: 4; grid-column: 5;
    display: flex !important;
    gap: 0;
  }
  .gm-socials a:not(.gm-cart) { display: none !important; }
  .gm-cart {
    display: inline-flex !important;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    color: #000;
    position: relative;
  }

  /* WhatsApp QUADRADO verde grande, ocupa altura inteira do topbar (igual produção) */
  .gm-whatsapp-btn {
    display: inline-flex !important;
    order: 5; grid-column: 6;
    padding: 0 !important;
    width: 56px; height: 56px;
    border-radius: 0 !important;
    background: #25D366 !important;
    color: #fff !important;
    align-items: center; justify-content: center;
    font-size: 0;
    overflow: hidden;
    margin: 0;
  }
  .gm-whatsapp-btn svg { width: 28px; height: 28px; }
  /* Barra preta: busca + PIX em 2 colunas no mobile */
  body:not(.bcx-checkout-mode) .gm-search-inner {
    grid-template-columns: 1fr auto;
    display: grid !important;
    gap: 10px;
    padding: 8px 12px;
  }
  body:not(.bcx-checkout-mode) .gm-search-form {
    grid-column: 1;
    flex: 1 1 auto;
    max-width: 100%;
  }
  body:not(.bcx-checkout-mode) .gm-pix-box {
    grid-column: 2;
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
    padding-left: 4px;
    border-left: 1px solid rgba(255,255,255,0.12);
  }
}

/* Na HOME e na CATEGORIA: esconder o vehicle selector do header.
   Home: vive abaixo do banner agora.
   Categoria: redundante já que /categoria-produto/[modelo]/ já filtra por modelo.
   (calderon 17/05/2026) */
body.bcx-is-front .gm-vehicle-form,
body.tax-product_cat .gm-vehicle-form,
body.archive.woocommerce .gm-vehicle-form { display: none !important; }
@media (max-width: 680px) {
  body.bcx-is-front .gm-search-inner,
  body.tax-product_cat .gm-search-inner { padding-top: 8px; padding-bottom: 8px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Home: vehicle selector abaixo do hero (calderon 17/05/2026)
   ═══════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════
   HERO CAROUSEL — padrão Mercado Livre/Magalu (calderon 17/05/2026)
   3 slides rotativos. Gradientes + SVG decorativos (placeholders até
   admin substituir por imagens reais via customizer).
   ═══════════════════════════════════════════════════════════════════ */
.bcx-hero-carousel {
  position: relative;
  max-width: 1280px;
  margin: 16px auto 20px;
  border-radius: 16px;
  overflow: hidden;
  height: 360px;
  background: #0F172A;
}
.bcx-hero-track {
  position: relative;
  height: 100%;
}
.bcx-hero-slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  overflow: hidden;
}
.bcx-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.bcx-hero-slide[hidden] { display: grid; }

/* Backgrounds por slide */
.bcx-hero-slide-pix   { background: linear-gradient(135deg, #047857 0%, #064E3B 100%); }
.bcx-hero-slide-fusca { background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%); }
.bcx-hero-slide-trust { background: linear-gradient(135deg, #B45309 0%, #78350F 100%); }

.bcx-hero-bg {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
}
.bcx-hero-deco {
  position: absolute;
  right: -40px; bottom: -40px;
  width: 380px; height: 380px;
  opacity: 0.55;
}
.bcx-hero-slide-fusca .bcx-hero-deco {
  right: 30px; bottom: 50px;
  width: 460px; height: 200px;
}
.bcx-hero-slide-trust .bcx-hero-deco {
  right: 40px; top: 50%; bottom: auto;
  transform: translateY(-50%);
  width: 260px; height: 260px;
}

.bcx-hero-content {
  position: relative; z-index: 2;
  padding: 40px 48px;
  color: #fff;
  display: flex; flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.bcx-hero-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 900; letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(4px);
}
.bcx-hero-tag-pix    { background: #10B981; }
.bcx-hero-tag-blue   { background: #3B82F6; }
.bcx-hero-tag-amber  { background: #F59E0B; color: #fff; }

.bcx-hero-title {
  font-size: 36px; font-weight: 900;
  letter-spacing: -0.8px; line-height: 1.1;
  margin: 0; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.bcx-hero-sub {
  font-size: 16px; font-weight: 500;
  margin: 0; color: rgba(255,255,255,0.92);
  line-height: 1.45;
  max-width: 480px;
}
.bcx-hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding: 13px 22px;
  background: #fff; color: #0F172A;
  font-weight: 800; font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.bcx-hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.24);
}
.bcx-hero-cta svg { color: currentColor; }

/* Setas (desktop) */
.bcx-hero-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.85);
  border: 0; border-radius: 50%;
  font-size: 22px; font-weight: 700; color: #0F172A;
  cursor: pointer;
  z-index: 5;
  display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.bcx-hero-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.bcx-hero-prev { left: 14px; }
.bcx-hero-next { right: 14px; }

/* Dots */
.bcx-hero-dots {
  position: absolute; bottom: 16px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.bcx-hero-dots button {
  width: 9px; height: 9px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all .15s ease;
  padding: 0;
}
.bcx-hero-dots button.is-active {
  background: #fff;
  width: 28px; border-radius: 100px;
}
.bcx-hero-dots button:hover { background: rgba(255,255,255,0.75); }

/* Mobile */
@media (max-width: 680px) {
  .bcx-hero-carousel {
    height: 240px;
    margin: 12px;
    border-radius: 12px;
  }
  .bcx-hero-slide {
    grid-template-columns: 1fr;
  }
  .bcx-hero-deco {
    width: 220px; height: 220px;
    right: -50px; bottom: -50px;
  }
  .bcx-hero-slide-fusca .bcx-hero-deco { width: 280px; height: 130px; right: -20px; bottom: 10px; }
  .bcx-hero-slide-trust .bcx-hero-deco { width: 180px; height: 180px; right: -30px; top: auto; bottom: -30px; transform: none; }
  .bcx-hero-content {
    padding: 20px 18px;
    gap: 8px;
  }
  .bcx-hero-title { font-size: 22px; letter-spacing: -0.4px; }
  .bcx-hero-sub { font-size: 13px; max-width: 100%; }
  .bcx-hero-tag { font-size: 10px; padding: 4px 8px; }
  .bcx-hero-cta { padding: 10px 16px; font-size: 13px; }
  .bcx-hero-arrow { display: none; } /* só swipe + dots no mobile */
  .bcx-hero-dots { bottom: 10px; }
  .bcx-hero-dots button { width: 7px; height: 7px; }
  .bcx-hero-dots button.is-active { width: 22px; }
}

/* Desktop: card compacto centralizado (não mais full-width).
   Mobile: volta a ocupar largura do container pra não desperdiçar tela. */
.bcx-home-vehicle {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 24px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.bcx-home-vehicle .bcx-container {
  max-width: none;
  padding: 0;
  width: auto;
}
.bcx-home-vehicle-label {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  color: #0F172A;
}
.bcx-home-vehicle-label svg { color: var(--bcx-primary, #2563EB); flex-shrink: 0; }
.bcx-home-vehicle-label strong { font-size: 15px; font-weight: 800; }
.bcx-home-vehicle-label span { font-size: 13px; color: #64748B; }
/* 2 selects (Modelo + Ano) + Botão, sempre em uma linha só.
   Marca foi removida porque é determinística pelo modelo (calderon 17/05/2026). */
.bcx-home-vehicle-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px auto;
  gap: 8px;
  align-items: stretch;
}
.bcx-home-vehicle-form select {
  height: 44px; border: 1px solid #CBD5E1; border-radius: 8px;
  padding: 0 32px 0 12px; font-size: 14px; background-color: #fff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  -webkit-appearance: none; appearance: none;
  color: #0F172A; cursor: pointer; font-family: inherit;
}
.bcx-home-vehicle-btn {
  height: 44px; padding: 0 20px;
  background: var(--bcx-primary, #2563EB); color: #fff;
  border: 0; border-radius: 8px;
  font-weight: 700; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
}
.bcx-home-vehicle-btn:hover { filter: brightness(1.08); }
@media (max-width: 680px) {
  /* Mobile: card vira flush nas laterais com pequena margem (calderon 17/05/2026 v2) */
  .bcx-home-vehicle { padding: 14px 16px 16px; margin: 12px 12px; max-width: none; border-radius: 12px; }
  .bcx-home-vehicle-label { flex-wrap: wrap; gap: 4px 8px; margin-bottom: 10px; }
  .bcx-home-vehicle-label span { flex-basis: 100%; font-size: 12px; }
  /* Mantém Modelo | Ano | Botão em uma linha, ano compactado pra caber */
  .bcx-home-vehicle-form {
    grid-template-columns: minmax(0, 1fr) 80px auto;
    gap: 6px;
  }
  .bcx-home-vehicle-form select { height: 42px; font-size: 13px; padding-right: 28px; }
  .bcx-home-vehicle-btn { padding: 0 14px; font-size: 13px; }
  .bcx-home-vehicle-btn svg { display: none; } /* só texto pra economizar largura */
}
