/* ─────────────────────────────────────────────────────────────────────────
   Gambatto Motos — Site Público CSS Global
   Inclui: design tokens, reset, componentes, páginas reutilizáveis
───────────────────────────────────────────────────────────────────────── */

/* ── Design Tokens ── */
:root {
  --color-honda-red: #CC0000;
  --color-honda-red-dark: #A30000;
  --color-honda-red-light: #E60012;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --gray-900: #1A1A1A;
  --gray-800: #2E2E2E;
  --gray-700: #4A4A4A;
  --gray-600: #6B6B6B;
  --gray-500: #8C8C8C;
  --gray-400: #B5B5B5;
  --gray-300: #D6D6D6;
  --gray-200: #E8E8E8;
  --gray-100: #F2F2F2;
  --gray-50: #F8F8F8;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EBE5A;
  --color-success: #1B8A3A;
  --color-warning: #E6A700;
  --color-error: #D32F2F;
  --font-display: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 20px;
  --space-6: 24px; --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px; --space-24: 96px; --space-32: 128px;
  --container-max: 1280px;
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 16px; --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(17,17,17,.06);
  --shadow-sm: 0 2px 6px rgba(17,17,17,.08);
  --shadow-md: 0 4px 14px rgba(17,17,17,.10);
  --shadow-lg: 0 8px 28px rgba(17,17,17,.14);
  --shadow-card-hover: 0 10px 30px rgba(204,0,0,.12);
  --shadow-float: 0 6px 20px rgba(37,211,102,.35);
  --ease-standard: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --dur-fast: 150ms; --dur-base: 250ms; --dur-slow: 400ms;
}

/* ── Reset ── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--gray-800); background: #fff; }
/* Offset para seções ancoradas (compensa o sticky bar de 56px + 8px folga) */
[id] { scroll-margin-top: 70px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Layout ── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── Scrollbar ── */
.gm-scroll { scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent; }
.gm-scroll::-webkit-scrollbar { height: 6px; }
.gm-scroll::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 999px; }

/* ── Botões ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast); border-radius: var(--radius-md); padding: 0 24px; height: 44px; font-size: 15px; }
.btn-primary { background: var(--color-honda-red); color: #fff; border-radius: var(--radius-pill); }
.btn-primary:hover { background: var(--color-honda-red-dark); }
.btn-outline { background: transparent; color: var(--color-honda-red); border: 1.5px solid var(--color-honda-red); border-radius: var(--radius-pill); }
.btn-outline:hover { background: var(--color-honda-red); color: #fff; }
.btn-black { background: var(--color-black); color: #fff; }
.btn-black:hover { background: #2E2E2E; }
.btn-whatsapp { background: var(--color-whatsapp); color: #fff; border-radius: var(--radius-pill); }
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }
.btn-lg { height: 52px; padding: 0 32px; font-size: 16px; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
[x-cloak] { display: none !important; }
.gm-header { font-family: var(--font-body); position: sticky; top: 0; z-index: 1000; background: #fff; }

/* Topbar (desktop only) */
.gm-topbar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-600); }
.gm-topbar-inner { max-width: 1440px; margin: 0 auto; padding: 6px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }

/* Main bar — 3 colunas: left | logo center | right */
.gm-mainbar { background: #fff; border-bottom: 1px solid var(--gray-200); transition: box-shadow var(--dur-base), border-color var(--dur-base); }
.gm-mainbar.scrolled { box-shadow: 0 2px 14px rgba(17,17,17,.1); border-bottom-color: transparent; }
.gm-mainbar-inner { max-width: 1440px; margin: 0 auto; padding: 0 28px; height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.gm-left  { display: flex; align-items: center; }
.gm-center { display: flex; justify-content: center; }
.gm-right  { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }

/* Logo */
.gm-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.gm-logo-img { height: 36px; width: auto; object-fit: contain; }
.gm-logo-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #111; letter-spacing: -.01em; white-space: nowrap; }
.gm-logo-sub { font-size: 9px; font-weight: 600; letter-spacing: .22em; color: var(--gray-600); text-transform: uppercase; margin-top: 2px; }

/* Hamburger */
.gm-burger { display: flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; color: #111; padding: 10px 12px 10px 4px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .08em; transition: color var(--dur-fast); }
.gm-burger:hover { color: var(--color-honda-red); }
.gm-hamb { display: flex; flex-direction: column; gap: 4.5px; width: 18px; flex-shrink: 0; }
.gm-hamb span { display: block; height: 1.5px; background: currentColor; border-radius: 2px; }
.gm-burger-txt { display: none; }
@media (min-width: 1024px) { .gm-burger-txt { display: inline; } }

/* Motos trigger */
.gm-motos-btn { display: none; align-items: center; gap: 6px; background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; color: #111; font-family: var(--font-body); font-size: 14px; font-weight: 600; padding: 0 14px; height: 68px; margin-bottom: -1px; white-space: nowrap; transition: color var(--dur-fast), border-color var(--dur-fast); }
.gm-motos-btn:hover { color: var(--color-honda-red); border-bottom-color: var(--color-honda-red); }
.gm-motos-btn.open { color: var(--color-honda-red); border-bottom-color: var(--color-honda-red); }
.gm-motos-arrow { transition: transform .22s ease; }
.gm-motos-btn.open .gm-motos-arrow { transform: rotate(180deg); }
@media (min-width: 1024px) { .gm-motos-btn { display: flex; } }

/* CTA: Nossas Unidades */
.gm-unidades-btn { display: none; align-items: center; gap: 6px; text-decoration: none; font-size: 13px; font-weight: 600; color: var(--gray-700); white-space: nowrap; transition: color var(--dur-fast); }
.gm-unidades-btn:hover { color: var(--color-honda-red); }
@media (min-width: 1024px) { .gm-unidades-btn { display: flex; } }

/* ── Mega-menu ──────────────────────────────────────── */
.gm-mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 3px solid var(--color-honda-red); box-shadow: 0 8px 36px rgba(17,17,17,.15); z-index: 500; }
.gm-mega-bd { position: fixed; inset: 0; z-index: 499; }
.gm-mega-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px 28px; }
/* Tabs */
.gm-mega-tabs { display: flex; border-bottom: 1px solid var(--gray-200); margin-bottom: 22px; overflow-x: auto; scrollbar-width: none; }
.gm-mega-tabs::-webkit-scrollbar { display: none; }
.gm-mega-tab { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; font-family: var(--font-body); font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--gray-500); padding: 14px 16px; white-space: nowrap; text-decoration: none; transition: color var(--dur-fast), border-color var(--dur-fast); }
.gm-mega-tab:hover { color: #111; }
.gm-mega-tab.active { color: var(--color-honda-red); border-bottom-color: var(--color-honda-red); }
.gm-mega-tab-all { margin-left: auto; color: var(--color-honda-red) !important; font-weight: 700; }
/* Panel content */
.gm-mega-panel { display: flex; gap: 24px; align-items: flex-start; }
.gm-mega-groups { flex: 1; display: flex; gap: 28px; flex-wrap: wrap; align-content: flex-start; }
.gm-mega-group { min-width: 120px; }
.gm-mega-group-title { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); margin: 0 0 8px; padding-bottom: 7px; border-bottom: 1px solid var(--gray-100); }
.gm-mega-group ul { list-style: none; margin: 0; padding: 0; }
.gm-mega-group li { margin-bottom: 1px; }
.gm-mega-model { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--gray-800); font-size: 13px; font-weight: 500; padding: 5px 8px; border-radius: 7px; transition: background var(--dur-fast), color var(--dur-fast); white-space: nowrap; }
.gm-mega-model:hover { background: var(--gray-50); color: var(--color-honda-red); }
.gm-mega-model img { width: 52px; height: 32px; object-fit: contain; border-radius: 4px; background: var(--gray-50); flex-shrink: 0; }
.gm-mega-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); flex-shrink: 0; margin: 0 6px; }
/* Showroom */
.gm-mega-sr { width: 244px; flex-shrink: 0; background: var(--gray-50); border-radius: 14px; padding: 20px 18px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; min-height: 190px; }
.gm-mega-sr img { width: 100%; max-height: 120px; object-fit: contain; }
.gm-mega-sr-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: #111; line-height: 1.3; }
.gm-mega-sr a { font-size: 12px; font-weight: 600; color: var(--color-honda-red); text-decoration: none; margin-top: auto; }
.gm-mega-sr a:hover { text-decoration: underline; }

/* ── Drawer ─────────────────────────────────────────── */
.gm-drawer-overlay { position: fixed; inset: 0; background: rgba(17,17,17,.52); z-index: 1099; opacity: 0; pointer-events: none; transition: opacity var(--dur-slow); }
.gm-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.gm-drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 88%; max-width: 375px; background: #fff; box-shadow: var(--shadow-lg); z-index: 1100; transform: translateX(-100%); transition: transform var(--dur-slow) var(--ease-standard); display: flex; flex-direction: column; overflow: hidden; }
.gm-drawer.open { transform: translateX(0); }
.gm-drawer-head { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; min-height: 60px; }
/* Painel único rolável */
.gm-drawer-scroll { flex: 1; overflow-y: auto; }
/* Item row */
.gm-di { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 22px; background: none; border: none; border-bottom: 1px solid var(--gray-100); cursor: pointer; text-decoration: none; color: var(--gray-800); font-family: var(--font-body); font-size: 15px; font-weight: 600; text-align: left; transition: background var(--dur-fast), color var(--dur-fast); }
.gm-di:hover, .gm-di.active { background: var(--gray-50); color: var(--color-honda-red); }
.gm-di-ic { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gray-400); transition: color var(--dur-fast); }
.gm-di:hover .gm-di-ic, .gm-di.active .gm-di-ic { color: var(--color-honda-red); }
.gm-di-lbl { flex: 1; }
.gm-di-ext-ico { color: var(--gray-300); flex-shrink: 0; }
/* Modelos — apenas chips de categoria (sem grid/fotos) */
.gm-dm-mini { padding: 16px 22px 14px; border-bottom: 1px solid var(--gray-100); }
.gm-dm-mini-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.gm-dm-mini-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); }
.gm-dm-mini-seeall { font-size: 12.5px; font-weight: 700; color: var(--color-honda-red); text-decoration: none; }
.gm-dm-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gm-dm-chip { display: inline-flex; align-items: center; padding: 7px 14px; border: 1.5px solid var(--gray-200); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--gray-700); text-decoration: none; transition: all var(--dur-fast); }
.gm-dm-chip:hover { border-color: var(--color-honda-red); color: var(--color-honda-red); }
/* Divisor de seção (Links Honda / Contato) */
.gm-drawer-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); padding: 14px 22px 4px; margin: 0; background: var(--gray-50); }
/* Contatos */
.gm-drawer-contacts { padding: 10px 22px 16px; display: flex; flex-direction: column; gap: 12px; }
.gm-contact-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gray-800); }
.gm-contact-link svg { color: var(--color-honda-red); flex-shrink: 0; }
.gm-contact-label { display: block; font-size: 11px; color: var(--gray-500); font-weight: 600; }
.gm-contact-num { display: block; font-size: 14px; font-weight: 700; }
/* Footer fixo */
.gm-drawer-footer { display: flex; flex-direction: column; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--gray-200); flex-shrink: 0; }
.gm-btn-wa { border-color: var(--color-whatsapp); color: var(--color-whatsapp); }
.gm-btn-wa:hover { background: var(--color-whatsapp); color: #fff; }

/* ── Responsivo ─────────────────────────────────────── */
@media (max-width: 1023px) {
  .gm-topbar { display: none; }
  .gm-burger-txt { display: none !important; }
  .gm-mainbar-inner { padding: 0 16px; }
}
@media (max-width: 600px) {
  .gm-mainbar-inner { padding: 0 12px; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.gm-footer { font-family: var(--font-body); }
.gm-footer-grid { max-width: var(--container-max); margin: 0 auto; padding: 56px 40px 40px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; }
.gm-footer h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: #111; margin: 0 0 16px; }
.gm-footer a { display: block; font-size: 14px; color: var(--gray-600); text-decoration: none; margin-bottom: 10px; transition: color var(--dur-fast); }
.gm-footer a:hover { color: var(--color-honda-red); }
.gm-footer-social a { display: inline-flex; width: 38px; height: 38px; border: 1px solid var(--gray-300); border-radius: 999px; align-items: center; justify-content: center; margin-bottom: 0; transition: border-color var(--dur-fast), color var(--dur-fast); }
.gm-footer-social a:hover { border-color: var(--color-honda-red); color: var(--color-honda-red); }
@media (max-width: 900px) { .gm-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gm-footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .gm-footer-grid { padding: 40px 20px 32px; } }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════ */
.gm-wa { position: fixed; bottom: 24px; right: 20px; z-index: 9000; display: flex; align-items: center; gap: 12px; }

/* Botão flutuante (FAB) + anel de pulso */
.wa-fab { position: relative; width: 58px; height: 58px; background: var(--color-whatsapp); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-float); transition: transform var(--dur-base), box-shadow var(--dur-base); flex-shrink: 0; cursor: pointer; }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.wa-fab:active { transform: scale(.97); }
.wa-fab__pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--color-whatsapp); opacity: 0; pointer-events: none; animation: waPulse 2.5s ease-out infinite; }
.wa-fab.is-open .wa-fab__pulse { display: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-fab__pulse { display: none; } }

/* Overlay + modal centralizado */
.wa-overlay { position: fixed; inset: 0; z-index: 9990; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s; }
.wa-overlay.open { opacity: 1; visibility: visible; }
.wa-modal { width: min(410px, calc(100vw - 32px)); max-height: min(90vh, 720px); display: flex; flex-direction: column; overflow: hidden; background: var(--color-white); border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(0,0,0,.35); transform: scale(.95) translateY(10px); opacity: 0; transition: opacity .2s, transform .2s var(--ease-out); }
.wa-overlay.open .wa-modal { transform: scale(1) translateY(0); opacity: 1; }

.wa-popup__head { background: var(--color-whatsapp); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wa-popup__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-popup__title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff; line-height: 1.2; }
.wa-popup__status { font-size: 12px; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.wa-popup__dot { width: 7px; height: 7px; border-radius: 50%; background: #7FFF7F; display: inline-block; }
.wa-popup__close { margin-left: auto; color: rgba(255,255,255,.8); flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: none; border: none; cursor: pointer; transition: background var(--dur-fast); }
.wa-popup__close:hover { background: rgba(255,255,255,.15); color: #fff; }
.wa-popup__body { padding: var(--space-5); overflow-y: auto; flex: 1; min-height: 0; }
.wa-popup__greeting { font-size: 14px; line-height: 1.5; margin: 0 0 var(--space-4); color: var(--gray-800); }

/* Formulário */
.wa-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 12px; font-weight: 500; color: var(--gray-500); letter-spacing: .005em; }
.wa-form .req { color: var(--color-honda-red); }
.form-control { height: 46px; padding: 0 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-md); font-size: 15px; font-family: var(--font-body); color: var(--gray-800); background: #fff; transition: border-color .15s, box-shadow .15s; outline: none; width: 100%; box-sizing: border-box; }
.form-control:focus { border-color: var(--color-whatsapp); box-shadow: 0 0 0 3px rgba(37,211,102,.12); }
.form-control::placeholder { color: var(--gray-500); }
.wa-form select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; cursor: pointer; }

.wa-lgpd__label { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--gray-600); cursor: pointer; }
.wa-lgpd__label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--color-whatsapp); }
.wa-lgpd__label a { color: var(--color-honda-red); text-decoration: underline; }
.btn-full { width: 100%; }

/* Setor de atendimento (mantido do fluxo original — a lista roda depois do formulário) */
.wa-back { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 600; color: var(--gray-600); background: none; border: none; cursor: pointer; padding: 0; margin-bottom: var(--space-3); transition: color var(--dur-fast); font-family: var(--font-body); }
.wa-back:hover { color: var(--color-whatsapp); }
.wa-agents { display: flex; flex-direction: column; gap: 2px; }
.wa-agent { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3); border-radius: var(--radius-sm); text-decoration: none; transition: background var(--dur-fast); cursor: pointer; }
.wa-agent:hover { background: var(--gray-50); }
.wa-agent__avatar { width: 36px; height: 36px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-display); }
.wa-agent__info { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.wa-agent__name { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.wa-agent__cargo { font-size: 12px; color: var(--gray-600); }
.wa-agent__status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #1a7a3f; font-weight: 600; flex-shrink: 0; }
.wa-agent__status span { width: 7px; height: 7px; border-radius: 999px; background: #25D366; display: inline-block; }
@media (max-width: 479px) { .gm-wa { bottom: 16px; right: 16px; } }

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════ */
.gm-cookie { position: fixed; left: 20px; bottom: 20px; z-index: 8500; width: 380px; max-width: calc(100vw - 40px); background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 22px; display: none; }
.gm-cookie.show { display: block; }
.gm-modal-overlay { position: fixed; inset: 0; z-index: 9600; display: none; align-items: center; justify-content: center; padding: 20px; }
.gm-modal-overlay.show { display: flex; }
.gm-toggle-track { display: inline-block; width: 48px; height: 28px; border-radius: 999px; border: none; cursor: pointer; position: relative; transition: background var(--dur-base); flex-shrink: 0; }
.gm-toggle-knob { position: absolute; top: 3px; width: 22px; height: 22px; border-radius: 999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: left var(--dur-base); }

/* ═══════════════════════════════════════════════════════
   COMPONENTES REUTILIZÁVEIS DE PÁGINA
═══════════════════════════════════════════════════════ */

/* Breadcrumb */
.gm-breadcrumb { max-width: var(--container-max); margin: 0 auto; padding: 18px 40px 0; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-500); }
.gm-breadcrumb a { color: var(--gray-500); text-decoration: none; transition: color var(--dur-fast); }
.gm-breadcrumb a:hover { color: var(--color-honda-red); }
@media (max-width: 768px) { .gm-breadcrumb { padding: 14px 20px 0; } }

/* Seções */
.gm-sec { padding: 80px 0 0; }
.gm-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.gm-sec-title { font-family: var(--font-display); font-weight: 700; font-size: 30px; margin: 0; letter-spacing: .01em; }
.gm-sec-link { font-size: 14px; font-weight: 600; color: var(--color-honda-red); text-decoration: none; white-space: nowrap; }
.gm-sec-link:hover { text-decoration: underline; }

/* Hero / Banner */
.gm-hero { position: relative; width: 100%; height: var(--gm-hero-h, 540px); overflow: hidden; background: #15171C; }
.gm-hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; z-index: 1; }
.gm-hero-slide.active { opacity: 1; visibility: visible; z-index: 10; }
.gm-hero-img { position: absolute; inset: 0; background-image: var(--bg-desktop); background-size: cover; background-position: center; }
.gm-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.35) 55%, rgba(10,10,12,.1) 100%); }
.gm-hero-content { position: relative; max-width: var(--container-max); margin: 0 auto; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 40px 30px; }
.gm-hero-tag { display: inline-block; align-self: flex-start; background: rgba(255,255,255,.14); backdrop-filter: blur(4px); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 999px; margin-bottom: 20px; }
.gm-hero-h { font-family: var(--font-display); font-weight: 800; font-size: 50px; line-height: 1.05; color: #fff; margin: 0 0 16px; max-width: 720px; letter-spacing: -.01em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.gm-hero-sub { font-size: 18px; line-height: 1.6; color: #F0F0F0; max-width: 540px; margin: 0 0 30px; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.gm-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 30; width: 46px; height: 46px; border-radius: 999px; border: none; cursor: pointer; background: rgba(0,0,0,.3); backdrop-filter: blur(4px); color: #fff; display: flex; align-items: center; justify-content: center; transition: background var(--dur-base); }
.gm-hero-arrow:hover { background: rgba(204,0,0,.85); }
.gm-hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 30; display: flex; gap: 9px; justify-content: center; }
.gm-hero-dot { height: 6px; border-radius: 999px; border: none; cursor: pointer; background: rgba(255,255,255,.55); transition: all .3s; padding: 0; width: 8px; }
.gm-hero-dot.active { background: #CC0000; width: 30px; }

/* Carrossel */
.gm-carousel { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 18px; scroll-snap-type: x mandatory; }
.gm-carousel > * { flex: 0 0 280px; width: 280px; scroll-snap-align: start; }

/* Card de moto */
.gm-moto-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur-base), box-shadow var(--dur-base); position: relative; }
.gm-moto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
/* 3/2 em vez de 4/3 — fotos reais de moto (perfil lateral) vêm em ~16:9/3:2,
   4/3 sobrava muito espaço vazio acima/abaixo com object-fit:contain. */
.gm-moto-card-img { background: var(--gray-100); aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; position: relative; }
.gm-moto-card-img svg { width: 62%; height: 62%; opacity: .85; }
.gm-moto-badge { position: absolute; top: 12px; left: 12px; z-index: 2; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-sm); }
.gm-moto-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }

/* Faixa de telefone */
.gm-phone-strip { background: var(--color-honda-red); color: #fff; padding: 14px 40px; }
.gm-phone-strip-inner { max-width: var(--container-max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; }

/* Card seminovo */
.gm-semi-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; display: flex; gap: 0; transition: box-shadow var(--dur-base); }
.gm-semi-card:hover { box-shadow: var(--shadow-card-hover); }
.gm-semi-img { width: 140px; min-height: 120px; background: var(--gray-100); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* Grid de serviços */
.gm-serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gm-serv-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; transition: box-shadow var(--dur-base); }
.gm-serv-card:hover { box-shadow: var(--shadow-md); }

/* CTA bandão */
.gm-cta-band { background: var(--color-honda-red); color: #fff; padding: 64px 40px; }

/* Catálogo / grid de veículos */
.gm-catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Filter chips */
.gm-filter-chip { display: inline-flex; align-items: center; height: 36px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--gray-300); font-size: 13px; font-weight: 600; cursor: pointer; background: #fff; color: var(--gray-700); transition: all var(--dur-fast); }
.gm-filter-chip.active, .gm-filter-chip:hover { border-color: var(--color-honda-red); background: var(--color-honda-red); color: #fff; }

/* Range slider */
input[type=range] { accent-color: var(--color-honda-red); }

/* ── Responsivo (páginas) ── */
@media (max-width: 1023px) {
  .gm-catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .gm-serv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .gm-hero { height: var(--gm-hero-h-mobile, 480px); }
  .gm-hero-img { background-image: var(--bg-mobile, var(--bg-desktop)); }
  .gm-hero-h { font-size: 30px; }
  .gm-hero-sub { font-size: 15px; }
  .gm-hero-content { padding: 0 20px 30px; }
  .gm-phone-strip { padding: 14px 20px; }
  .gm-sec { padding: 56px 0 0; }
  .gm-cta-band { padding: 48px 20px; }
  .gm-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .gm-catalog-grid { grid-template-columns: 1fr; }
  .gm-serv-grid { grid-template-columns: 1fr; }
}

/* ── Single de veículo ── */
.gm-gal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 999px; border: none;
  background: rgba(255,255,255,.9); color: var(--gray-800);
  font-size: 24px; line-height: 1; cursor: pointer; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.gm-gal-arrow:hover { background: #fff; }
.gm-gal-thumb { transition: border-color var(--dur-fast); }
.gm-field {
  width: 100%; height: 48px; border: 1px solid var(--gray-400);
  border-radius: var(--radius-sm); padding: 0 14px; font-size: 15px;
  font-family: var(--font-body); outline: none; background: #fff; color: var(--gray-800);
}
.gm-field:focus { border-color: var(--color-honda-red); }
textarea.gm-field { height: auto; }
.gm-mobcta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 7000;
  background: #fff; border-top: 1px solid var(--gray-200);
  box-shadow: 0 -2px 10px rgba(0,0,0,.06); padding: 10px 16px;
  align-items: center; gap: 12px;
}
@media (max-width: 900px) {
  .gm-main { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .gm-spec { grid-template-columns: 1fr !important; }
  .gm-mobcta { display: flex; }
  /* A barra fixa mobile já tem seu próprio botão de WhatsApp — esconde o
     widget flutuante do site pra não sobrepor (ambos são position:fixed
     no rodapé da tela). */
  body:has(.gm-mobcta) .gm-wa { display: none; }
}

/* ── Hero full-bleed do single ── */
.gm-vhero { position: relative; width: 100%; height: 540px; overflow: hidden; background: #111; }
.gm-vhero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; }
.gm-vhero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.gm-vhero-slide img, .gm-vhero-slide video, .gm-vhero-slide iframe { width: 100%; height: 100%; object-fit: cover; border: 0; display: block; }
.gm-vhero-dots { position: absolute; bottom: 18px; left: 0; right: 0; z-index: 5; display: flex; gap: 8px; justify-content: center; }
.gm-vhero-dots button { width: 9px; height: 9px; border-radius: 999px; border: none; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; }
.gm-vhero-dots button.active { background: #fff; width: 26px; }

/* ── Barra sticky do modelo ── */
.gm-modelbar { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: 1px solid var(--gray-200); }
.gm-modelbar-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; gap: 16px; overflow: hidden; }
.gm-modelbar-nome { font-family: var(--font-display); font-size: 16px; color: var(--gray-900); white-space: nowrap; flex-shrink: 0; }
.gm-modelbar-nav { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.gm-modelbar-nav::-webkit-scrollbar { display: none; }
.gm-modelbar-anchor { font-size: 13px; font-weight: 600; color: var(--gray-600); text-decoration: none; padding: 6px 10px; border-radius: 6px; white-space: nowrap; transition: color .15s, background .15s; }
.gm-modelbar-anchor:hover { color: var(--color-honda-red); background: var(--gray-50); }
.gm-modelbar-price { font-family: var(--font-display); font-weight: 700; color: var(--color-honda-red); font-size: 16px; white-space: nowrap; }
@media (max-width: 640px) {
  .gm-modelbar-nome { display: none; }
  .gm-modelbar-nav { gap: 2px; }
  .gm-modelbar-anchor { font-size: 12px; padding: 5px 7px; }
}

/* ── Chips de aba ── */
.gm-tabchip { appearance: none; border: 1.5px solid var(--gray-300); background: #fff; color: var(--gray-700); font-weight: 600; font-size: 14px; padding: 8px 18px; border-radius: 999px; cursor: pointer; font-family: var(--font-body); }
.gm-tabchip.active { background: var(--color-honda-red); border-color: var(--color-honda-red); color: #fff; }

/* ── Tabs de seção (versões em "Conheça o Modelo") ── */
.gm-sectab { appearance: none; -webkit-appearance: none; -moz-appearance: none; display: inline-block; padding: 10px 28px; border: none; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--gray-500); margin-bottom: -2px; border-radius: 4px 4px 0 0; outline: none; box-shadow: none; transition: color .15s, border-bottom-color .15s, background .15s; }
.gm-sectab.active { color: var(--color-honda-red); border-bottom-color: var(--color-honda-red); background: rgba(204,0,0,.04); font-weight: 700; }
.gm-sectab:hover:not(.active) { color: var(--gray-700); }

/* ── Tabs de ficha técnica (modal) ── */
.gm-fichatab { appearance: none; -webkit-appearance: none; -moz-appearance: none; flex-shrink: 0; display: inline-block; padding: 10px 20px; border: none; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--gray-600); margin-bottom: -2px; white-space: nowrap; outline: none; box-shadow: none; transition: color .15s, border-bottom-color .15s; }
.gm-fichatab.active { color: var(--color-honda-red); border-bottom-color: var(--color-honda-red); font-weight: 700; }
.gm-fichatab:hover:not(.active) { color: var(--gray-800); }

/* ── Version selector pills (hero sidebar) ── */
.gm-versaopill { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding: 7px 16px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-pill); cursor: pointer; font-family: var(--font-body); font-size: 13px; font-weight: 600; background: #fff; color: var(--gray-700); outline: none; box-shadow: none; transition: background .15s, color .15s, border-color .15s; }
.gm-versaopill.active { background: var(--color-honda-red); color: #fff; border-color: var(--color-honda-red); }
.gm-versaopill:hover:not(.active) { border-color: var(--gray-500); color: var(--gray-900); }

/* Base do swatch de cor — :style do Alpine é só background/box-shadow (dinâmico
   por cor); tamanho/formato/reset de borda ficam numa classe estática pra não
   serem apagados quando Alpine substitui o atributo style inteiro. */
.gm-color-swatch { appearance: none; -webkit-appearance: none; -moz-appearance: none; width: 44px; height: 44px; border-radius: 999px; border: none; outline: none; padding: 0; cursor: pointer; transition: box-shadow .15s; flex-shrink: 0; }

/* Galeria do single de veículo — usa o GmCarousel (setas/dots/drag) */
.gm-galeria-item { border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-50); aspect-ratio: 4/3; width: 100%; height: 100%; }

/* Contador (X / N) sobreposto no canto do carrossel — só aparece quando o
   carrossel tem um .gm-car-counter no markup (opt-in por elemento) */
.gm-car-counter { position: absolute; top: 12px; right: 12px; background: rgba(17,17,17,.65); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; z-index: 2; pointer-events: none; }

/* ── Modais ── */
.gm-modal { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.gm-modal-bd { position: absolute; inset: 0; background: rgba(17,19,24,.55); }
.gm-modal-box { position: relative; background: #fff; border-radius: 16px; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.3); z-index: 1; }
.gm-modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 26px; line-height: 1; color: var(--gray-500); cursor: pointer; }
.gm-lbl { display: block; font-size: 12px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }

@media (max-width: 760px) {
  /* Banners são imagens largas (~1920x700, ~2.74:1) — altura fixa cortava
     moto/texto no mobile. Usa aspect-ratio pra acompanhar a largura real. */
  .gm-vhero { height: auto; aspect-ratio: 1920 / 700; }
  .gm-modal-box { padding: 24px 18px; }
}

/* ── Features / Diferenciais — carrossel horizontal estilo Honda ── */
.gm-features-scroll { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin: 0 0 4px; scroll-snap-type: x mandatory; }
.gm-features-scroll::-webkit-scrollbar { display: none; }
.gm-feature-card { flex: 0 0 320px; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; scroll-snap-align: start; }
.gm-feature-card-imgwrap { overflow: hidden; height: 220px; }
.gm-feature-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gm-feature-card:hover .gm-feature-card-img { transform: scale(1.05); }
.gm-feature-card-body { padding: 18px 20px 22px; }
.gm-feature-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gray-900); display: flex; align-items: center; gap: 8px; margin: 0 0 8px; }
.gm-feature-card-text { font-size: 14px; line-height: 1.65; color: var(--gray-600); margin: 0; }
.gm-features-cta { display: flex; justify-content: center; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
@media (max-width: 640px) { .gm-feature-card { flex: 0 0 82vw; } }

/* ── "Escolha o Modelo" — carousel horizontal de versões ── */
.gm-escolha-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 20px;
  -webkit-overflow-scrolling: touch;
}
.gm-escolha-grid::-webkit-scrollbar { display: none; }
/* centering trick: when items don't overflow, auto-margins center them;
   when they overflow, margins collapse to 0 and the list is scrollable */
.gm-escolha-card:first-child { margin-left: auto; }
.gm-escolha-card:last-child  { margin-right: auto; }
.gm-escolha-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  scroll-snap-align: start;
}
.gm-ficha-cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 28px; border: 2px solid var(--color-honda-red); border-radius: 6px; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--color-honda-red); background: transparent; cursor: pointer; transition: background .15s, color .15s; }
.gm-ficha-cta-btn:hover { background: var(--color-honda-red); color: #fff; }
@media (max-width: 640px) {
  .gm-escolha-card { flex: 0 0 86vw; }
  .gm-escolha-card:first-child { margin-left: 0; }
  .gm-escolha-card:last-child  { margin-right: 0; }
}

/* ── "Conheça o Modelo" (section-360) — tabs de versão ── */
@media (max-width: 760px) {
  .gm-main { grid-template-columns: 1fr !important; }
}

/* ─────────────────────────────────────────────────────
   SISTEMA DE CAROUSEL UNIVERSAL (gm-car)
───────────────────────────────────────────────────── */
.gm-car { position: relative; }
.gm-car-vp { position: relative; overflow: hidden; cursor: grab; -webkit-user-select: none; user-select: none; }
.gm-car-vp:active { cursor: grabbing; }
.gm-car-tr { display: flex; will-change: transform; }
.gm-car-sl { flex: 0 0 auto; }

/* Nav — linha com setas + dots */
.gm-car-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 22px; }
.gm-car-btn {
  width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid var(--gray-300);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gray-700); transition: border-color .2s, color .2s, background .2s, transform .15s;
  flex-shrink: 0; padding: 0;
}
.gm-car-btn:hover { border-color: var(--color-honda-red); color: var(--color-honda-red); background: rgba(204,0,0,.05); transform: scale(1.06); }
.gm-car-btn svg { pointer-events: none; }
.gm-car-dots { display: flex; gap: 8px; align-items: center; }
.gm-car-dot { width: 8px; height: 8px; border-radius: 999px; border: none; background: var(--gray-300); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.gm-car-dot.active { background: var(--color-honda-red); width: 26px; }
@media (max-width: 640px) {
  /* Mais respiro entre o card e a barra de setas/dots no mobile — ficava
     colado demais no card acima. */
  .gm-car-nav { margin-top: 28px; gap: 16px; }
}

/* ─────────────────────────────────────────────────────
   SCROLL-REVEAL — animações de entrada por seção
───────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal-item] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
[data-reveal-item].is-visible { opacity: 1; transform: none; }

/* stagger automático por :nth-child */
[data-reveal-item]:nth-child(1) { transition-delay: 0s; }
[data-reveal-item]:nth-child(2) { transition-delay: .08s; }
[data-reveal-item]:nth-child(3) { transition-delay: .16s; }
[data-reveal-item]:nth-child(4) { transition-delay: .24s; }
[data-reveal-item]:nth-child(5) { transition-delay: .32s; }
[data-reveal-item]:nth-child(6) { transition-delay: .40s; }
[data-reveal-item]:nth-child(7) { transition-delay: .48s; }
[data-reveal-item]:nth-child(8) { transition-delay: .56s; }

/* Variante de slide horizontal (para a faixa tel.) */
[data-reveal-x] { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal-x].is-visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────────────
   TICKER — faixa de telefone animada
───────────────────────────────────────────────────── */
.gm-ticker-outer { overflow: hidden; }
.gm-ticker-inner {
  display: flex; white-space: nowrap;
  animation: gmTicker 22s linear infinite;
}
.gm-ticker-inner:hover { animation-play-state: paused; }
.gm-ticker-sep { display: inline-flex; align-items: center; gap: 20px; padding-right: 60px; }
@keyframes gmTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────
   SERVIÇOS — card atualizado (para usar no carousel)
───────────────────────────────────────────────────── */
.gm-serv-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform .25s ease, box-shadow .28s ease, border-color .25s;
  height: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none;
}
.gm-serv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,.1);
  border-color: rgba(204,0,0,.2);
}
.gm-serv-icon {
  width: 58px; height: 58px;
  background: rgba(204,0,0,.08);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background .25s, transform .25s;
}
.gm-serv-card:hover .gm-serv-icon {
  background: rgba(204,0,0,.14);
  transform: scale(1.1) rotate(-5deg);
}

/* ─────────────────────────────────────────────────────
   UNIDADES — seção de lojas na home
───────────────────────────────────────────────────── */
.gm-unidades-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.gm-unidade-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .3s ease, transform .3s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.gm-unidade-card:hover { box-shadow: 0 18px 52px rgba(0,0,0,.12); transform: translateY(-4px); }

.gm-unidade-img {
  height: 180px;
  background: linear-gradient(135deg, #15171C 0%, #2A2D35 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.gm-unidade-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gm-unidade-card:hover .gm-unidade-img img { transform: scale(1.04); }

.gm-unidade-city {
  position: absolute; top: 14px; left: 14px;
  background: var(--color-honda-red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; z-index: 1;
}
.gm-unidade-placeholder { opacity: .28; }

.gm-unidade-body { padding: 22px 22px 22px; flex: 1; display: flex; flex-direction: column; }

.gm-unidade-nome { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--gray-900); margin: 0 0 12px; line-height: 1.3; }

.gm-unidade-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--gray-600); margin-bottom: 6px; line-height: 1.5; }
.gm-unidade-row svg { flex-shrink: 0; margin-top: 2px; }

.gm-unidade-sep { height: 1px; background: var(--gray-100); margin: 14px 0 12px; }

.gm-unidade-hours { display: flex; flex-direction: column; gap: 0; }
.gm-unidade-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--gray-100); font-size: 12px; }
.gm-unidade-hours-row:last-child { border-bottom: none; }
.gm-unidade-hours-row strong { color: var(--gray-700); font-weight: 600; }
.gm-unidade-hours-row span { color: var(--gray-500); text-align: right; }
.gm-unidade-hours-row span.gm-fechado { color: var(--color-honda-red); font-weight: 600; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.gm-unidade-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 18px; }
.gm-unidade-actions .btn { height: 34px; font-size: 12px; padding: 0 12px; border-radius: var(--radius-pill); }

/* Mapa embed + botão Honda no <x-loja-card> */
.gm-unidade-map { border-top: 1px solid var(--gray-100); background: var(--gray-100); line-height: 0; }
.gm-unidade-map iframe { display: block; width: 100%; }
.gm-unidade-honda { width: 100%; margin-top: 10px; justify-content: center; height: 40px; }
.gm-unidade-card--static:hover { transform: none; }
.gm-unidade-card--static:hover .gm-unidade-img img { transform: none; }

@media (max-width: 900px) {
  .gm-unidades-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .gm-unidade-img { height: 150px; }
  .gm-unidade-body { padding: 18px 18px 18px; }
}

/* ─────────────────────────────────────────────────────
   MOTO CARD — hover aprimorado
───────────────────────────────────────────────────── */
.gm-moto-card { transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
.gm-moto-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,.12); }

/* ─────────────────────────────────────────────────────
   SEMI-CARD — no carousel ficam verticais
───────────────────────────────────────────────────── */
.gm-semi-car-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none; color: inherit;
  height: 100%;
}
.gm-semi-car-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.gm-semi-car-img {
  height: 160px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gm-semi-car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gm-semi-car-card:hover .gm-semi-car-img img { transform: scale(1.05); }
.gm-semi-car-body { padding: 14px 16px 18px; flex: 1; display: flex; flex-direction: column; }

/* ─────────────────────────────────────────────────────
   CTA BAND — aprimorada
───────────────────────────────────────────────────── */
.gm-cta-band {
  background: linear-gradient(135deg, #A30000 0%, #CC0000 50%, #E60012 100%);
  color: #fff; padding: 72px 40px;
  position: relative; overflow: hidden;
}
.gm-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ═════════════════════════════════════════════════════
   BLOG — card reutilizável, layout do artigo, tipografia
   de leitura, índice, FAQ, byline e box de autor.
═════════════════════════════════════════════════════ */

/* ── Card (listagem, relacionados, arquivo do autor) ── */
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.blog-card-media { position: relative; aspect-ratio: 16/10; background: var(--gray-100); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-media-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-media-ph svg { width: 42%; height: 42%; }
.blog-card-badge {
  position: absolute; top: 10px; left: 10px; color: #fff; font-size: 10.5px;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--gray-900); margin: 0 0 8px; line-height: 1.35;
}
.blog-card-resumo { font-size: 13.5px; line-height: 1.6; color: var(--gray-600); margin: 0 0 16px; flex: 1; }
.blog-card-foot { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray-500); margin-top: auto; }
.blog-card-avatar {
  width: 22px; height: 22px; border-radius: 50%; background-color: var(--gray-300);
  background-size: cover; background-position: center; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff; font-family: var(--font-display);
}
.blog-card-byline { font-weight: 600; color: var(--gray-700); }
.blog-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); flex-shrink: 0; }

/* ── Barra de progresso de leitura (fixa no topo) ── */
.article-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--color-honda-red); z-index: 400; transition: width .1s linear;
}
@media (prefers-reduced-motion: reduce) { .article-progress { transition: none; } }

/* ── Layout: conteúdo + sidebar (índice/relacionados/CTA) ── */
.article-layout { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 48px; align-items: start; }
.article-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }
.article-toc-mobile { display: none; }
@media (max-width: 1023px) {
  .article-layout { grid-template-columns: 1fr; padding: 0 24px; gap: 0; }
  .article-sidebar-toc { display: none; } /* substituído pelo <details> mobile acima do corpo */
  .article-toc-mobile { display: block; }
}
@media (max-width: 640px) { .article-layout { padding: 0 18px; } }

/* ── Byline (mini avatar + nome do autor, linkável) ── */
.article-byline { display: flex; align-items: center; gap: 10px; margin: 14px 0 28px; flex-wrap: wrap; }
.article-byline-avatar {
  width: 38px; height: 38px; border-radius: 50%; background-color: var(--gray-300);
  background-size: cover; background-position: center; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; font-family: var(--font-display);
}
.article-byline-name { font-size: 14px; font-weight: 700; color: var(--gray-900); text-decoration: none; }
.article-byline-name:hover { color: var(--color-honda-red); }
.article-byline-meta { font-size: 12.5px; color: var(--gray-500); line-height: 1.5; }

/* ── Índice (TOC): box no fluxo (mobile <details>) + variante sticky sidebar ── */
.article-toc { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); }
.article-toc > summary, .article-toc-title {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gray-900);
  padding: 16px 20px; cursor: pointer; list-style: none; user-select: none; min-height: 44px; display: flex; align-items: center;
}
.article-toc > summary::-webkit-details-marker { display: none; }
.article-toc > summary::after { content: '›'; margin-left: auto; transform: rotate(90deg); transition: transform .15s; }
.article-toc[open] > summary::after { transform: rotate(-90deg); }
.article-toc-list { margin: 0; padding: 0 20px 16px; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.article-toc-list a {
  font-size: 13.5px; color: var(--gray-700); text-decoration: none; display: block;
  padding: 3px 0; min-height: 24px; transition: color .15s;
}
.article-toc-list a:hover, .article-toc-list a.is-active { color: var(--color-honda-red); font-weight: 600; }
.article-toc-list .lvl-3 { padding-left: 14px; }
.article-sidebar-toc .article-toc-list { padding: 0 18px 18px; max-height: 50vh; overflow-y: auto; }

/* ── Corpo do artigo: tipografia de leitura ── */
.article-body { font-size: 17px; line-height: 1.8; color: var(--gray-700); }
.article-body h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--gray-900);
  margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100);
  scroll-margin-top: 96px;
}
.article-body h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--gray-900);
  margin: 28px 0 12px; scroll-margin-top: 96px;
}
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px; padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 8px 0 20px; }
.article-body blockquote {
  margin: 24px 0; padding: 4px 24px; border-left: 3px solid var(--color-honda-red);
  color: var(--gray-600); font-style: italic; font-size: 17px;
}
.article-body table { width: 100%; border-collapse: collapse; }
.article-body .table-wrap, .article-body pre { overflow-x: auto; margin: 0 0 20px; }
.article-body a { color: var(--color-honda-red); }
@media (max-width: 640px) {
  .article-body { font-size: 16.5px; }
  .article-body h2 { font-size: 21px; }
  .article-body h3 { font-size: 17.5px; }
}

/* ── Resumo rápido / pontos-chave ── */
.article-resumo, .article-pontos {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 20px 24px; margin-bottom: 20px;
}
.article-resumo-titulo, .article-pontos-titulo {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--gray-900); margin: 0 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.article-resumo p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--gray-700); }
.article-pontos ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.article-pontos li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--gray-700); }
.article-pontos li::before { content: '✓'; color: var(--color-success); font-weight: 700; flex-shrink: 0; }

/* ── FAQ (accordion nativo) ── */
.article-faq { margin-top: 40px; padding-top: 8px; }
.article-faq-item { border-bottom: 1px solid var(--gray-100); }
.article-faq-item summary {
  padding: 16px 4px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  color: var(--gray-900); cursor: pointer; list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; min-height: 44px; user-select: none;
}
.article-faq-item summary::-webkit-details-marker { display: none; }
.article-faq-item summary::after { content: '+'; font-size: 20px; color: var(--gray-500); flex-shrink: 0; transition: transform .15s; }
.article-faq-item[open] summary::after { transform: rotate(45deg); }
.article-faq-item p { margin: 0 0 18px; padding: 0 4px; font-size: 14.5px; line-height: 1.65; color: var(--gray-600); }

/* ── Box do autor ── */
.author-box {
  display: flex; gap: 16px; background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 24px; margin: 32px 0;
}
.author-box-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; background-color: var(--gray-300);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff; font-family: var(--font-display);
}
.author-box-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--gray-900); text-decoration: none; }
.author-box-name:hover { color: var(--color-honda-red); }
.author-box-cargo { font-size: 12.5px; color: var(--color-honda-red); font-weight: 600; margin: 2px 0 8px; }
.author-box-bio { font-size: 13.5px; line-height: 1.6; color: var(--gray-600); margin: 0 0 10px; }
.author-box-links { display: flex; gap: 10px; }
.author-box-links a {
  width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; color: var(--gray-600); text-decoration: none;
}
@media (max-width: 480px) { .author-box { flex-direction: column; } }

/* ── Arquivo do autor: hero ── */
.author-hero { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.author-hero-avatar {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0; background-color: var(--gray-300);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 700; color: #fff; font-family: var(--font-display);
}
@media (max-width: 640px) { .author-hero { flex-direction: column; text-align: center; } }
@media (max-width: 768px) { .gm-cta-band { padding: 52px 20px; } }
