/* ============================================================
   GOLD CAR — style.css
   Identidade: revenda de veículos de bairro, prática e confiável —
   azul institucional + laranja de destaque nos preços (o "de/por"
   clássico das lojas de carro brasileiras), tipografia Poppins
   (títulos arredondados e amigáveis) + Inter no corpo de texto.
   Fundo claro, cards brancos com sombra suave, topo de contato
   fixo — o visual de concessionária de bairro que passa confiança.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* ---- Cor ---- */
  --bg: #eef2f8;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f4f9;
  --border: rgba(13, 33, 64, 0.10);
  --border-strong: rgba(13, 33, 64, 0.18);

  --paper: #ffffff;
  --paper-2: #ffffff;
  --ink: #0e1d33;
  --ink-muted: #5b6b82;

  /* Cor primária da loja (identidade dinâmica) + variações derivadas.
     Os valores abaixo são o padrão visual da Gold Car — quando uma
     loja é resolvida (js/store-theme.js), todas essas variáveis são
     recalculadas a partir de store.primary_color/secondary_color. */
  --store-primary: #b8862b;
  --store-primary-hover: #e3b04f;
  --store-primary-dim: #17140d;
  --store-primary-rgb: 184, 134, 43;
  --store-primary-contrast: #201804;

  /* Cor secundária da loja — usada em preço e selos de oferta */
  --store-secondary: #f2621f;
  --store-secondary-hover: #cf4c10;
  --store-secondary-rgb: 242, 98, 31;
  --store-secondary-contrast: #ffffff;

  --text: #16233a;
  --text-muted: #5b6b82;
  --text-faint: #8a97ab;

  --success: #1fae58;
  --danger: #d1444a;

  /* Cores fixas do rodapé (permanece escuro para ancorar a página) */
  --footer-bg: #0b1729;
  --footer-text: #eef2f8;
  --footer-text-muted: #93a2b9;
  --footer-border: rgba(255, 255, 255, 0.08);

  /* ---- Tipografia ---- */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* ---- Layout ---- */
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
  --topbar-h: 40px;

  --shadow-card: 0 18px 38px -22px rgba(14, 29, 51, 0.25);
  --shadow-gold: 0 10px 26px -8px rgba(var(--store-primary-rgb), 0.42);
  --shadow-price: 0 8px 20px -6px rgba(var(--store-secondary-rgb), 0.45);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET ============ */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
:focus-visible { outline: 2px solid var(--store-primary-hover); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ TOPO DE CONTATO ============ */
.topbar {
  height: var(--topbar-h);
  background: var(--store-primary-dim);
  color: #dce8fb;
  font-size: 12.5px;
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.topbar .hours { display: flex; align-items: center; gap: 8px; }
.topbar .hours svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar .topbar-links { display: flex; align-items: center; gap: 20px; }
.topbar a { display: flex; align-items: center; gap: 6px; transition: color .2s ease; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; }

/* ============ TIPOGRAFIA UTILITÁRIA ============ */
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--store-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--store-secondary);
  display: inline-block;
}
.section-title { font-size: clamp(28px, 4vw, 40px); color: var(--text); }
.section-title.on-light { color: var(--ink); }
.section-sub { color: var(--text-muted); max-width: 560px; margin-top: 14px; font-size: 16px; }
.section-sub.on-light { color: var(--ink-muted); }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { content:''; width:26px; height:3px; border-radius: 2px; background:var(--store-secondary); }

section { padding: 88px 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.section-light { background: var(--paper); color: var(--ink); }
.section-alt { background: var(--bg-soft); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--store-primary-hover), var(--store-primary));
  color: var(--store-primary-contrast);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(var(--store-primary-rgb),0.55); }
.btn-price {
  background: linear-gradient(135deg, #ff8a4c, var(--store-secondary));
  color: #fff;
  box-shadow: var(--shadow-price);
}
.btn-price:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(242,98,31,0.55); }
.btn-outline {
  border: 1.5px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
}
.btn-outline:hover { border-color: var(--store-primary); color: var(--store-primary); transform: translateY(-2px); }
.btn-outline.on-light { border-color: rgba(14,29,51,0.16); color: var(--ink); background: transparent; }
.btn-outline.on-light:hover { border-color: var(--store-primary); color: var(--store-primary); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.06); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.14); color: #fff; transform: translateY(-2px); }
.btn-whatsapp {
  background: #1fae58;
  color: #fff;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(31,174,88,.55); }
.btn-dark { background: #17161c; color: #fff; }
.btn-dark:hover { background: #24222b; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, height .3s ease;
}
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }
.header.is-scrolled { box-shadow: 0 6px 24px -12px rgba(14,29,51,0.22); }

.logo { display: flex; align-items: center; gap: 10px; min-height: 38px; font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: -0.01em; z-index: 1100; color: var(--ink); }
.logo .mark { color: var(--store-primary); }

/* Enquanto a loja ainda não foi resolvida (1ª carga da sessão, sem
   cache de pintura), esconde só o nome/logo dependente da loja —
   nunca mostra a identidade de outra loja por engano. Removido por
   applyStoreBranding() (js/store-context.js) assim que a loja resolve. */
html.store-pending .logo,
html.store-pending [data-store-name] { visibility: hidden; }
.logo small { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.24em; color: var(--text-faint); font-weight: 500; margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color .25s ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute; left: 0; bottom: 2px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--store-secondary);
  transition: width .3s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--store-primary); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.3; }
.header-phone span { font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }
.header-phone b { font-family: var(--font-display); font-size: 16px; color: var(--ink); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  position: relative;
  z-index: 1100;
}
.hamburger span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s ease, background .3s ease; }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility 0s linear .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mobile-menu-close {
  position: absolute;
  top: calc(18px + env(safe-area-inset-top));
  right: 22px;
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(14,29,51,0.10);
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu .btn { margin-top: 30px; align-self: flex-start; }

body.menu-open { overflow: hidden; }

/* ============ HERO / BANNER ROTATIVO ============ */
.hero { position: relative; overflow: hidden; background: var(--store-primary-dim); }
.hero-carousel { position: relative; height: min(560px, 78vh); }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .9s ease, visibility 0s linear .9s;
  background-size: cover;
  background-position: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s ease; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,23,41,0.88) 28%, rgba(11,23,41,0.55) 62%, rgba(11,23,41,0.15) 100%);
}
.hero-slide-content { position: relative; z-index: 2; max-width: 760px; }
.hero-slide-content .eyebrow { color: var(--store-primary-hover); }
.hero-slide-content .eyebrow::before { background: var(--store-secondary); }
.hero-slide-content h1 { font-size: clamp(38px, 4.4vw, 64px); color: #fff; margin-bottom: 20px; max-width: 760px; }
.hero-slide-content h1 .accent { color: var(--store-primary-hover); }
.hero-slide-content p { color: #cfdcef; font-size: 18px; max-width: 600px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-actions .btn { min-width: 196px; padding: 16px 28px; }

.hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 8px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all .3s ease; }
.hero-dots button.is-active { background: var(--store-secondary); width: 24px; border-radius: 5px; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .25s ease; }
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-arrow svg { width: 20px; height: 20px; }

/* ---- Ações rápidas + busca (logo abaixo do banner) ---- */
.quick-actions {
  position: relative; z-index: 4; margin-top: 24px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px;
}
.quick-card {
  position: relative;
  background: linear-gradient(135deg, #171717 0%, #222222 100%);
  border: 1px solid rgba(var(--store-primary-rgb),.45);
  border-radius: 18px;
  padding: 26px 30px;
  min-height: 152px;
  box-shadow: 0 22px 44px -24px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 24px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.quick-card::after { content: ''; position: absolute; left: 12%; right: 12%; bottom: -2px; height: 3px; background: var(--store-primary-hover); border-radius: 50%; filter: blur(3px); opacity: 0; transition: opacity .35s ease; }
.quick-card:hover { transform: translateY(-6px); border-color: var(--store-primary-hover); box-shadow: 0 28px 52px -22px rgba(0,0,0,.8), 0 12px 30px -20px rgba(var(--store-primary-rgb),.75); }
.quick-card:hover::after { opacity: .9; }
.quick-card .icon-wrap { width: 92px; height: 92px; border-radius: 20px; background: linear-gradient(145deg, rgba(var(--store-primary-rgb),.22), rgba(var(--store-primary-rgb),.08)); border: 1px solid rgba(var(--store-primary-rgb),.48); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.1); }
.quick-card .icon-wrap svg { width: 54px; height: 54px; color: var(--store-primary-hover); }
.quick-card.buy .icon-wrap, .quick-card.sell .icon-wrap { background: linear-gradient(145deg, rgba(var(--store-primary-rgb),.22), rgba(var(--store-primary-rgb),.08)); }
.quick-card.sell .icon-wrap svg { color: var(--store-primary-hover); }
.quick-card .quick-copy { flex: 1; }
.quick-card b { font-family: var(--font-display); font-size: 22px; color: #fff; display: block; margin-bottom: 4px; }
.quick-card span { font-size: 14px; color: #aeb9ca; }
.quick-card .arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s var(--ease), background .3s ease, border-color .3s ease; }
.quick-card .arrow svg { width: 20px; height: 20px; color: var(--store-primary-hover); }
.quick-card:hover .arrow { transform: translateX(5px); background: var(--store-primary-hover); border-color: var(--store-primary-hover); }
.quick-card:hover .arrow svg { color: var(--store-primary-contrast); }

@media (min-width: 1025px) {
  .quick-actions { margin-top: -72px; }
}

.search-panel { position: relative; z-index: 3; margin-top: 30px; }
.search-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.search-card h3 { font-size: 19px; margin-bottom: 4px; color: var(--ink); }
.search-card .hint { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-family: var(--font-mono); font-weight: 600; }
.field select, .field input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: var(--text);
  font-size: 14.5px;
  transition: border-color .25s ease;
  appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%235b6b82' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.field select:focus, .field input:focus { border-color: var(--store-primary); }

/* ---- Fileira de marcas (atalho de filtro) ---- */
.brand-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
}
.brand-row {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
  padding: 6px 2px 14px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}
.brand-row.is-dragging { cursor: grabbing; user-select: none; scroll-snap-type: none; }
.brand-row::-webkit-scrollbar { display: none; }
.brand-nav {
  position: static;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--store-primary-rgb),.85);
  border-radius: 50%;
  background: rgba(14,29,51,.96);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transform: none;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}
.brand-nav:hover { background: var(--store-primary); color: var(--store-primary-contrast); transform: scale(1.08); }
.brand-nav:disabled { opacity: .35; cursor: default; }
.brand-nav svg { width: 20px; height: 20px; }
.brand-nav-prev { grid-column: 1; grid-row: 1; }
.brand-nav-next { grid-column: 3; grid-row: 1; }
.brand-chip {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 96px;
  scroll-snap-align: start;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.brand-chip:hover { border-color: var(--store-primary); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.brand-badge {
  width: 54px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); text-align: center; line-height: 1;
}
.brand-badge img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
}
.brand-chip span { font-size: 12.5px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }

@media (max-width: 768px) {
  .brand-carousel { grid-template-columns: 42px minmax(0, 1fr) 42px; gap: 6px; }
  .brand-nav { width: 38px; height: 38px; }
}

/* ============ CARDS DE VEÍCULO ============ */
.grid-vehicles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .3s ease, box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }

.vc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0b1729; }
.vc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vehicle-card:hover .vc-media img { transform: scale(1.06); }
.vc-media-link { position: absolute; inset: 0; z-index: 1; }
.vc-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; flex-wrap: wrap; z-index: 2; }
.badge-vendido { background: rgba(14,29,51,0.92); color: #fff; }
.vc-sold-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(11,23,41,0.62); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.vc-sold-overlay span { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: 0.08em; color: #fff; border: 2px solid #fff; padding: 6px 22px; transform: rotate(-8deg); }
.vehicle-card.is-sold .vc-media img { filter: grayscale(45%); }
.vehicle-card.is-sold .vc-link { background: var(--text-faint); }
.badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 11px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-destaque { background: rgba(var(--store-primary-rgb),0.94); color: var(--store-primary-contrast); }
.badge-novo { background: rgba(31,174,88,0.92); color: #fff; }
.badge-oportunidade { background: rgba(242,98,31,0.92); color: #fff; }
.vc-wa {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11,23,41,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: #25D366;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background .3s ease, transform .3s ease;
}
.vc-wa:hover { background: #1fae58; color: #fff; transform: scale(1.08); }
.vc-wa svg { width: 20px; height: 20px; }

.vc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.vc-title { font-family: var(--font-display); font-size: 19px; color: var(--ink); font-weight: 700; }
.vc-version { color: var(--text-muted); font-size: 13.5px; margin-top: 2px; }
.vc-location { display: flex; align-items: center; gap: 6px; color: var(--text-faint); font-size: 12.5px; margin-top: 6px; }
.vc-location svg { width: 13px; height: 13px; flex-shrink: 0; }

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px dashed var(--border-strong);
  border-bottom: 1px dashed var(--border-strong);
  padding: 12px 0;
}
.spec-strip .spec { text-align: center; border-right: 1px dashed var(--border); }
.spec-strip .spec:last-child { border-right: none; }
.spec-strip .spec b { display: block; font-family: var(--font-mono); font-size: 12.5px; color: var(--ink); font-weight: 600; }
.spec-strip .spec span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); margin-top: 3px; }

.vc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.vc-price-wrap { display: flex; flex-direction: column; }
.vc-price-old { font-size: 12px; color: var(--text-faint); text-decoration: line-through; }
.vc-price { font-family: var(--font-display); font-size: 21px; color: var(--store-secondary); font-weight: 800; }
.vc-price small { display:block; font-size: 10px; color: var(--text-faint); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;}
.vc-link { font-size: 13px; font-weight: 700; color: var(--store-primary-contrast); background: var(--store-primary); padding: 10px 18px; border-radius: 8px; transition: all .3s ease; white-space: nowrap; }
.vc-link:hover { background: var(--store-primary-hover); }

/* ============ COMO FUNCIONA ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.step .num { font-family: var(--font-display); font-size: 38px; color: var(--store-primary); opacity: 0.4; font-weight: 800; }
.step h4 { margin-top: 12px; font-size: 17px; color: var(--ink); }
.step p { color: var(--text-muted); font-size: 14px; margin-top: 8px; }

/* ============ DIFERENCIAIS ============ */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card { padding: 28px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--border); }
.diff-card .icon-wrap {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--store-primary-hover), var(--store-primary));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}
.diff-card .icon-wrap svg { width: 23px; height: 23px; color: #fff; }
.diff-card h4 { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.diff-card p { color: var(--text-muted); font-size: 14.5px; }

/* ============ FINANCIAMENTO ============ */
.finance-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.finance-copy h2 { margin-bottom: 16px; }
.finance-copy p { color: var(--text-muted); margin-bottom: 26px; max-width: 460px; }
.finance-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.finance-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text); }
.finance-list svg { width: 18px; height: 18px; color: var(--store-primary); flex-shrink: 0; }

.finance-card { background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.finance-card .field { margin-bottom: 20px; }
.finance-card input[type="range"] { width: 100%; accent-color: var(--store-primary); }
.finance-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.finance-result { margin-top: 24px; padding: 22px; border-radius: var(--radius-md); background: var(--surface-2); border: 1px dashed var(--border-strong); text-align: center; }
.finance-result .value { font-family: var(--font-display); font-size: 30px; color: var(--store-secondary); font-weight: 800; }
.finance-result .label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 4px; }
.finance-disclaimer { font-size: 11.5px; color: var(--text-faint); margin-top: 14px; text-align: center; }
.finance-card-static { padding: 36px; }
.finance-static-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--store-primary-dim); color: var(--store-primary); margin-bottom: 22px; }
.finance-static-icon svg { width: 27px; height: 27px; }
.finance-static-eyebrow { margin: 0 0 8px; color: var(--store-primary); font-family: var(--font-mono); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.finance-card-static h3 { font-family: var(--font-display); font-size: 25px; line-height: 1.16; color: var(--ink); margin-bottom: 12px; }
.finance-card-static > p:not(.finance-static-eyebrow):not(.finance-disclaimer) { color: var(--text-muted); margin-bottom: 22px; }
.finance-card-static .finance-disclaimer { text-align: left; margin-bottom: 0; }

/* ============ TIMELINE / NOVIDADES ============ */
.new-strip { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.new-strip::-webkit-scrollbar { height: 6px; }
.new-strip::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 6px; }
.new-strip .vehicle-card { min-width: 300px; scroll-snap-align: start; }

/* ============ DEPOIMENTOS ============ */
.testimonials { position: relative; overflow: hidden; padding: 6px 0 12px; }
.testi-track { display: flex; gap: 24px; width: max-content; padding-bottom: 8px; }
.testi-track::-webkit-scrollbar { display: none; }
.testi-track.is-ticker { animation: testimonialsMarquee 30s linear infinite; will-change: transform; }
.testimonials:hover .testi-track.is-ticker,
.testimonials:focus-within .testi-track.is-ticker { animation-play-state: paused; }
.testi-card {
  width: 320px; flex: 0 0 320px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--store-secondary); font-size: 14px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--store-primary-hover), var(--store-primary)); display:flex; align-items:center; justify-content:center; font-family: var(--font-display); color: #fff; font-size: 15px; font-weight: 700; }
.testi-author b { font-size: 14px; display: block; color: var(--ink); }
.testi-author span { font-size: 12px; color: var(--text-faint); }

@keyframes testimonialsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

@media (max-width: 768px) {
  .testi-card { width: min(300px, calc(100vw - 72px)); flex-basis: min(300px, calc(100vw - 72px)); }
  .testi-track.is-ticker { animation-duration: 36s; }
}

@media (prefers-reduced-motion: reduce) {
  .testi-track.is-ticker { animation: none; }
}

/* ============ SOBRE / NÚMEROS ============ */
.counters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.counter b { font-family: var(--font-display); font-size: clamp(34px, 5vw, 50px); color: var(--store-primary); display: block; }
.counter span { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }

/* ============ LOCALIZAÇÃO ============ */
.location-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.location-info { padding: 44px; background: var(--surface); }
.location-info .info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.location-info .info-row:last-child { border-bottom: none; }
.location-info .info-row svg { width: 20px; height: 20px; color: var(--store-primary); flex-shrink: 0; margin-top: 2px; }
.location-info .info-row b { display: block; font-size: 14.5px; color: var(--ink); }
.location-info .info-row span { font-size: 13.5px; color: var(--text-muted); }
.map-embed { min-height: 380px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; text-align: center; padding: 30px; }
.map-embed span { color: var(--text-faint); font-size: 13px; font-family: var(--font-mono); }
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }

/* ============ FOOTER (sempre escuro) ============ */
.footer { background: var(--footer-bg); color: var(--footer-text); padding-top: 70px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-about p { color: var(--footer-text-muted); font-size: 14px; max-width: 280px; }
.footer h5 { font-family: var(--font-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--store-primary-hover); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--footer-text-muted); font-size: 14.5px; transition: color .25s ease, padding-left .25s ease; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--footer-border); display: flex; align-items: center; justify-content: center; transition: all .3s ease; color: #fff; }
.footer-social a:hover { background: var(--store-primary-hover); border-color: var(--store-primary-hover); color: var(--store-primary-contrast); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid var(--footer-border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--footer-text-muted); font-size: 13px; }
.dev-credit { font-family: var(--font-mono); font-size: 13px; color: var(--footer-text-muted); }
.dev-credit a { font-weight: 700; animation: devColorShift 3.2s ease-in-out infinite; }

/* ============ WHATSAPP FLUTUANTE + POPUP ============ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: #1fae58; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(31,174,88,0.7);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { animation-play-state: paused; transform: scale(1.06); }

.wa-popup {
  position: fixed; bottom: 100px; right: 26px; z-index: 950;
  width: 300px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 50px -16px rgba(14,29,51,0.35);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.97);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.wa-popup.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.wa-popup-head { background: #1fae58; color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; position: relative; }
.wa-popup-head svg.brand { width: 26px; height: 26px; flex-shrink: 0; }
.wa-popup-head b { font-size: 14px; display: block; }
.wa-popup-head span { font-size: 11.5px; opacity: .85; }
.wa-popup-close { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.wa-popup-close svg { width: 13px; height: 13px; }
.wa-popup-body { padding: 18px; }
.wa-popup-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.wa-popup-body .field { margin-bottom: 12px; }
.wa-popup-body input { width: 100%; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 11px 13px; font-size: 13.5px; }

/* ============ PAGE HERO (páginas internas) ============ */
.page-hero {
  padding: 56px 0 56px;
  background: linear-gradient(120deg, var(--store-primary-dim), var(--store-primary) 130%);
  position: relative;
}
.page-hero .breadcrumb, .page-hero h1, .page-hero p { color: #fff; }
.page-hero .breadcrumb a { color: #b9d4f7; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero p { color: #cfe0f7; }
.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }
.page-hero h1 { font-size: clamp(30px, 5vw, 44px); }
.page-hero p { margin-top: 12px; max-width: 560px; }

/* ============ ESTOQUE / FILTROS ============ */
.stock-layout { display: grid; grid-template-columns: 272px 1fr; gap: 32px; align-items: start; }
.filters-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.filters-panel h3 { font-size: 16px; display:flex; align-items:center; justify-content:space-between; margin-bottom: 18px; color: var(--ink);}
.filters-panel .clear-filters { font-family: var(--font-mono); font-size: 11.5px; color: var(--store-secondary); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.filter-group { margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group label.title { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-family: var(--font-mono); font-weight: 600; margin-bottom: 12px; }
.range-inputs { display: flex; gap: 10px; align-items: center; }
.range-inputs input { width: 100%; }
.checkbox-list { display: flex; flex-direction: column; gap: 10px; }
.checkbox-list label { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--text); cursor: pointer; }
.checkbox-list input { accent-color: var(--store-primary); width: 16px; height: 16px; }

.stock-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; flex-wrap: wrap; }
.stock-count { font-family: var(--font-mono); font-size: 14px; color: var(--text-muted); }
.stock-count b { color: var(--ink); }
.stock-search { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 16px; flex: 1; max-width: 340px; }
.stock-search svg { width: 17px; height: 17px; color: var(--text-faint); flex-shrink: 0; }
.stock-search input { background: transparent; border: none; width: 100%; color: var(--text); font-size: 14px; }
.sort-select select { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 34px 10px 16px; font-size: 13.5px; color: var(--text); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%235b6b82' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.mobile-filter-toggle { display: none; }
.apply-filters-btn { display: none; }
.filters-backdrop { display: none; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); grid-column: 1/-1; }
.empty-state svg { width: 46px; height: 46px; color: var(--text-faint); margin-bottom: 16px; }
.grid-state { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 14.5px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.grid-state svg { width: 18px; height: 18px; color: var(--text-faint); }
.grid-state-error { color: var(--store-secondary-hover); }
.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border-strong); border-top-color: var(--store-primary); animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination button { width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border); font-family: var(--font-mono); font-size: 13px; background: var(--surface); transition: all .25s ease; }
.pagination button.active { background: var(--store-primary); color: var(--store-primary-contrast); border-color: var(--store-primary); }
.pagination button:hover:not(.active) { border-color: var(--store-primary); color: var(--store-primary); }

/* ============ PÁGINA DO VEÍCULO ============ */
.vehicle-gallery { display: grid; grid-template-columns: 96px 1fr; gap: 16px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery-thumbs img { width: 96px; height: 74px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .55; border: 1.5px solid transparent; transition: all .25s ease; }
.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border-color: var(--store-primary); }
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: #0b1729; cursor: zoom-in; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.vehicle-summary-card .badges { display: flex; gap: 8px; margin-bottom: 16px; }
.vehicle-summary-card h1 { font-size: 27px; color: var(--ink); }
.vehicle-summary-card .version { color: var(--text-muted); margin-top: 4px; margin-bottom: 18px; }
.vehicle-summary-card .price-old { font-size: 14px; color: var(--text-faint); text-decoration: line-through; }
.vehicle-summary-card .price { font-family: var(--font-display); font-size: 32px; color: var(--store-secondary); font-weight: 800; margin-bottom: 18px; }
.vehicle-summary-card .actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.contact-rows { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.contact-rows a, .contact-rows .row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-muted); transition: color .2s ease; }
.contact-rows a:hover { color: var(--store-primary); }
.contact-rows svg { width: 17px; height: 17px; color: var(--store-primary); flex-shrink: 0; }

.warranty-box { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px 26px; }
.warranty-box .icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: rgba(31,174,88,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.warranty-box .icon-wrap svg { width: 24px; height: 24px; color: var(--success); }
.warranty-box b { display: block; font-size: 15.5px; color: var(--ink); }
.warranty-box span { font-size: 13.5px; color: var(--text-muted); }

.info-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 30px; }
.info-block p { color: var(--text-muted); font-size: 14.5px; line-height: 1.8; }
.info-block a { color: var(--store-primary); font-weight: 600; }

.info-table { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--surface); }
.info-table .cell { padding: 16px 20px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); }
.info-table .cell:nth-child(2n) { border-right: none; }
.info-table .cell span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-faint); font-family: var(--font-mono); margin-bottom: 4px; }
.info-table .cell b { font-size: 14.5px; color: var(--ink); }

.items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.item-chip { display: flex; align-items: center; gap: 10px; padding: 13px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13.5px; }
.item-chip svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; }

.lightbox { position: fixed; inset: 0; background: rgba(6,10,18,0.94); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility 0s linear .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 10px; }
.lightbox-close { position: absolute; top: 24px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; }
.lightbox-close svg { width: 20px; height: 20px; }

/* ============ FORMULÁRIOS ============ */
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1/-1; }
.form-card textarea { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text); width: 100%; resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--text-faint); margin-top: 16px; }
.form-success { display: none; text-align: center; padding: 50px 20px; }
.form-success.is-visible { display: block; }
.form-success svg { width: 54px; height: 54px; color: var(--success); margin-bottom: 18px; }
.sold-notice { display: flex; align-items: center; gap: 10px; background: rgba(31,174,88,0.08); border: 1px solid rgba(31,174,88,0.3); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 18px; font-size: 13.5px; color: var(--ink); }
.sold-notice svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* ============ SOBRE PAGE EXTRAS ============ */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-card); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.value-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.value-item { display: flex; gap: 16px; }
.value-item .n { font-family: var(--font-display); color: var(--store-primary); font-size: 15px; font-weight: 800; }
.value-item h4 { font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.value-item p { color: var(--text-muted); font-size: 14px; }

/* ============ Página de contato ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }


/* ===== Redes sociais na seção de localização ===== */
.location-social-row {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border);
}
.location-social-heading { display:flex; align-items:flex-start; gap:14px; margin-bottom:14px; }
.location-social-heading > svg { width:22px; height:22px; flex:0 0 22px; color:var(--store-primary); margin-top:1px; }
.location-social-heading b { display:block; color:var(--navy); font-size:14px; margin-bottom:3px; }
.location-social-heading span { display:block; color:var(--muted); font-size:12.5px; line-height:1.45; }
.location-social-links { display:flex; gap:10px; flex-wrap:wrap; padding-left:36px; }
.location-social-links [data-contact-item] { display:inline-flex; }
.location-social-btn {
  display:inline-flex; align-items:center; gap:8px; min-height:38px; padding:9px 13px;
  border:1px solid var(--border); border-radius:10px; background:#fff; color:var(--navy);
  font-size:12.5px; font-weight:650; transition:.2s ease; box-shadow:0 5px 14px -12px rgba(11,23,41,.45);
}
.location-social-btn svg { width:17px; height:17px; flex:0 0 17px; }
.location-social-btn:hover { transform:translateY(-1px); border-color:var(--store-primary); color:var(--store-primary); box-shadow:0 9px 18px -13px rgba(11,23,41,.5); }
@media (max-width: 560px) {
  .location-social-links { padding-left:0; }
  .location-social-btn { flex:1; justify-content:center; min-width:120px; }
}
