/* ============================================================
   DALZOTTO AUTOMÓVEIS - Design System
   Vermelho Dalzotto #E10600 · Preto #0B0B0F · Branco
   ============================================================ */
:root {
    --red: #E10600;
    --red-dark: #B30500;
    --red-soft: #FFF1F0;
    --dark: #0B0B0F;
    --ink: #141419;
    --ink-2: #1E1E24;
    --muted: #6E6E78;
    --muted-2: #9A9AA5;
    --bg: #FFFFFF;
    --bg-alt: #F6F6F8;
    --line: #E7E7EC;
    --line-dark: #2A2A32;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(11,11,15,.06);
    --shadow-md: 0 8px 30px rgba(11,11,15,.10);
    --shadow-lg: 0 24px 60px rgba(11,11,15,.16);
    --font-head: 'Archivo', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }

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

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 800; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-eyebrow { color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -0.02em; }
.link-arrow { font-weight: 700; color: var(--ink); border-bottom: 2px solid var(--red); padding-bottom: 2px; transition: color .2s; }
.link-arrow:hover { color: var(--red); }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-head); font-weight: 700; font-size: 14px;
    padding: 13px 22px; border-radius: 10px; border: none; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(225,6,0,.35); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 6px 20px rgba(225,6,0,.45); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1c1c23; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-light { background: #fff; color: var(--dark); }
.btn-whatsapp { background: #25D366; color: #fff; font-weight: 800; }
.btn-whatsapp:hover { background: #1fb958; }
.btn-danger { background: #dc2626; color: #fff; }
.btn-sm { padding: 9px 15px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; }
.icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line);
    background: #fff; color: var(--ink); transition: all .15s;
}
.icon-btn:hover { border-color: var(--red); color: var(--red); }
.icon-btn.is-active { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; border-radius: 8px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 19px; font-weight: 900; letter-spacing: .04em; color: var(--dark); }
.brand-text small { font-size: 9.5px; font-weight: 700; letter-spacing: .3em; color: var(--red); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a {
    padding: 9px 14px; border-radius: 9px; font-weight: 600; font-size: 14.5px; color: var(--ink);
    transition: background .15s, color .15s; position: relative;
}
.site-nav > a:hover { background: var(--bg-alt); }
.site-nav > a.is-active { color: var(--red); }
.site-nav > a.is-active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--red); border-radius: 2px; }
.nav-fav, .nav-compare { position: relative; padding: 8px 10px !important; }
.fav-count, .cmp-count {
    position: absolute; top: 0; right: 0; background: var(--red); color: #fff;
    font-size: 10px; font-weight: 800; min-width: 17px; height: 17px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
/* Fundo do hero: FOTO REAL da loja + efeitos (overlay escuro p/ legibilidade, glow vermelho) */
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, #0B0B0F 0%, #121218 100%);
}
.hero-bg::before {
    content: ''; position: absolute; inset: 0;
    background: url('../img/loja.jpg') center/cover no-repeat;
    filter: saturate(1.05) brightness(.78) contrast(1.03);
    transform: scale(1.02);
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(11,11,15,.97) 0%, rgba(11,11,15,.86) 34%, rgba(11,11,15,.58) 62%, rgba(11,11,15,.30) 100%),
        linear-gradient(180deg, rgba(11,11,15,.55) 0%, rgba(11,11,15,0) 30%, rgba(11,11,15,.45) 100%),
        radial-gradient(760px 400px at 76% 12%, rgba(225,6,0,.30), transparent 60%),
        radial-gradient(900px 520px at 8% 96%, rgba(225,6,0,.16), transparent 62%);
}
.hero-inner { position: relative; z-index: 1; padding: 96px 20px 84px; max-width: var(--container); margin: 0 auto; }
.hero-eyebrow { color: #FF6B61; font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.hero-title { font-size: clamp(40px, 6.2vw, 76px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; }
.hero-title span { color: var(--red); }
.hero-sub { margin-top: 20px; font-size: clamp(16px, 2vw, 19px); color: #B9B9C3; max-width: 560px; }
.hero-search {
    margin-top: 36px; display: flex; align-items: center; gap: 4px; background: #fff;
    border-radius: 14px; padding: 6px 6px 6px 18px; max-width: 640px; color: var(--muted);
    box-shadow: var(--shadow-lg); position: relative;
}
.hero-search input { flex: 1; border: none; outline: none; font-size: 15.5px; color: var(--ink); background: transparent; padding: 10px 0; min-width: 0; }
.hero-suggestions {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 12px;
    box-shadow: var(--shadow-lg); overflow: hidden; z-index: 50; max-height: 340px; overflow-y: auto;
}
.hero-suggestions a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--bg-alt); color: var(--ink); }
.hero-suggestions a:hover { background: var(--bg-alt); }
.hero-suggestions img { width: 72px; height: 48px; object-fit: cover; border-radius: 8px; }
.hero-suggestions .hs-price { margin-left: auto; font-weight: 800; color: var(--red); }
.hero-ctas { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 56px; display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 24px; font-weight: 800; }
.hero-stats span { color: var(--muted-2); font-size: 13px; }

/* ---------- Cards de veículos ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 24px; }
.vehicle-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vehicle-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.vehicle-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vehicle-card:hover .vehicle-card-media img { transform: scale(1.045); }
.vehicle-card-noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--muted-2); font-size: 14px; }
.badge {
    display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 800;
    letter-spacing: .02em; text-transform: uppercase;
}
.badge-available { background: #E8F7EE; color: #1A8F4C; }
.badge-reserved { background: #FFF4E0; color: #B26A00; }
.badge-sold { background: #2A2A32; color: #fff; }
.badge-promo { background: var(--red); color: #fff; }
.vehicle-card-media .badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.vehicle-card-media .badge-promo { left: auto; right: 12px; }
.vehicle-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vehicle-card-title { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.vehicle-card-title a:hover { color: var(--red); }
.vehicle-card-title span { display: block; font-size: 13px; font-weight: 600; color: var(--muted); }
.vehicle-card-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.vehicle-card-specs span { background: var(--bg-alt); border-radius: 7px; padding: 4px 9px; font-size: 12px; font-weight: 600; color: var(--ink-2); }
.vehicle-card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding-top: 6px; }
.vehicle-card-price { display: flex; flex-direction: column; }
.vehicle-card-price small { color: var(--muted-2); text-decoration: line-through; font-size: 12.5px; }
.vehicle-card-price strong { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--red); }
.vehicle-card-actions { display: flex; align-items: center; gap: 7px; }

/* ---------- Serviços / faixas ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
    transition: box-shadow .2s, transform .2s; background: #fff;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon { font-size: 34px; margin-bottom: 14px; }
.service-card h3 { font-size: 19px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.service-card a { font-weight: 700; color: var(--red); font-size: 14px; }
.cta-band { background: var(--red); color: #fff; padding: 48px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(22px, 3vw, 32px); }
.cta-band p { opacity: .9; }

/* ---------- Páginas internas ---------- */
.page-head { background: var(--dark); color: #fff; padding: 52px 0 44px; position: relative; overflow: hidden; }
.page-head::after { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 240px at 85% 10%, rgba(225,6,0,.3), transparent 65%); pointer-events: none; }
.page-head .container { position: relative; }
.page-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.02em; }
.page-sub { color: #B9B9C3; margin-top: 8px; font-size: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span:last-child { color: #fff; }

/* ---------- Estoque ---------- */
.stock-layout { display: grid; grid-template-columns: 290px 1fr; gap: 32px; align-items: start; }
.stock-filters { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: 92px; max-height: calc(100vh - 112px); overflow-y: auto; }
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.filters-close { display: none; background: none; border: none; font-size: 22px; color: var(--muted); }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 5px; color: var(--ink-2); }
.field input, .field select, .field textarea {
    width: 100%; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 9px;
    outline: none; background: #fff; color: var(--ink); transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-error { color: var(--red); font-size: 12.5px; display: block; margin-top: 4px; }
.field-hint { color: var(--muted-2); font-size: 12px; }
.filters-clear { display: block; text-align: center; margin-top: 12px; color: var(--muted); font-size: 13px; font-weight: 600; }
.filters-clear:hover { color: var(--red); }
.stock-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.filters-toggle { display: none; }
.sort-form { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); }
.sort-form select { padding: 8px 10px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.pagination a { font-weight: 700; color: var(--ink); }
.pagination a:hover { color: var(--red); }
.pagination span { color: var(--muted); font-size: 14px; }
.landing-seo { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 40px; max-width: 820px; }
.landing-seo h2 { font-size: 26px; margin-bottom: 12px; }
.landing-seo p { color: var(--muted); margin-bottom: 12px; }
.faq-block { margin-top: 40px; }
.faq-block h2, .faq-block h3 { margin-bottom: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: #fff; }
.faq-item summary { padding: 15px 18px; font-weight: 700; cursor: pointer; list-style: none; position: relative; padding-right: 40px; }
.faq-item summary::after { content: '+'; position: absolute; right: 18px; font-size: 20px; color: var(--red); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }

/* ---------- Página do veículo ---------- */
.vehicle-page { padding: 40px 0 80px; }
.vehicle-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.vehicle-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 900; letter-spacing: -0.02em; }
.vehicle-subtitle { color: var(--muted); margin-top: 6px; }
.vehicle-price-box { text-align: right; }
.vehicle-price-box .old-price { display: block; color: var(--muted-2); text-decoration: line-through; }
.vehicle-price-box strong { font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 40px); font-weight: 900; color: var(--red); }
.vehicle-price-box .badge { margin-top: 8px; }
.vehicle-layout { display: grid; grid-template-columns: 1.65fr 1fr; gap: 32px; align-items: start; }
.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--dark); aspect-ratio: 3/2; }
.gallery-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; }
.gallery-slide.is-active { opacity: 1; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { display: flex; align-items: center; justify-content: center; color: var(--muted-2); }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px;
    border-radius: 50%; border: none; background: rgba(11,11,15,.55); color: #fff; font-size: 18px;
    backdrop-filter: blur(4px); z-index: 5; transition: background .15s;
}
.gallery-nav:hover { background: rgba(225,6,0,.85); }
.gallery-prev { left: 14px; } .gallery-next { right: 14px; }
.gallery-zoom {
    position: absolute; bottom: 14px; right: 14px; width: 40px; height: 40px; border-radius: 10px;
    border: none; background: rgba(11,11,15,.55); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 5;
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { flex: 0 0 auto; width: 96px; height: 64px; border-radius: 9px; overflow: hidden; border: 2px solid transparent; padding: 0; background: none; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.is-active { border-color: var(--red); }
.share-row { display: flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 13.5px; font-weight: 600; }
.vehicle-side { display: flex; flex-direction: column; gap: 18px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; }
.side-card h3 { font-size: 17px; margin-bottom: 10px; }
.side-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.side-card .btn { margin-bottom: 9px; }
.specs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.specs-list div { padding: 9px 2px; border-bottom: 1px solid var(--bg-alt); }
.specs-list dt { font-size: 11.5px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .05em; }
.specs-list dd { font-size: 13.5px; font-weight: 700; }
.sold-box {
    margin-top: 36px; background: var(--dark); color: #fff; border-radius: var(--radius-lg);
    padding: 36px; text-align: center;
}
.sold-box h2 { color: #fff; font-size: 24px; letter-spacing: .04em; margin-bottom: 8px; }
.sold-box p { color: var(--muted-2); margin-bottom: 20px; }
.sold-form, .empty-state-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 560px; margin: 0 auto; }
.sold-form input, .empty-state-form input {
    flex: 1; min-width: 170px; padding: 12px 14px; border-radius: 10px; border: none; outline: none;
}
.vehicle-description { max-width: 860px; margin-top: 48px; }
.vehicle-description h2 { font-size: 26px; margin-bottom: 12px; }
.vehicle-description h3 { font-size: 19px; margin: 26px 0 10px; }
.vehicle-description .description-text { color: #3A3A44; }
.vehicle-description p { color: var(--muted); }
.features-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px 18px; list-style: none; }
.features-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.negotiation-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 30px; }
.negotiation-row div { background: var(--bg-alt); border-radius: 12px; padding: 16px; }
.negotiation-row strong { display: block; font-size: 14px; }
.negotiation-row span { color: var(--muted); font-size: 13px; }
.mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: rgba(255,255,255,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
    padding: 10px 14px; align-items: center; gap: 10px;
}
.mobile-cta-price { display: flex; flex-direction: column; margin-right: auto; }
.mobile-cta-price small { color: var(--muted-2); text-decoration: line-through; font-size: 12px; }
.mobile-cta-price strong { font-family: var(--font-head); color: var(--red); font-size: 19px; font-weight: 800; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.94); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 18px; right: 24px; background: none; border: none; color: #fff; font-size: 34px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; font-size: 26px; width: 52px; height: 52px; border-radius: 50%; }
.lightbox-prev { left: 20px; } .lightbox-next { right: 20px; }

/* ---------- Formulários (financiamento/venda) ---------- */
.finance-layout, .sell-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.finance-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.form-title { font-size: 20px; margin-bottom: 20px; }
.form-title-2 { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.finance-vehicle { display: flex; align-items: center; gap: 14px; background: var(--bg-alt); border-radius: 12px; padding: 12px; margin-bottom: 18px; }
.finance-vehicle img { border-radius: 10px; }
.finance-vehicle strong { display: block; font-size: 15px; }
.finance-vehicle span { color: var(--red); font-weight: 800; }
.consent-box { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; font-size: 13px; color: var(--muted); }
.consent-box input { margin-top: 3px; }
.form-note { font-size: 12.5px; color: var(--muted-2); text-align: center; margin-top: 14px; }
.finance-info { display: flex; flex-direction: column; gap: 18px; }
.steps-list { list-style: none; counter-reset: step; }
.steps-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--muted); font-size: 14.5px; }
.steps-list strong { font-family: var(--font-head); color: var(--red); font-size: 18px; min-width: 24px; }
.check-list { list-style: none; }
.check-list li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 14.5px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.autocomplete-list { position: relative; }
.autocomplete-list a { display: block; padding: 9px 12px; border: 1px solid var(--line); border-top: none; background: #fff; font-size: 14px; }
.autocomplete-list a:hover { background: var(--bg-alt); }

/* ---------- Comparador / vazio ---------- */
.empty-state { text-align: center; padding: 70px 20px; border: 1.5px dashed var(--line); border-radius: var(--radius-lg); }
.empty-state h3 { font-size: 22px; margin-bottom: 8px; }
.empty-state p { color: var(--muted); margin-bottom: 20px; }
.notify-ok { color: #1A8F4C; font-weight: 700; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare-table th, .compare-table td { border: 1px solid var(--line); padding: 14px; text-align: center; vertical-align: top; }
.compare-table .compare-label-col { width: 130px; background: var(--bg-alt); font-weight: 700; color: var(--muted); }
.compare-table th h3 { font-size: 16px; margin: 10px 0; }
.compare-table th img { border-radius: 10px; margin: 0 auto; }
.compare-price { font-family: var(--font-head); font-weight: 900; color: var(--red); font-size: 18px; }
.compare-features { list-style: none; text-align: left; font-size: 13px; }
.compare-features li { padding: 3px 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #B9B9C3; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.brand-light .brand-text strong { color: #fff; }
.footer-logo-badge {
    display: inline-flex; padding: 10px; border-radius: 14px;
    background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
.footer-logo-badge img { height: 54px; width: auto; display: block; }
.footer-about { font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-dark);
    display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 10px; font-size: 14px; }
.footer-links a:hover { color: var(--red); }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: var(--muted-2); }

/* ---------- Chat widget ---------- */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 150; }
.chat-widget-toggle {
    width: 60px; height: 60px; border-radius: 50%; border: none; background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(225,6,0,.45);
    transition: transform .2s; position: relative;
}
.chat-widget-toggle:hover { transform: scale(1.06); }
.chat-icon-close { display: none; }
.chat-widget.is-open .chat-icon-open { display: none; }
.chat-widget.is-open .chat-icon-close { display: block; }
.chat-widget-dot {
    position: absolute; top: 2px; right: 2px; width: 13px; height: 13px; border-radius: 50%;
    background: #25D366; border: 2px solid #fff;
}
.chat-panel {
    position: absolute; bottom: 74px; right: 0; width: 350px; max-width: calc(100vw - 32px);
    background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
    display: none; flex-direction: column; max-height: 480px;
}
.chat-widget.is-open .chat-panel { display: flex; }
.chat-panel-head { background: var(--dark); color: #fff; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; }
.chat-panel-head strong { font-family: var(--font-head); font-size: 15px; }
.chat-panel-head small { display: block; color: var(--muted-2); font-size: 12px; margin-top: 2px; }
.chat-panel-close { background: none; border: none; color: #fff; font-size: 22px; line-height: 1; }
.chat-panel-body { padding: 16px; overflow-y: auto; flex: 1; background: var(--bg-alt); }
.chat-msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 14px; margin-bottom: 10px; }
.chat-msg-bot { background: #fff; border: 1px solid var(--line); border-top-left-radius: 4px; }
.chat-options { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.chat-options button {
    text-align: left; padding: 11px 14px; border-radius: 11px; border: 1.5px solid var(--line);
    background: #fff; font-size: 13.5px; font-weight: 600; transition: all .15s;
}
.chat-options button:hover { border-color: var(--red); color: var(--red); }
.chat-panel-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-panel-form input {
    flex: 1; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px; outline: none;
}
.chat-panel-form input:focus { border-color: var(--red); }
.chat-panel-form button {
    width: 44px; height: 44px; border-radius: 10px; border: none; background: var(--red); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.chat-msg-visitor { background: var(--red); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-msg-admin { background: #fff; border: 1px solid var(--line); border-top-left-radius: 4px; }
.chat-msg small { display: block; font-size: 10.5px; opacity: .75; margin-top: 3px; }

/* ---------- About / Contact ---------- */
.about-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; }
.about-text h2 { font-size: 26px; margin: 28px 0 12px; }
.about-text h2:first-child { margin-top: 0; }
.about-text p { color: var(--muted); margin-bottom: 12px; }
.about-side { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.about-logo { border-radius: 16px; box-shadow: var(--shadow-md); }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-bottom: 36px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; text-align: center; }
.contact-icon { font-size: 30px; margin-bottom: 10px; }
.contact-card h3 { font-size: 15px; margin-bottom: 6px; }
.contact-card a { color: var(--red); font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.contact-info h2 { font-size: 22px; margin-bottom: 12px; }
.contact-info p { color: var(--muted); margin-bottom: 14px; }
.contact-map iframe { border-radius: var(--radius-lg); }

/* ---------- Animações ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero-inner > * { animation: fadeUp .7s ease both; }
.hero-inner > *:nth-child(2) { animation-delay: .08s; }
.hero-inner > *:nth-child(3) { animation-delay: .16s; }
.hero-inner > *:nth-child(4) { animation-delay: .24s; }
.hero-inner > *:nth-child(5) { animation-delay: .32s; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
    .stock-layout { grid-template-columns: 1fr; }
    .stock-filters { position: fixed; inset: 0 auto 0 0; z-index: 120; width: min(320px, 88vw); border-radius: 0; transform: translateX(-105%); transition: transform .28s ease; max-height: 100vh; }
    .stock-filters.is-open { transform: none; }
    .filters-close { display: block; }
    .filters-toggle { display: inline-flex; }
    .vehicle-layout { grid-template-columns: 1fr; }
    .finance-layout, .sell-layout { grid-template-columns: 1fr; }
    .about-layout, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch;
        padding: 12px 20px 24px; border-bottom: 1px solid var(--line); gap: 2px;
        transform: translateY(-110%); transition: transform .28s ease; box-shadow: var(--shadow-lg);
    }
    .site-nav.is-open { transform: none; }
    .site-nav > a { padding: 13px 10px; font-size: 16px; }
    .site-nav > a.is-active::after { display: none; }
    .header-actions .btn { display: none; }
}
@media (max-width: 640px) {
    .section { padding: 48px 0; }
    .hero-inner { padding: 64px 20px 60px; }
    .hero-stats { gap: 24px; margin-top: 40px; }
    .hero-search { flex-wrap: wrap; padding: 12px; }
    .hero-search input { flex-basis: 100%; padding: 6px 4px; }
    .hero-search .btn { width: 100%; }
    .grid-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
    .vehicle-card-title { font-size: 15px; }
    .vehicle-card-specs span { font-size: 11px; }
    .vehicle-card-price strong { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .chat-panel { width: calc(100vw - 32px); }
    .mobile-cta { display: flex; }
    body { padding-bottom: 0; }
    .vehicle-page { padding-bottom: 100px; }
    .gallery-thumbs { display: none; }
    .specs-list { grid-template-columns: 1fr 1fr; }
    .finance-form-card { padding: 22px 18px; }
    .grid-cards .vehicle-card-actions .icon-btn { display: none; }
    .grid-cards .vehicle-card-actions .btn { flex: 1; }
}
@media (max-width: 420px) {
    .grid-cards { grid-template-columns: 1fr; }
}
/* Marcas disponíveis no estoque */
.stock-brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
    gap: 10px;
    margin: -10px 0 34px;
}
.stock-brand {
    min-height: 88px;
    padding: 12px 8px 9px;
    border: 1px solid var(--line, #e7e7ec);
    border-radius: 13px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.stock-brand:hover {
    transform: translateY(-3px);
    border-color: var(--red, #e10600);
    box-shadow: 0 9px 24px rgba(11, 11, 15, .10);
}
.stock-brand img { width: 92px; height: 48px; object-fit: contain; }
.stock-brand-logo { transition: transform .2s ease; }
.stock-brand:hover .stock-brand-logo { transform: scale(1.06); }
.stock-brand small { color: var(--muted, #6e6e78); font-size: 10px; line-height: 1; }
.stock-brand-name { font-family: var(--font-head, sans-serif); font-weight: 800; font-size: 13px; text-align: center; }
@media (max-width: 700px) {
    .stock-brands { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-bottom: 26px; padding-bottom: 5px; }
    .stock-brand { min-width: 100px; scroll-snap-align: start; }
}
