/* ==========================================================================
   importour — design system
   Identidade escura inspirada na EVZONE (evzone.pt): fundo quase-preto,
   texto marfim quente, dourado metálico em gradiente, botões em pílula.
   Tipografia: Montserrat.
   ========================================================================== */

:root {
  --bg: #0b0a08;
  --bg-raised: #17140f;
  --bg-raised-2: #1d1912;
  --ink: #fbf8ef;
  --ink-soft: #b4ab9b;
  --ink-faint: #7a7364;
  --line: rgba(251,248,239,.12);
  --line-strong: rgba(251,248,239,.22);
  --yellow: #d3aa4a;
  --yellow-deep: #9b7828;
  --gold: #d3aa4a;
  --gold-light: #f0d28a;
  --gold-deep: #9b7828;
  --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
  --gold-text-on: #15100a;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --container: 1180px;
  --font: "Montserrat", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scrollbar-gutter: stable; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 720px) { .container { padding: 0 48px; } }
.section { padding: 88px 0; }
.section-soft { background: var(--bg-raised); }
.section-ink { background: var(--bg); color: var(--ink); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--ink); }
.section-ink .breadcrumb, .section-ink .breadcrumb a { color: var(--ink-faint); }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
}

/* ---------- Type ---------- */
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-ink .eyebrow { color: var(--gold); }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(251,248,239,.05);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light);
  margin: 0 0 14px;
}

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.05; font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.1; }
h3 { font-size: 1.25rem; line-height: 1.3; }
p { margin: 0; }
.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 60ch; }
.section-ink .lede { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, filter .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary { background-image: var(--gold-gradient); color: var(--gold-text-on); }
.btn-primary:hover { filter: brightness(1.07); }
.btn-whatsapp { background-image: var(--gold-gradient); color: var(--gold-text-on); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 26px; border-radius: 999px; }
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-dark { background-image: var(--gold-gradient); color: var(--gold-text-on); }
.btn-dark:hover { filter: brightness(1.07); }
.btn-ghost { background: rgba(251,248,239,.05); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(251,248,239,.09); }
.section-ink .btn-ghost { color: var(--ink); border-color: var(--line-strong); }
.section-ink .btn-ghost:hover { border-color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,10,8,.94);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo { flex: none; }
.logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 17px; flex-wrap: nowrap; }
.nav-links a { font-size: .88rem; font-weight: 600; color: var(--ink-soft); transition: color .15s ease; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 1140px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 30px 24px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; }
  .header-cta .btn-ghost-desktop { display: none; }
}

@media (max-width: 480px) {
  .site-header .container { gap: 14px; }
  .header-cta { gap: 10px; }
  .logo img { height: 28px; }
  .header-cta .btn { padding: 10px 16px; font-size: .85rem; }
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; }
.hero h1 { font-size: clamp(2.1rem, 3.1vw, 2.75rem); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; flex-wrap: wrap; }
.stat { max-width: 220px; }
.stat b { display: block; font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; line-height: 1.15; }
.stat span { font-size: .9rem; color: var(--ink-soft); line-height: 1.35; }
.section-ink .stat span { color: var(--ink-soft); }

.hero-card {
  background: var(--bg-raised);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--gold); opacity: .12;
}
.hero-card .tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-light); }
.hero-card .quote { font-size: 1.15rem; font-weight: 600; margin: 14px 0 22px; line-height: 1.4; }
.hero-card .row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); font-size: .95rem; }
.hero-card .row b { color: var(--gold-light); font-weight: 800; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 22px; background: var(--bg-raised); }
.step .num { font-size: .85rem; font-weight: 800; color: var(--gold-light); background: rgba(211,170,74,.14); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 1rem; }

.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 44px; }
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .process-grid { grid-template-columns: 1fr; } }
.process-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-raised); overflow: hidden; }
.process-media { aspect-ratio: 4/3; background: linear-gradient(150deg, #201c14, #0e0c08); display: flex; align-items: center; justify-content: center; }
.process-media svg { width: 26%; opacity: .55; }
.process-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.process-body { padding: 22px 24px 26px; }
.process-body .num { font-size: .85rem; font-weight: 800; color: var(--gold-light); background: rgba(211,170,74,.14); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.process-body h3 { margin-bottom: 8px; }
.process-body p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Cards grid (stock / imports) ---------- */
.grid-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-3 { grid-template-columns: 1fr; } }

.car-card { height: 100%; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-raised); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.car-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--line-strong); }
.car-media { aspect-ratio: 4/3; background: linear-gradient(150deg, #201c14, #0e0c08); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.car-media svg { width: 46%; opacity: .5; }
.car-media img { width: 100%; height: 100%; object-fit: cover; }
.car-badge { position: absolute; top: 12px; left: 12px; font-size: .72rem; font-weight: 800; padding: 5px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; background: rgba(11,10,8,.7); backdrop-filter: blur(4px); border: 1px solid var(--line); color: var(--ink); }
.car-badge.available { background: rgba(47,125,79,.9); border-color: transparent; color: #fff; }
.car-badge.reserved { background: rgba(224,165,44,.92); border-color: transparent; color: #1a1a1a; }
.car-badge.sold { background: rgba(178,59,59,.92); border-color: transparent; color: #fff; }
.car-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.car-body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.car-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; }
.car-meta span { display: flex; align-items: center; gap: 5px; }
.car-price-row { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; }
.car-price { font-size: 1.15rem; font-weight: 800; color: var(--gold-light); }
.car-price.sold { color: var(--ink-faint); text-transform: uppercase; letter-spacing: .03em; font-size: 1rem; }
.car-save { font-size: .85rem; color: #6fbb8f; font-weight: 700; }

/* ---------- Segments strip ---------- */
.segments { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 32px; }
@media (max-width: 900px) { .segments { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .segments { grid-template-columns: repeat(2, 1fr); } }
.segment {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 18px; text-align: center; font-size: .88rem; font-weight: 700; color: var(--ink);
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.segment:hover { background: var(--bg-raised-2); border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.segment .icn {
  font-size: 1.7rem; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--bg-raised-2);
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testi p.quote { font-size: .95rem; color: var(--ink); margin-bottom: 18px; }
.testi .who { font-size: .85rem; font-weight: 700; color: var(--ink-soft); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.testi .who .src { display: flex; align-items: center; gap: 5px; font-weight: 600; color: var(--ink-faint); }
.testi .who .src svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ---------- Testemunhos: carrossel em scroll contínuo ---------- */
.rating-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: .95rem; color: var(--ink-soft); margin-top: 16px; }
.rating-line .google-g { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; color: var(--ink); }
.rating-line .google-g::before { content: ""; width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(from -45deg, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg); }
.rating-line a { color: var(--gold); text-decoration: underline; }
.rating-line .rating-cta { white-space: nowrap; }
.testi-marquee {
  overflow: hidden; margin-top: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testi-track { display: flex; gap: 22px; width: max-content; animation: testi-scroll 38s linear infinite; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
.testi-track .testi { width: 340px; flex-shrink: 0; }
@keyframes testi-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; overflow-x: auto; scroll-snap-type: x proximity; }
  .testi-track .testi { scroll-snap-align: start; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-category-title {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 1.05rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding-bottom: 14px; margin: 48px 0 8px !important;
  border-bottom: 1px solid var(--line-strong);
}
.faq-category-title .emoji { font-size: 1.2rem; -webkit-text-stroke: 0; letter-spacing: 0; text-transform: none; }
.faq-list .faq-category-title:first-child { margin-top: 0 !important; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 4px; font-weight: 700; font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { font-size: 1.4rem; font-weight: 400; color: var(--ink-faint); transition: transform .2s ease; flex: none; }
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 22px; color: var(--ink-soft); font-size: .95rem; max-width: 68ch; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { max-width: 20ch; }
.cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.section-ink .cta-banner, .section-soft .cta-banner { background: var(--bg-raised); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--bg); border-top: 1px solid var(--line); color: var(--ink-soft); padding: 72px 0 32px; }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: var(--gold-gradient); opacity: .55; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { color: var(--ink-soft); font-size: .92rem; transition: color .15s ease; }
.footer-grid a:hover { color: var(--ink); }
.footer-logo { font-family: var(--font); font-weight: 900; font-size: 1.3rem; color: var(--ink); margin-bottom: 14px; }
.footer-logo img { height: 44px; }
.footer-tagline { font-size: .95rem; color: var(--ink-soft); max-width: 30ch; line-height: 1.6; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item .icn { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--bg-raised); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.footer-contact-item a, .footer-contact-item span { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--ink); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-legal a { font-size: .78rem; color: var(--ink-faint); }
.footer-legal a:hover { color: var(--ink-soft); }
.footer-bottom { margin-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: var(--ink-faint); }
@media (max-width: 560px) {
  .footer-grid, .footer-grid > div { text-align: center; }
  .footer-grid > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .footer-logo { margin-bottom: 22px; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-grid ul { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-legal { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; background-image: var(--gold-gradient); color: var(--gold-text-on); padding: 10px 16px; border-radius: var(--radius); z-index: 999; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { padding: 64px 0 32px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { justify-content: flex-start; margin-top: 14px; }
.page-hero h1 { margin: 14px 0 18px; }
.page-hero .lede { margin-top: 4px; }
.breadcrumb { font-size: .82rem; color: var(--ink-faint); margin-bottom: 4px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- Photo placeholder blocks ---------- */
/* Substituir estes blocos por fotos reais: troca a <div class="photo"> por uma <img src="..." alt="...">
   mantendo a classe no elemento pai (.photo-frame) para preservar o formato/proporção. */
.photo-frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #201c14, #0e0c08);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  border: 1px solid var(--line);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .placeholder-label {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); background: rgba(0,0,0,.4); padding: 6px 10px; border-radius: 999px;
  display: inline-flex; width: fit-content; gap: 6px; align-items: center;
}
.photo-frame .placeholder-icon { font-size: 2.2rem; opacity: .5; }

.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 780px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .photo-grid { grid-template-columns: 1fr; } }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 780px) { .value-grid { grid-template-columns: 1fr; } }
.value-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .value-grid.cols-2 { grid-template-columns: 1fr; } }
.value-card { padding: 26px; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-lg); background: var(--bg-raised); }
.section-ink .value-card { background: var(--bg-raised); border-color: var(--line); border-left-color: var(--gold); }
.section-ink .value-card p { color: var(--ink-soft); }
.value-card .icn { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 1rem; }
.value-card-flat { border-left-width: 1px; border-left-color: var(--line); transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.value-card-flat:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card-flat .icn { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-raised-2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }

@media (max-width: 780px) {
  .value-card, .step { text-align: center; }
  .value-card-flat .icn, .step .num { margin-left: auto; margin-right: auto; }
  .cta-banner, .reputation { flex-direction: column; text-align: center; }
  .cta-banner h2 { max-width: none; }
}

/* ---------- Filtros / listagens dinâmicas (Stock, Importações) ---------- */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip {
  padding: 9px 18px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: .85rem; font-weight: 700; background: var(--bg-raised); cursor: pointer; color: var(--ink-soft);
}
.filter-chip.active { background-image: var(--gold-gradient); color: var(--gold-text-on); border-color: transparent; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }
.data-state { text-align: center; padding: 60px 20px; color: var(--ink-faint); font-size: .95rem; }
.hidden { display: none !important; }
.demo-notice {
  background: var(--bg-raised); border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: 14px 18px; font-size: .9rem; color: var(--ink-soft); margin-bottom: 28px;
}

/* ---------- Forms ---------- */
.form-wrap { max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; }
.form-row .field { display: flex; flex-direction: column; }
.form-row .field label { min-height: 3.2em; display: flex; align-items: flex-end; }
@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row .field label { min-height: 0; display: block; }
}
.field .hint { font-weight: 400; color: var(--ink-faint); }
.req-mark { color: #e8827a; margin-left: 3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font); font-size: .95rem; background: var(--bg-raised); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: transparent; }
.field textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute; left: -9999px; }

.contact-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
@media (max-width: 780px) { .contact-info { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .contact-info { grid-template-columns: 1fr; } }
.contact-info .item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.contact-info .item .icn { font-size: 1.3rem; flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--bg-raised); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.contact-info .item h4 { margin-bottom: 3px; font-size: .95rem; }
.contact-info .item p, .contact-info .item a { color: var(--ink-soft); font-size: .95rem; }
.contact-info .item .map-directions-link { display: inline-block; margin-top: 2px; color: var(--gold); font-weight: 700; font-size: .85rem; }
.map-embed { max-width: 960px; margin: 40px auto 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }
.map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 320px; border: 0; cursor: pointer; background: linear-gradient(150deg, #201c14, #0e0c08); color: var(--ink-soft); font-family: inherit; font-size: .95rem; font-weight: 600; }
.map-placeholder:hover { color: var(--gold-light); }
.map-placeholder .map-pin { font-size: 1.8rem; }

/* ---------- Blog: listagem ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card { height: 100%; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-raised); transition: box-shadow .2s ease, transform .2s ease; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-media { aspect-ratio: 16/10; background: linear-gradient(150deg, #201c14, #0e0c08); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.post-media span { font-size: 2rem; opacity: .55; }
.post-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-light); margin-bottom: 8px; }
.post-body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.post-excerpt { color: var(--ink-soft); font-size: .95rem; flex: 1; margin-bottom: 14px; }
.post-meta { font-size: .78rem; color: var(--ink-faint); border-top: 1px solid var(--line); padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.post-datetime { display: flex; flex-direction: column; gap: 3px; }
.post-cta { color: var(--gold-light); font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.post-card:hover .post-cta { color: var(--gold); }
.post-card-link { display: block; color: inherit; height: 100%; }

/* ---------- Blog: artigo ---------- */
.article { max-width: 720px; margin: 0 auto; }
.article-meta { display: flex; gap: 14px; align-items: center; font-size: .85rem; color: var(--ink-faint); margin-bottom: 8px; }
.article-meta .post-cat { margin-bottom: 0; }
.article h1 { margin-bottom: 18px; }
.article-lede { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 8px; }
.article-cover { aspect-ratio: 16/9; background: linear-gradient(150deg, #201c14, #0e0c08); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin: 28px 0; overflow: hidden; }
.article-cover span { font-size: 2.4rem; opacity: .5; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-body { font-size: 1.02rem; line-height: 1.75; color: var(--ink); }
.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a:not(.btn) { text-decoration: underline; text-underline-offset: 2px; color: var(--gold-light); }
.article-body strong { font-weight: 700; }
.article-callout { background: var(--bg-raised); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 18px 22px; margin: 24px 0; font-size: .95rem; }
.article-share { display: flex; gap: 10px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }

/* ---------- Footer social ---------- */
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 50%; background: var(--bg-raised); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.footer-social a:hover { color: var(--gold); border-color: var(--line-strong); background: rgba(251,248,239,.06); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Reputation / avaliações ---------- */
.reputation { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 32px; }
.reputation .big-stars { font-size: 2rem; color: var(--gold); letter-spacing: 3px; line-height: 1; display: flex; align-items: baseline; gap: 10px; }
.reputation .rating-num { font-size: 1.1rem; font-weight: 800; color: var(--ink); letter-spacing: 0; }
.reputation .txt { flex: 1; min-width: 240px; }
.reputation .txt h3 { margin-bottom: 6px; }
.reputation .txt p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Badge amarelo (poupe X) ---------- */
.save-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 14px; }
.save-badge::before { content: ""; width: 22px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ---------- Partner banner (Life Finance) ---------- */
.partner-banner { background: var(--bg-raised); border: 1px solid var(--line); color: var(--ink); border-radius: var(--radius-lg); padding: 44px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; }
@media (max-width: 780px) { .partner-banner { grid-template-columns: 1fr; } }
.partner-banner h3 { color: var(--ink); font-size: 1.5rem; margin-bottom: 14px; }
.partner-banner p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; }
.partner-side { display: flex; flex-direction: column; gap: 22px; }
.partner-stats { display: flex; gap: 36px; }
.partner-stats .stat b { color: var(--ink); }
.partner-logo-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 999px; padding: 8px 18px 8px 14px; }
.partner-logo-chip span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #7a7364; }
.partner-logo-chip img { height: 15px; width: auto; }

/* ---------- Import card (estilo importour.com real: foto + ficha escura) ---------- */
.import-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .import-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .import-grid { grid-template-columns: 1fr; } }
.import-card { display: flex; flex-direction: column; gap: 14px; }
.import-photo { aspect-ratio: 4/3; border-radius: 20px; border: 1px solid var(--line-strong); overflow: hidden; background: #111; }
.import-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.import-info { background: var(--bg-raised); border: 1px solid var(--line); border-radius: 15px; padding: 16px 18px; text-align: center; }
.import-info .model { color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.import-info .meta { color: var(--ink-soft); font-size: 1rem; margin-bottom: 8px; }
.import-info .save { color: var(--gold-light); font-weight: 700; margin-bottom: 2px; }
.import-info .final { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Stock card (clicável -> abre modal) ---------- */
.stock-card { border: none; background: none; padding: 0; text-align: left; cursor: pointer; width: 100%; font-family: inherit; }
.stock-card:hover .car-media img { transform: scale(1.04); }
.stock-card .car-media { overflow: hidden; }
.stock-card .car-media img { transition: transform .35s ease; }
.stock-card .car-price-row .btn-tiny { font-size: .78rem; font-weight: 700; color: var(--gold-light); }

/* ---------- Modal de detalhe do carro ---------- */
.car-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(3px);
  display: none; align-items: flex-start; justify-content: center; z-index: 999; padding: 32px 16px; overflow-y: auto;
}
.car-modal-overlay.open { display: flex; }
.car-modal {
  background: var(--bg-raised); color: var(--ink); border-radius: 18px; max-width: 960px; width: 100%;
  margin: auto; overflow: hidden; border: 1px solid var(--line);
}
.car-modal-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(251,248,239,.08); color: var(--ink); border: none; font-size: 1.3rem; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.car-modal-close:hover { background: rgba(251,248,239,.16); }
.car-modal-inner { position: relative; }
.car-modal-gallery { position: relative; }
.car-modal-main-wrap { position: relative; }
.car-modal-main { width: 100%; aspect-ratio: 16/10; background: #000; overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; cursor: grab; touch-action: pan-y; user-select: none; }
.car-modal-main:active { cursor: grabbing; }
.car-modal-main svg { width: 30%; opacity: .5; }
.car-modal-main .cm-track { display: flex; height: 100%; width: 100%; transition: transform .38s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.car-modal-main .cm-track.no-transition { transition: none; }
.car-modal-main .cm-slide { flex: 0 0 100%; width: 100%; height: 100%; }
.car-modal-main .cm-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; -webkit-user-drag: none; draggable: false; }
.car-modal-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(251,248,239,.25); background: rgba(11,10,8,.55); backdrop-filter: blur(4px); color: #fff; font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.car-modal-nav:hover { background: rgba(11,10,8,.8); border-color: var(--gold); }
.car-modal-nav.prev { left: 14px; }
.car-modal-nav.next { right: 14px; }
@media (max-width: 640px) { .car-modal-nav { width: 34px; height: 34px; font-size: 1.25rem; } .car-modal-nav.prev { left: 10px; } .car-modal-nav.next { right: 10px; } }
.car-modal-thumbs { display: flex; gap: 8px; padding: 10px 20px; overflow-x: auto; background: #000; }
.car-modal-thumbs img { width: 68px; height: 50px; object-fit: cover; border-radius: 6px; cursor: pointer; opacity: .55; flex: none; border: 2px solid transparent; }
.car-modal-thumbs img:hover { opacity: .85; }
.car-modal-thumbs img.active { opacity: 1; border-color: var(--gold); }
.car-modal-badge { position: absolute; top: 18px; left: 20px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: 999px; }
.car-modal-badge.available { background: rgba(47,125,79,.9); color: #fff; }
.car-modal-badge.reserved { background: rgba(224,165,44,.92); color: #1a1a1a; }
.car-modal-badge.sold { background: rgba(178,59,59,.92); color: #fff; }
.car-modal-body { padding: 28px 30px 34px; }
.car-modal-body h2 { color: var(--ink); font-size: 1.6rem; margin-bottom: 2px; }
.car-modal-version { color: var(--ink-soft); font-size: .95rem; margin-bottom: 14px; }
.car-modal-price { font-size: 1.9rem; font-weight: 800; color: var(--gold-light); margin-bottom: 22px; }
.car-modal-price.sold { color: var(--ink-faint); text-transform: uppercase; letter-spacing: .03em; font-size: 1.3rem; }
.car-modal-quickspecs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
@media (max-width: 640px) { .car-modal-quickspecs { grid-template-columns: repeat(2, 1fr); } }
.car-modal-quickspecs div { text-align: center; }
.car-modal-quickspecs .lbl { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 4px; }
.car-modal-quickspecs .val { font-size: 1rem; font-weight: 700; color: var(--ink); }
.car-modal-desc { font-size: .95rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 26px; white-space: pre-line; }
.car-modal-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin-bottom: 26px; font-size: .95rem; }
@media (max-width: 560px) { .car-modal-specs { grid-template-columns: 1fr; } }
.car-modal-specs .row { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.car-modal-specs .row b { color: var(--ink); font-weight: 600; text-align: right; }
.car-modal-specs .row span:first-child { color: var(--ink-faint); }
.car-modal-tags { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.car-modal-tags .tag-group h4 { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.car-modal-tags .tag-group-items { display: flex; flex-wrap: wrap; gap: 8px; }
.car-modal-tags .tag-group-items span { background: rgba(251,248,239,.06); border: 1px solid var(--line); color: var(--ink-soft); font-size: .82rem; padding: 6px 12px; border-radius: 999px; }
.car-modal-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Benefícios (lista minimalista, sem cards de ícone) ---------- */
.benefits-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .benefits-row { grid-template-columns: 1fr; gap: 32px; } }
.benefits-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.benefit-item:last-child { border-bottom: 1px solid var(--line); }
.benefit-item .n { font-family: var(--font); font-weight: 800; font-size: .85rem; color: var(--gold-light); flex: none; width: 28px; padding-top: 2px; }
.benefit-item h3 { font-size: 1rem; margin-bottom: 4px; }
.benefit-item p { color: var(--ink-soft); font-size: .95rem; }
