/* ============================================================
   PINTINHO MOTOS — Showroom Digital · Três Arroios/RS
   Identity: black garage walls, the copper of the logo and the
   vivid orange of the store's neon sign. Barlow Condensed for
   headlines (decal / racing-number feel) + Barlow for UI.
   Dark-only. Single file, no framework, no build step.
   ============================================================ */

/* ---------- self-hosted fonts (latin subset, woff2) ---------- */
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/barlow-condensed-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/barlow-condensed-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/barlow-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/barlow-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/barlow-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Barlow'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/barlow-latin-700-normal.woff2') format('woff2'); }

:root {
    /* surfaces */
    --ink:        #080807;
    --ink-2:      #111110;
    --ink-3:      #1a1917;
    --ink-soft:   #26241f;
    --paper:      #0e0e0d;

    /* text */
    --bone:       #f4efe8;
    --text:       #d9d3cb;
    --text-soft:  #a8a197;
    --text-dim:   #7a746c;
    --text-mute:  #55504a;

    /* brand */
    --accent:       #f26a21;   /* neon orange (CTAs, highlights) */
    --accent-deep:  #c9531a;
    --accent-hot:   #ff8a4c;   /* neon glow core */
    --accent-soft:  rgba(242, 106, 33, 0.10);
    --accent-glow:  rgba(242, 106, 33, 0.28);
    --copper:       #d27e60;   /* logo copper (labels, eyebrows, panels) */
    --copper-deep:  #a95d43;
    --copper-soft:  rgba(210, 126, 96, 0.12);
    --copper-line:  rgba(210, 126, 96, 0.35);
    --wa:           #25d366;
    --wa-deep:      #1eb257;

    /* lines & shadows */
    --border:        rgba(244, 239, 232, 0.09);
    --border-strong: rgba(244, 239, 232, 0.20);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
    --shadow-md: 0 10px 30px -12px rgba(0,0,0,0.7);
    --shadow-lg: 0 30px 60px -30px rgba(0,0,0,0.85);
    --shadow-accent: 0 12px 32px -12px rgba(242,106,33,0.55);

    /* shape & rhythm */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --max-w: 1320px;
    --gutter: clamp(1.1rem, 4.5vw, 4rem);
    --space-section: clamp(4rem, 8vw, 6.5rem);
    --nav-h: 74px;

    /* type */
    --font-display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
    --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);

    color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip; /* clip (not hidden) keeps position:sticky working on iOS */
}
body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    min-height: 100vh;
}
body.filters-open { overflow: hidden; }

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
dl, dd, dt { margin: 0; }

h1, h2, h3, .display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    color: var(--bone);
}
h1 em, h2 em, h3 em, .display em { font-style: normal; color: var(--copper); }
h4 { font-family: var(--font-body); font-weight: 700; color: var(--bone); }

::selection { background: var(--accent); color: #0a0a0a; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------- layout helpers ---------- */
.container {
    width: min(100% - 2 * var(--gutter), var(--max-w));
    margin-inline: auto;
}
.section { padding: var(--space-section) 0; position: relative; }
.section-soft { background: var(--ink-2); }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem 3rem;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
}
.section-head .section-title { margin-top: 0.55rem; max-width: none; } /* one line when it fits; the row itself wraps the link if not */
.section-lede { color: var(--text-soft); font-size: 1.02rem; max-width: 56ch; }
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
    max-width: 22ch;
}
.section-title em { color: var(--copper); }
.section-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--copper);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(210,126,96,0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.section-link:hover { color: var(--accent); gap: 10px; }

/* ---------- eyebrow / labels / chips ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--copper);
}
.eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--copper); border-radius: 2px; }
.eyebrow-dot { display: none; }
@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.75); opacity: 0.6; }
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid var(--copper-line);
    background: var(--copper-soft);
    color: var(--copper);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}
.chip-hot { background: var(--accent); border-color: var(--accent); color: #0a0a0a; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 0.9rem; }

/* Ghost word — huge outlined wordmark used as texture behind sections */
.ghost-word {
    display: none;
    position: absolute;
    right: -0.05em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(6rem, 22vw, 19rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244, 239, 232, 0.07);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}
.ghost-word-left { right: auto; left: -0.05em; }
.ghost-word-copper { -webkit-text-stroke-color: rgba(210, 126, 96, 0.16); }

/* Neon — the store's orange sign */
.neon {
    color: var(--accent-hot);
    text-shadow:
        0 0 4px rgba(255, 138, 76, 0.85),
        0 0 14px rgba(242, 106, 33, 0.6),
        0 0 36px rgba(242, 106, 33, 0.38),
        0 0 72px rgba(242, 106, 33, 0.18);
}

/* Two-tone rule (orange + copper) */
.rule-duo {
    position: relative;
    height: 3px;
    width: 72px;
    background: var(--copper);
    border-radius: 2px;
    margin: 1.2rem 0;
}
.rule-duo::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 28px; height: 100%;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0;
    line-height: 1.1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.18s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
    background: var(--accent);
    color: #0a0a0a;
}
.btn-primary:hover { background: var(--accent-hot); }
.btn-ghost {
    background: transparent;
    color: var(--bone);
    border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.btn-wa {
    background: var(--wa);
    color: #06170c;
    box-shadow: 0 12px 30px -12px rgba(37, 211, 102, 0.55);
}
.btn-wa:hover { background: #3be07b; }
.btn-copper { background: var(--copper); color: #150a06; }
.btn-copper:hover { background: #e39274; }
.btn-xl { padding: 15px 24px; font-size: 1.02rem; }
.btn-sm { padding: 8px 13px; font-size: 0.86rem; }
.btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-row .btn { flex: 1 1 0; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- misc ---------- */
.tabular { font-variant-numeric: tabular-nums; }
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
/* ============================================================
   NAVBAR (injected by shared.js into #chrome-nav)
   ============================================================ */
#chrome-nav { position: sticky; top: 0; z-index: 1000; }
.site-nav {
    position: relative;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 var(--gutter);
    background: linear-gradient(180deg, rgba(8,8,7,0.92) 0%, rgba(8,8,7,0.72) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-nav.is-scrolled {
    background: rgba(8,8,7,0.94);
    border-bottom-color: var(--border);
}
.site-nav::after {
    display: none;
    /* copper hairline that fades in with scroll */
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--copper) 40%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.site-nav.is-scrolled::after { opacity: 0.9; }

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; }
.logo-nav .logo-img { height: 40px; }
.logo-footer .logo-img { height: 46px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links a {
    position: relative;
    display: inline-block;
    padding: 10px 11px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-soft);
    transition: color 0.2s var(--ease);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 12px; right: 12px; bottom: 4px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--bone); }
.nav-links a.is-active::after { transform: scaleX(1); background: var(--copper); }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #6ff0a0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
    white-space: nowrap;
}
.nav-cta svg { width: 17px; height: 17px; }
.nav-cta:hover { background: var(--wa); color: #06170c; border-color: var(--wa); }

.nav-hamburger {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    position: relative;
    flex-shrink: 0;
}
.nav-hamburger span,
.nav-hamburger span::before,
.nav-hamburger span::after {
    content: '';
    position: absolute;
    left: 12px;
    width: 20px; height: 2px;
    background: var(--bone);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.nav-hamburger span { top: 21px; }
.nav-hamburger span::before { left: 0; top: -6px; }
.nav-hamburger span::after  { left: 0; top: 6px; }
.site-nav.is-open .nav-hamburger span { background: transparent; }
.site-nav.is-open .nav-hamburger span::before { top: 0; transform: rotate(45deg); background: var(--accent); }
.site-nav.is-open .nav-hamburger span::after  { top: 0; transform: rotate(-45deg); background: var(--accent); }

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    padding: 0.6rem var(--gutter) 1.4rem;
    background: rgba(8,8,7,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 2px;
}
.nav-mobile a {
    padding: 13px 4px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bone);
    border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .nav-cta {
    margin-top: 0.8rem;
    justify-content: center;
    background: var(--wa);
    color: #06170c;
    border-color: var(--wa);
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
}
.site-nav.is-open .nav-mobile { display: flex; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--wa);
    color: #06170c;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65);
    transition: transform 0.2s var(--ease);
}
.float-wa svg { width: 28px; height: 28px; }
.float-wa:hover { transform: scale(1.06); }
@keyframes waPulse {
    0%   { box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65), 0 0 0 0 rgba(37,211,102,0.45); }
    70%  { box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 28px -8px rgba(37,211,102,0.65), 0 0 0 0 rgba(37,211,102,0); }
}
/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
    margin-top: calc(var(--nav-h) * -1);
    padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
    background:
        radial-gradient(700px 420px at 0% 0%, rgba(242,106,33,0.14), transparent 60%),
        var(--ink);
    isolation: isolate;
}
.hero::before {
    display: none;
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(244,239,232,0.035) 0 1px, transparent 1px 22px);
    -webkit-mask-image: radial-gradient(60% 70% at 80% 30%, #000 0%, transparent 100%);
    mask-image: radial-gradient(60% 70% at 80% 30%, #000 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}
.hero .ghost-word {
    top: auto;
    bottom: -0.18em;
    transform: none;
    font-size: clamp(7rem, 26vw, 24rem);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.hero-text { max-width: 660px; min-width: 0; }
.hero-kicker {
    display: block;
    color: var(--copper);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}
.hero-kicker .eyebrow-dot { margin: 0; }
.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.04;
    margin-bottom: 1.2rem;
}
@media (max-width: 520px) { .hero h1 br { display: none; } }
.hero h1 em { color: var(--accent); }
.hero-sub {
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    color: var(--text-soft);
    max-width: 52ch;
    margin-bottom: 1.8rem;
}
.hero-sub b { color: var(--bone); font-weight: 600; }
.hero-actions { display: flex; gap: 10px 18px; flex-wrap: wrap; align-items: center; margin-bottom: 1.8rem; }
.link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--bone); font-weight: 600; font-size: 0.95rem;
    text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--border-strong);
}
.link-arrow svg { width: 18px; height: 18px; color: var(--wa); }
.link-arrow:hover { color: var(--accent); text-decoration-color: var(--accent); }
.hero-summary {
    display: flex; flex-wrap: wrap; gap: 6px 0;
    font-size: 0.92rem; color: var(--text-soft);
    padding-top: 1.2rem; border-top: 1px solid var(--border);
    max-width: 520px;
}
.hero-summary b { color: var(--bone); font-weight: 600; }
.hero-summary .sep { color: var(--text-mute); margin: 0 10px; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: var(--radius-sm);
    background: rgba(17,17,16,0.8);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--copper); }

/* stats row under the hero */
.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item {
    padding: 1.2rem 1.4rem 1.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.stat-item + .stat-item { padding-left: 1.4rem; border-left: 1px solid var(--border); }
.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    line-height: 1;
    color: var(--bone);
    letter-spacing: -0.01em;
}
.stat-num span { color: var(--accent); }
.stat-label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ---- hero featured vehicle (right column) ----
   Deliberately a compact "ticket", not a second hero: capped width so the
   headline keeps the stage and the whole card sits above the fold. */
.hero-visual { position: relative; min-width: 0; width: 100%; justify-self: end; max-width: 440px; }
/* (desktop widths are fluid — see "HERO — fluid first screen" at the end of this file) */
.hero-visual::before {
    display: none;
    content: '';
    position: absolute;
    inset: 10% -6% -6% 10%;
    background: radial-gradient(60% 60% at 50% 50%, rgba(242,106,33,0.28), transparent 70%);
    filter: blur(20px);
    z-index: -1;
}
#hero-featured { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-width: 0; }
.hf-track {
    display: flex;
    min-width: 0;
    width: 100%;
    transition: transform 0.5s var(--ease);
    will-change: transform;
}
.hf-slide { flex: 0 0 100%; min-width: 0; }
.hero-featured {
    display: block;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-featured:hover { border-color: var(--copper-line); }
.hero-featured-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0b0b0a;
    overflow: hidden;
}
.hero-featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.hero-featured:hover .hero-featured-img img { transform: scale(1.04); }
.hero-featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,8,7,0) 55%, rgba(8,8,7,0.55) 100%);
    pointer-events: none;
}
.hero-featured-tag {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(8,8,7,0.8);
    border: 1px solid var(--copper-line);
    color: var(--copper);
    font-size: 0.72rem;
    font-weight: 600;
}
.hero-featured-body { padding: 0.9rem 1.1rem 1rem; }
.hero-featured-head { margin-bottom: 0.7rem; min-width: 0; }
.hero-featured-overline {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--copper);
}
.hero-featured-overline .sep { color: var(--text-mute); margin: 0 2px; }
.hero-featured-title {
    font-size: clamp(1.25rem, 1.7vw, 1.5rem);
    line-height: 1.1;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-featured-meta {
    margin: 4px 0 0;
    font-size: 0.86rem;
    color: var(--text-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-featured-meta .sep { color: var(--text-mute); margin: 0 7px; }
.hero-featured-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border);
}
.hero-featured-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bone);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-featured-price small {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-dim);
}
.hero-featured-cta {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--copper);
    white-space: nowrap;
    padding-bottom: 2px;
    text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(210,126,96,0.4);
}
.hero-featured:hover .hero-featured-cta { color: var(--accent); text-decoration-color: var(--accent); }
/* controls: dots on the left, arrows on the right — one low row, no extra height */
.hf-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 4px 0;
}
.hf-arrow {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    color: var(--bone);
    font-size: 1.3rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hf-arrow:hover { background: var(--accent); border-color: var(--accent); color: #0a0a0a; }
.hf-dots { display: flex; gap: 6px; order: -1; margin-right: auto; } /* DOM: prev · dots · next → visual: dots … prev next */
.hf-dot {
    width: 7px; height: 7px;
    border-radius: 999px;
    background: var(--text-mute);
    transition: width 0.25s var(--ease), background 0.2s;
}
.hf-dot.active { width: 22px; background: var(--accent); }
.hero-featured-empty {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--ink-2);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
}
.hero-featured-empty h3 { margin: 0.8rem 0 0.4rem; font-size: 1.6rem; }
.hero-featured-empty p { color: var(--text-soft); }

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.cat-strip {
    position: relative;
    background: var(--ink-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
}
.cat-strip-inner {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.cat-strip-label {
    flex-shrink: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    padding-right: 1.2rem;
    border-right: 1px solid var(--border);
}
.cat-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    flex: 1;
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.cat-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--ink-3);
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 600;
}
.cat-chip:hover { border-color: var(--copper); color: var(--bone); }
.cat-chip:hover .cat-chip-count { background: var(--accent); color: #0a0a0a; }
.cat-chip-all { border-color: var(--copper-line); color: var(--copper); }

/* ============================================================
   FEATURED (latest arrivals)
   ============================================================ */
.featured { position: relative; overflow: hidden; }
.featured .ghost-word { top: 12%; transform: none; }
.featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--border);
}
.featured-foot p { color: var(--text-soft); }
.featured-foot p b { color: var(--bone); }

/* ============================================================
   WHY / TRUST
   ============================================================ */
.why { position: relative; overflow: hidden; background: var(--ink-2); }
.why .ghost-word { -webkit-text-stroke-color: rgba(210,126,96,0.14); top: 20%; transform: none; }
.why-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}
.why-copy .section-title { margin: 0.6rem 0 1.2rem; }
.why-copy p { color: var(--text-soft); font-size: 1.04rem; margin-bottom: 1.2rem; max-width: 50ch; }
.why-copy p b { color: var(--bone); font-weight: 600; }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.why-card {
    position: relative;
    min-width: 0;
    padding: 1.5rem 1.4rem 1.5rem;
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.why-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent), var(--copper));
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}
.why-card:hover { border-color: var(--copper-line); transform: translateY(-3px); }
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--copper-soft);
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; }
.why-card-hot { background: linear-gradient(160deg, rgba(242,106,33,0.16), rgba(210,126,96,0.06) 60%, var(--ink)); border-color: var(--copper-line); }
.why-card-hot .why-icon { background: var(--accent); color: #0a0a0a; }
.why-card .btn { margin-top: 1rem; }

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.steps { position: relative; overflow: hidden; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    counter-reset: step;
}
.step-card {
    position: relative;
    min-width: 0;
    padding: 1.8rem 1.6rem 1.8rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.step-card::after {
    content: counter(step, decimal-leading-zero);
    counter-increment: step;
    position: absolute;
    right: 0.6rem; top: -0.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 6rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242,106,33,0.35);
    pointer-events: none;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.5rem; margin-bottom: 0.45rem; }
.step-card p { color: var(--text-soft); font-size: 0.95rem; }
.step-card p a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   INSTAGRAM BAND
   ============================================================ */
.ig-band { position: relative; overflow: hidden; }
.ig-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.6rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(500px 240px at 0% 0%, rgba(242,106,33,0.25), transparent 60%),
        linear-gradient(135deg, #191410 0%, var(--ink-2) 60%);
    border: 1px solid var(--copper-line);
    overflow: hidden;
}
.ig-card .ghost-word { font-size: clamp(5rem, 14vw, 11rem); right: -0.1em; -webkit-text-stroke-color: rgba(210,126,96,0.18); }
.ig-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: 0.6rem 0 0.7rem; position: relative; }
.ig-card p { color: var(--text-soft); max-width: 52ch; position: relative; }
.ig-card .btn { position: relative; }
.ig-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--copper);
}
.ig-handle svg { width: 20px; height: 20px; }
/* ============================================================
   CAR GRID + CAR CARD
   ============================================================ */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 1.4rem;
}
.car-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    color: var(--text);
    transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
    box-shadow: var(--shadow-sm);
}
.car-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}
.img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0b0b0a;
    overflow: hidden;
}
.card-carousel { position: absolute; inset: 0; }
.card-carousel img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s var(--ease), transform 0.6s var(--ease);
}
.card-carousel img.active { opacity: 1; }
.car-card:hover .card-carousel img.active { transform: none; }
.card-chips {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 3;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    pointer-events: none;
}
.card-chip {
    padding: 5px 9px;
    border-radius: 6px;
    background: rgba(8,8,7,0.78);
    border: 1px solid rgba(244,239,232,0.12);
    color: var(--text);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
}
.card-chip-new { background: var(--accent); border-color: var(--accent); color: #0a0a0a; }

/* carousel controls over the photo */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(8,8,7,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(244,239,232,0.14);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s var(--ease), background 0.2s var(--ease);
}
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-arrow:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.car-card:hover .carousel-arrow,
.car-card:focus-within .carousel-arrow { opacity: 1; }
.carousel-dots {
    position: absolute;
    left: 0; right: 0; bottom: 10px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 4px;
    pointer-events: none;
}
.carousel-dots .dot {
    width: 5px; height: 5px;
    border-radius: 999px;
    background: rgba(244,239,232,0.45);
    transition: width 0.2s var(--ease), background 0.2s;
}
.carousel-dots .dot.active { width: 16px; background: var(--accent); }
.carousel-counter {
    position: absolute;
    right: 10px; bottom: 10px;
    z-index: 3;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(8,8,7,0.65);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    pointer-events: none;
}

.card-body {
    padding: 1rem 1.15rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.card-brand {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--copper);
}
.card-model {
    font-size: 1.28rem;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-spec-line {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--text-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 6px;
}
.card-spec-line .sep { color: var(--text-mute); }
.card-footer {
    margin-top: auto;
    padding-top: 0.8rem;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.card-price-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dim);
}
.card-price {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 1;
    color: var(--bone);
    font-variant-numeric: tabular-nums;
}
/* "Ver a moto" sits next to the price, only underlined on hover */
.card-cta {
    margin-left: auto;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--copper);
    white-space: nowrap;
}
.card-cta span { transition: transform 0.2s var(--ease); display: inline-block; }
.car-card:hover .card-cta { text-decoration: underline; text-underline-offset: 4px; }
.car-card:hover .card-cta span { transform: translateX(3px); }

/* ---------- no-photo placeholder ---------- */
.no-photo {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dim);
    background: repeating-linear-gradient(135deg, #0e0e0d 0 10px, #0b0b0a 10px 20px);
}
.no-photo-icon { width: 34px; height: 34px; opacity: 0.6; }
.no-photo-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.no-photo-detail { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-md); }
.no-photo-cta { margin-top: 0.8rem; }

/* ---------- skeleton ---------- */
.car-card.skeleton { pointer-events: none; }
.car-card.skeleton .img-wrapper,
.sk-bar {
    background: linear-gradient(90deg, var(--ink-2) 0%, var(--ink-3) 40%, var(--ink-2) 80%);
    background-size: 240% 100%;
    animation: shimmer 1.6s linear infinite;
}
.sk-bar { height: 12px; border-radius: 4px; margin: 6px 0; }
.sk-bar.sm { width: 32%; }
.sk-bar.lg { width: 78%; height: 20px; }
@keyframes shimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}

/* ---------- empty state ---------- */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3.5rem 1.5rem;
    color: var(--text-soft);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    background: var(--ink-2);
}
.empty-state h3 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.empty-state p { max-width: 46ch; margin: 0 auto; }
.empty-actions { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* content-visibility on long mobile lists (paired with .is-near in app.js) */
@media (max-width: 767px) {
    .estoque-shell .car-grid > .car-card { content-visibility: auto; contain-intrinsic-size: auto 420px; }
    .estoque-shell .car-grid > .car-card.is-near { content-visibility: visible; }
}
/* ============================================================
   CTA STRIP (pre-footer, injected)
   ============================================================ */
.cta-strip {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
    background: var(--ink-2);
    border-top: 1px solid var(--border);
}
.cta-strip::before { display: none; }
.cta-strip .ghost-word { top: 50%; }
.cta-inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max-w));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0.6rem 0 0.5rem; }
.cta-text p { color: var(--text-soft); max-width: 48ch; font-size: 1.02rem; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   FOOTER (injected)
   ============================================================ */
.site-footer {
    background: #050504;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
}
.footer-main {
    width: min(100% - 2 * var(--gutter), var(--max-w));
    margin: 0 auto;
    padding: 3.5rem 0 2.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.footer-brand p { margin: 1.1rem 0 1.2rem; font-size: 0.92rem; max-width: 40ch; line-height: 1.6; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }
.footer-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}
.footer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text);
    transition: color 0.2s;
}
.footer-row svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--copper); }
.footer-row-top { align-items: flex-start; }
a.footer-row:hover { color: var(--accent); }
.footer-address-lines { display: flex; flex-direction: column; gap: 2px; }
.footer-map-link { margin-top: 6px; color: var(--accent); font-weight: 600; font-size: 0.88rem; }
.footer-map-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-hours { display: flex; flex-direction: column; gap: 6px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    padding: 4px 0;
    border-bottom: 1px dashed var(--border);
}
.hours-row b { color: var(--bone); font-weight: 600; text-align: right; }
.hours-row b.closed { color: var(--text-dim); }
.footer-bottom { border-top: 1px solid var(--border); }
.footer-bottom-inner {
    width: min(100% - 2 * var(--gutter), var(--max-w));
    margin: 0 auto;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--text-dim);
}
.platform-tag { color: var(--text-dim); }
.platform-tag b { color: var(--text-soft); font-weight: 600; }
.platform-tag:hover b { color: var(--accent); }
/* ============================================================
   PAGE HEAD (subpages)
   ============================================================ */
.page-head {
    position: relative;
    overflow: hidden;
    padding: clamp(2.6rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    background: var(--ink);
    border-bottom: 1px solid var(--border);
}
.page-head .ghost-word { font-size: clamp(5rem, 16vw, 13rem); }
.page-head-inner { position: relative; z-index: 1; max-width: 760px; }
.breadcrumb {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 1.1rem;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-mute); }
.page-head h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); margin: 0.5rem 0 0.8rem; max-width: 18ch; }
.page-head p { color: var(--text-soft); font-size: 1.05rem; max-width: 60ch; }
.page-head-wide .page-head-inner { max-width: none; }

/* ============================================================
   ESTOQUE PAGE
   ============================================================ */
.estoque-shell { padding: 2.2rem 0 var(--space-section); }
.estoque-inner {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}
.filter-rail {
    position: sticky;
    top: calc(var(--nav-h) + 16px);
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.4rem 1.2rem;
    max-height: calc(100vh - var(--nav-h) - 32px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}
.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.filter-head h3 { font-size: 1.3rem; }
.filter-active-count { font-size: 0.72rem; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.filter-close { display: none; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--border); color: var(--bone); font-size: 1.3rem; }
.filter-block {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.filter-block[hidden] { display: none; }
.filter-block:last-of-type { border-bottom: 0; }
.filter-block h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 0.65rem;
}
.filter-input,
.filter-select {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--border);
    color: var(--bone);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.filter-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d27e60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}
.filter-input::placeholder { color: var(--text-mute); }
.filter-input:focus, .filter-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.filter-input[type="number"]::-webkit-outer-spin-button,
.filter-input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.filter-input[type="number"] { -moz-appearance: textfield; }
.filter-range { display: flex; gap: 8px; align-items: center; }
.filter-range .filter-input { flex: 1; min-width: 0; }
.filter-range span { color: var(--text-mute); font-size: 0.8rem; flex-shrink: 0; }
.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--ink);
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 5px 6px 0;
    transition: all 0.18s var(--ease);
}
.filter-pill:hover { border-color: var(--copper); color: var(--copper); }
.filter-pill.active { background: var(--accent); border-color: var(--accent); color: #0a0a0a; box-shadow: 0 4px 12px -6px rgba(242,106,33,0.8); }
.filter-reset {
    width: 100%;
    margin-top: 1rem;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.18s;
}
.filter-reset:hover { color: var(--accent); border-color: var(--accent); }
.filter-apply {
    display: none;
    width: 100%;
    margin-top: 0.6rem;
    padding: 15px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1rem;
}
.filter-apply-count { opacity: 0.8; }

.mobile-filter-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 16px;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--ink-2);
    color: var(--bone);
    font-weight: 600;
    font-size: 0.95rem;
}
.mobile-filter-toggle svg { width: 18px; height: 18px; color: var(--copper); }
.mobile-filter-toggle > span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.filter-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px; height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
}
.filter-count-badge[hidden] { display: none; }

.estoque-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.3rem;
    padding: 0.8rem 1.1rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.estoque-count { font-size: 0.92rem; color: var(--text-soft); }
.estoque-count b { color: var(--bone); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-right: 2px; }
.estoque-tools { display: flex; align-items: center; gap: 8px; }
.estoque-tools label { font-size: 0.86rem; font-weight: 500; color: var(--text-dim); }
.estoque-sort {
    appearance: none;
    -webkit-appearance: none;
    background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d27e60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid var(--border);
    color: var(--bone);
    padding: 9px 36px 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 500;
    min-width: 170px;
    cursor: pointer;
}
.estoque-sort:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-soft); }

/* ============================================================
   VEÍCULO DETAIL
   ============================================================ */
.veiculo-shell { padding: 1.6rem 0 var(--space-section); }
.veiculo-shell .breadcrumb { margin-bottom: 1.4rem; }
.veiculo-top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.veiculo-media { min-width: 0; }
.veiculo-gallery {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #0b0b0a;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    outline: none;
    user-select: none;
    cursor: zoom-in;
}
.vg-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.vg-slide { flex: 0 0 100%; height: 100%; position: relative; }
.vg-slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.vg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(8,8,7,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(244,239,232,0.14);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.22s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}
.vg-arrow.vg-prev { left: 14px; }
.vg-arrow.vg-next { right: 14px; }
.vg-arrow:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); transform: translateY(-50%) scale(1.06); }
.veiculo-gallery:hover .vg-arrow,
.veiculo-gallery:focus-within .vg-arrow { opacity: 1; }
.vg-counter {
    position: absolute;
    bottom: 12px; right: 14px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(8,8,7,0.65);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    pointer-events: none;
}
.vg-zoom-hint {
    position: absolute;
    bottom: 12px; left: 14px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(8,8,7,0.65);
    color: var(--text-soft);
    font-size: 0.74rem;
    font-weight: 500;
    pointer-events: none;
}
.veiculo-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 8px;
}
.veiculo-thumbs img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-xs);
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s, transform 0.15s;
}
.veiculo-thumbs img:hover { opacity: 1; }
.veiculo-thumbs img.active { opacity: 1; border-color: var(--accent); }

/* lightbox */
.vg-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5,5,4,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease);
    outline: none;
}
.vg-modal.is-open { opacity: 1; pointer-events: all; }
.vg-modal-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; height: 100%;
    padding: 60px 84px;
}
.vg-modal-img {
    max-width: 100%; max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    user-select: none;
    pointer-events: none;
    transition: opacity 0.12s var(--ease);
}
.vg-modal-img.is-fading { opacity: 0; }
.vg-modal-close {
    position: fixed;
    top: 18px; right: 18px;
    z-index: 9001;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(244,239,232,0.08);
    border: 1px solid rgba(244,239,232,0.16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.18s;
}
.vg-modal-close svg { width: 18px; height: 18px; }
.vg-modal-close:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.vg-modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9001;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(244,239,232,0.07);
    border: 1px solid rgba(244,239,232,0.14);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.15s;
}
.vg-modal-prev { left: 18px; }
.vg-modal-next { right: 18px; }
.vg-modal-arrow:hover { background: var(--accent); color: #0a0a0a; border-color: var(--accent); }
.vg-modal-counter-badge {
    position: fixed;
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(244,239,232,0.6);
    pointer-events: none;
}

.veiculo-summary {
    min-width: 0;
    position: sticky;
    top: calc(var(--nav-h) + 16px);
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}
.veiculo-overline {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--copper);
}
.veiculo-summary h1 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1;
    margin: 0.3rem 0 1rem;
}
.veiculo-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3rem);
    line-height: 1;
    color: var(--bone);
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-variant-numeric: tabular-nums;
}
.veiculo-price small {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dim);
}
.veiculo-price-sub { font-size: 0.86rem; color: var(--text-dim); margin: 0.5rem 0 1.3rem; }
.veiculo-price-sub a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.veiculo-specs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.1rem 1rem;
    padding: 1.3rem 0 0.3rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.2rem;
}
.veiculo-specs::before { display: none; }
.vs-row { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vs-row dt { font-size: 0.76rem; font-weight: 500; color: var(--text-dim); }
.vs-row dd {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--bone);
    overflow-wrap: anywhere;
}
.vs-row dd small { display: block; font-family: var(--font-body); font-size: 0.7rem; color: var(--text-dim); font-weight: 500; }
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.1rem;
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    background: var(--ink);
    border: 1px solid var(--border);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text);
}
.trust-row svg { width: 14px; height: 14px; color: var(--copper); }
.veiculo-summary .btn-xl { width: 100%; margin-bottom: 8px; }
.veiculo-summary .btn-row .btn { font-size: 0.95rem; padding: 12px 10px; }

.veiculo-details {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: flex-start;
}
.veiculo-section {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    margin-bottom: 1.2rem;
}
.veiculo-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--border);
}
.veiculo-section p {
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.7;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.opt-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); }
.opt-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.opt-check svg { width: 11px; height: 11px; }
.veiculo-side { display: flex; flex-direction: column; gap: 1.2rem; }
.side-card {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
}
.side-card-troca { border-color: var(--copper-line); }
.side-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--copper-soft);
    color: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}
.side-card-troca .side-icon { background: var(--copper-soft); color: var(--copper); }
.side-icon svg { width: 22px; height: 22px; }
.side-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.side-card p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; margin-bottom: 1.1rem; }
.side-card .btn { width: 100%; }
#veiculo-similar { margin-top: 3rem; }
.similar-head { margin-bottom: 1.6rem; }
.similar-head .section-title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 0.5rem; max-width: none; }
.similar-foot { margin-top: 1.6rem; }
/* ============================================================
   FORMS (financiamento / avaliação / contato)
   ============================================================ */
.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 2.4rem;
    align-items: flex-start;
    padding: 2.6rem 0 var(--space-section);
}
.form-layout-reverse { grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr); }
.form-card {
    min-width: 0;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    box-shadow: var(--shadow-sm);
}
.form-card .section-title { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin: 0.5rem 0 0.6rem; }
.form-card .section-lede { font-size: 0.95rem; margin-bottom: 1.6rem; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field.span-2 { grid-column: 1 / -1; }
.form-field label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
}
.form-field label .opt { color: var(--text-mute); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--border);
    color: var(--bone);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.96rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-mute); }
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d27e60' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.form-field input[type="date"] { color-scheme: dark; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea,
.form-field.is-invalid .vehicle-select {
    border-color: #ff5a4e;
    box-shadow: 0 0 0 3px rgba(255,90,78,0.15);
}
.form-field.is-invalid::after {
    content: 'Campo obrigatório';
    font-size: 0.74rem;
    color: #ff7a70;
    font-weight: 600;
}
.consent-field.is-invalid::after { content: 'Você precisa autorizar para continuar'; }
.form-section-divider {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border);
    padding-top: 1.1rem;
    margin-top: 0.3rem;
}
.form-section-divider h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--copper);
}
.form-submit { grid-column: 1 / -1; }
.form-submit .btn { width: 100%; }
.form-note { font-size: 0.76rem; color: var(--text-mute); text-align: center; margin-top: 0.8rem; line-height: 1.5; }

/* ─── Vehicle select (custom combobox on the financing form) ─── */
.vehicle-select-wrap { position: relative; }
.vehicle-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    border: 1px solid var(--border);
    color: var(--bone);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    min-height: 48px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.vehicle-select:focus, .vehicle-select.is-open {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.vehicle-select-label {
    flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    color: var(--text-mute);
    font-size: 0.96rem;
}
.vehicle-select.has-value .vehicle-select-label { color: var(--bone); font-weight: 600; }
.vehicle-select-trailing { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.vehicle-select-thumb { width: 62px; height: 42px; object-fit: cover; border-radius: 4px; display: none; background: var(--ink-3); }
.vehicle-select.has-value .vehicle-select-thumb { display: block; }
.vehicle-select-chevron { width: 16px; height: 16px; color: var(--copper); flex-shrink: 0; transition: transform 0.18s ease; }
.vehicle-select.is-open .vehicle-select-chevron { transform: rotate(180deg); }
.vehicle-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    z-index: 300;
    background: var(--ink-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform-origin: top center;
    animation: vsDropIn 0.14s ease both;
}
.vehicle-select-dropdown[hidden] { display: none; }
@keyframes vsDropIn {
    from { opacity: 0; transform: scaleY(0.93) translateY(-4px); }
    to   { opacity: 1; transform: none; }
}
.vehicle-select-search-wrap { padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--border); background: var(--ink); }
.vehicle-select-search { width: 100%; background: transparent; border: 0; color: var(--bone); padding: 4px 2px; font-size: 0.92rem; outline: none; }
.vehicle-select-search::placeholder { color: var(--text-mute); }
.vehicle-select-list { max-height: 340px; overflow-y: auto; overscroll-behavior: contain; }
.vehicle-select-loading, .vehicle-select-empty { padding: 1.4rem 1rem; text-align: center; color: var(--text-mute); font-size: 0.88rem; }
.vehicle-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    transition: background 0.1s;
}
.vehicle-select-option:last-child { border-bottom: 0; }
.vehicle-select-option:hover, .vehicle-select-option.is-focused { background: var(--ink-3); }
.vehicle-select-option.is-selected { background: var(--accent-soft); }
.vso-thumb { width: 72px; height: 48px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--ink-3); display: flex; align-items: center; justify-content: center; }
.vso-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vso-thumb-placeholder { color: var(--text-mute); opacity: 0.6; }
.vso-info { flex: 1; min-width: 0; }
.vso-title { display: block; font-size: 0.9rem; font-weight: 600; color: var(--bone); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vso-meta { display: block; font-size: 0.76rem; color: var(--text-dim); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vso-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--accent); flex-shrink: 0; white-space: nowrap; }

/* ─── Pill radios (Sim / Não · Vender / Trocar) ─── */
.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-pill {
    flex: 1 1 0;
    min-width: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.radio-pill input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); color: var(--bone); }
.radio-pill:has(input:focus-visible) { box-shadow: 0 0 0 3px var(--accent-soft); }

/* ─── Trade-in reveal ─── */
.troca-fields {
    grid-column: 1 / -1;
    padding: 1.3rem 1.3rem 1.5rem;
    background: linear-gradient(180deg, rgba(242,106,33,0.08), transparent 70%), var(--ink);
    border: 1px solid var(--copper-line);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    animation: trocaReveal 0.32s ease-out;
}
.troca-fields[hidden] { display: none; }
.troca-fields .form-grid { gap: 1rem; }
.troca-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1.1rem; }
.troca-icon { width: 30px; height: 30px; flex-shrink: 0; color: var(--accent); padding: 6px; background: var(--accent-soft); border-radius: 8px; box-sizing: content-box; }
.troca-head h4 { font-size: 1rem; margin-bottom: 2px; }
.troca-head p { font-size: 0.84rem; color: var(--text-soft); }
@keyframes trocaReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ─── LGPD consent ─── */
.consent-field { margin-top: 0.4rem; }
.consent-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.consent-box:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.consent-box input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.consent-mark {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 2px solid var(--border-strong);
    border-radius: 6px;
    background: var(--ink-2);
    position: relative;
    margin-top: 1px;
    transition: border-color 0.2s, background 0.2s;
}
.consent-box:has(input:checked) .consent-mark { border-color: var(--accent); background: var(--accent); }
.consent-mark::after {
    content: '';
    position: absolute;
    top: 2px; left: 6px;
    width: 5px; height: 10px;
    border: solid #0a0a0a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s;
}
.consent-box:has(input:checked) .consent-mark::after { transform: rotate(45deg) scale(1); }
.consent-text { font-size: 0.84rem; line-height: 1.55; color: var(--text-soft); }
.consent-text strong { color: var(--bone); }
.consent-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

.fin-disclosure {
    display: flex;
    gap: 10px;
    margin-top: 1.4rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-sm);
    background: var(--ink);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.78rem;
    line-height: 1.55;
}
.fin-disclosure svg { flex-shrink: 0; margin-top: 2px; color: var(--copper); }
.fin-disclosure strong { color: var(--text-soft); }

/* ─── Side column: steps / notes ─── */
.side-stack { min-width: 0; display: flex; flex-direction: column; gap: 1.2rem; position: sticky; top: calc(var(--nav-h) + 16px); }
.step-list { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }
.step-list li {
    display: flex;
    gap: 14px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}
.step-list li:first-child { border-top: 0; padding-top: 0.4rem; }
.step-list .step-num { width: 30px; height: 30px; font-size: 0.9rem; margin: 0; flex-shrink: 0; background: var(--ink-3); color: var(--copper); }
.step-list b { display: block; color: var(--bone); font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.step-list p { color: var(--text-soft); font-size: 0.9rem; }
.note-card {
    padding: 1.4rem;
    border-radius: var(--radius-md);
    background: var(--ink-2);
    border: 1px solid var(--copper-line);
}
.note-card h3 { font-size: 1.15rem; margin: 0.5rem 0 0.4rem; }
.note-card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 1rem; }
.note-card .btn { width: 100%; }

/* ============================================================
   EMPRESA (A loja)
   ============================================================ */
.neon-sign {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 300px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background:
        radial-gradient(420px 220px at 50% 45%, rgba(242,106,33,0.22), transparent 70%),
        repeating-linear-gradient(90deg, rgba(244,239,232,0.025) 0 1px, transparent 1px 46px),
        repeating-linear-gradient(0deg, rgba(244,239,232,0.025) 0 1px, transparent 1px 46px),
        #0a0a09;
    text-align: center;
}
.neon-sign-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-hot);
    text-shadow:
        0 0 4px rgba(255,138,76,0.9),
        0 0 16px rgba(242,106,33,0.7),
        0 0 40px rgba(242,106,33,0.45),
        0 0 90px rgba(242,106,33,0.25);
    animation: neonFlicker 9s infinite;
}
.neon-sign-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--copper);
}
.neon-sign-foot {
    position: absolute;
    bottom: 1rem; left: 0; right: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
}
@keyframes neonFlicker {
    0%, 92%, 100% { opacity: 1; }
    93% { opacity: 0.82; }
    94% { opacity: 1; }
    97% { opacity: 0.9; }
}
.about-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.about-hero-inner .page-head-inner { max-width: none; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pillar {
    position: relative;
    padding: 1.8rem 1.6rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.pillar-num {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 0.5rem;
}
.pillar h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--text-soft); font-size: 0.95rem; }
.pillar .btn { margin-top: 1.1rem; }
.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
.story-copy p { color: var(--text-soft); font-size: 1.04rem; line-height: 1.7; margin-bottom: 1rem; }
.story-copy p b { color: var(--bone); font-weight: 600; }
.fact-list { display: grid; gap: 10px; }
.fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.fact-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--copper-soft); color: var(--copper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fact-icon svg { width: 20px; height: 20px; }
.fact b { display: block; color: var(--bone); font-size: 1rem; font-weight: 600; }
.fact p { font-size: 0.9rem; color: var(--text-soft); }
.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 1.4rem;
    align-items: stretch;
}
.location-card {
    padding: 1.8rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.location-card h3 { font-size: 1.4rem; }
.location-card .addr { color: var(--text); line-height: 1.5; }
.location-card .addr b { color: var(--bone); }
.location-card .btn { align-self: flex-start; }
.map-frame {
    min-height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--ink-2);
    filter: grayscale(0.4) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ============================================================
   CONTATO
   ============================================================ */
.contato-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
    padding: 2.6rem 0 var(--space-section);
}
.contato-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contato-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1.2rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.2s, transform 0.2s var(--ease);
}
a.contato-card:hover { border-color: var(--copper-line); transform: translateY(-2px); }
.contato-card-wa { grid-column: 1 / -1; border-color: rgba(37,211,102,0.35); }
.contato-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--copper-soft); color: var(--copper); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.contato-icon svg { width: 18px; height: 18px; }
.contato-card-wa .contato-icon { background: var(--wa); color: #06170c; }
.contato-card h3 { font-size: 1.05rem; }
.contato-card p { font-size: 0.9rem; color: var(--text-soft); }
.contato-card .val { color: var(--bone); font-weight: 600; font-size: 0.95rem; overflow-wrap: anywhere; }
.contato-map { margin-top: 10px; }

/* ============================================================
   404
   ============================================================ */
.error-shell {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: radial-gradient(700px 400px at 50% 0%, rgba(242,106,33,0.18), transparent 60%), var(--ink);
}
.error-inner { position: relative; z-index: 1; max-width: 680px; }
.error-code {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(6rem, 22vw, 15rem);
    line-height: 0.9;
    color: var(--bone);
    letter-spacing: -0.02em;
}
.error-code em { font-style: normal; }
.error-inner h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0.6rem 0 0.7rem; }
.error-inner p { color: var(--text-soft); max-width: 48ch; margin-bottom: 1.6rem; }
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
    .nav-links a { padding: 10px 9px; font-size: 0.72rem; letter-spacing: 0.08em; }
    .hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
}

@media (max-width: 1100px) {
    /* nav collapses */
    .nav-links { display: none; }
    .nav-right .nav-cta { display: none; }
    .nav-hamburger { display: block; }

    .hero-inner { grid-template-columns: minmax(0, 1fr); }
    .hero-visual { max-width: 460px; justify-self: start; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3) { padding-left: 0; border-left: 0; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

    .why-inner { grid-template-columns: minmax(0, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }

    /* estoque: filters become an off-canvas drawer */
    .estoque-inner { grid-template-columns: minmax(0, 1fr); }
    .mobile-filter-toggle { display: flex; }
    .filter-rail {
        position: fixed;
        inset: 0;
        z-index: 1500;
        max-height: none;
        border-radius: 0;
        border: 0;
        padding: 1.2rem var(--gutter) 6rem;
        transform: translateX(-102%);
        transition: transform 0.3s var(--ease);
        overflow-y: auto;
        background: var(--ink);
    }
    .filter-rail.is-open { transform: none; }
    .filter-close { display: flex; align-items: center; justify-content: center; }
    .filter-apply {
        display: block;
        position: fixed;
        left: var(--gutter); right: var(--gutter); bottom: 1rem;
        width: auto;
        margin: 0;
        box-shadow: 0 -20px 30px -10px rgba(8,8,7,0.9), var(--shadow-lg);
    }
    .veiculo-top, .veiculo-details { grid-template-columns: minmax(0, 1fr); }
    .veiculo-summary { position: static; }
    .form-layout, .form-layout-reverse { grid-template-columns: minmax(0, 1fr); }
    .form-layout-reverse .form-card { order: -1; }
    .side-stack { position: static; }
    .about-hero-inner, .story-grid, .location-grid { grid-template-columns: minmax(0, 1fr); }
    .contato-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
    .steps-grid { grid-template-columns: minmax(0, 1fr); }
    .pillars { grid-template-columns: minmax(0, 1fr); }
    .ig-card { grid-template-columns: minmax(0, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .veiculo-thumbs { grid-template-columns: repeat(5, 1fr); }
    .cat-strip-label { display: none; }
}

@media (max-width: 767px) {
    :root { --nav-h: 64px; }
    .logo-nav .logo-img { height: 34px; }
    .hero { padding-top: calc(var(--nav-h) + 2rem); }
    .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
    .hero-actions .btn { flex: 1 1 100%; }
    .hero-featured-title { font-size: 1.3rem; }
    .hero-summary { flex-direction: column; gap: 4px; padding-top: 1rem; margin-bottom: 0.4rem; }
    .hero-summary .sep { display: none; }
    .why-grid { grid-template-columns: minmax(0, 1fr); }
    .section-head { flex-direction: column; align-items: flex-start; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { flex: 1 1 100%; }
    .footer-main { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.6rem 0 2rem; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .form-grid { grid-template-columns: minmax(0, 1fr); }
    .form-field.span-2 { grid-column: auto; }
    .form-field input, .form-field select, .form-field textarea,
    .filter-input, .filter-select, .vehicle-select-search, .vehicle-select-label { font-size: 16px; } /* no iOS zoom */
    .veiculo-specs { grid-template-columns: 1fr 1fr; }
    .veiculo-summary .btn-row { flex-direction: column; }
    .veiculo-thumbs { grid-template-columns: repeat(4, 1fr); }
    .opt-grid { grid-template-columns: 1fr; }
    .contato-cards { grid-template-columns: minmax(0, 1fr); }
    .vg-modal-stage { padding: 56px 12px; }
    .vg-modal-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
    .vg-modal-prev { left: 8px; }
    .vg-modal-next { right: 8px; }
    .estoque-toolbar { padding: 0.7rem 0.9rem; }
    .estoque-sort { min-width: 0; flex: 1; }
    .estoque-tools { width: 100%; }
    .vso-price { display: none; }
    .vso-thumb { width: 56px; height: 38px; }
    .float-wa { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
    .car-grid { grid-template-columns: minmax(0, 1fr); }
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 1.9rem; }
    .hero-badges .hero-badge { flex: 1 1 100%; }
    .page-head h1 { font-size: 2rem; }
    .cta-text h2 { font-size: 1.6rem; }
    .veiculo-summary { padding: 1.2rem; }
    .form-card { padding: 1.2rem; }
    .radio-pill { min-width: 0; }
}

/* ============================================================
   TOUCH DEVICES — surface hover-only controls
   ============================================================ */
@media (hover: none) {
    .carousel-arrow, .vg-arrow { opacity: 0.85; }
    .car-card:hover, .why-card:hover, .hero-featured:hover { transform: none; }
    .car-card:hover .card-carousel img.active { transform: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .neon-sign-text { animation: none; }
}


/* ============================================================
   HOME — "como a gente trabalha" (prose + definition list)
   ============================================================ */
.about-band { background: var(--ink-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.08; margin: 0.6rem 0 1.2rem; max-width: 20ch; }
.about-copy p { color: var(--text-soft); font-size: 1.04rem; line-height: 1.7; margin-bottom: 1rem; max-width: 52ch; }
.about-copy p b { color: var(--bone); font-weight: 600; }
.about-meta { margin-top: 1.4rem; font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; }
.about-meta a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }
.def-list { display: flex; flex-direction: column; }
.def-list > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.05rem 0;
    border-top: 1px solid var(--border);
}
.def-list > div:last-child { border-bottom: 1px solid var(--border); }
.def-list dt { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--bone); line-height: 1.2; }
.def-list dd { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; }
.def-list dd a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* ---- FAQ ---- */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.faq-intro h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0.6rem 0 0.8rem; max-width: 16ch; }
.faq-intro p { color: var(--text-soft); max-width: 36ch; }
.faq-intro .btn { margin-top: 1.2rem; }
.faq { display: flex; flex-direction: column; }
.faq > details { border-top: 1px solid var(--border); }
.faq > details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--copper); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform 0.2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-soft); font-size: 0.98rem; line-height: 1.65; padding: 0 0 1.1rem; max-width: 60ch; }
.faq details p a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Instagram line ---- */
.ig-line { border-top: 1px solid var(--border); }
.ig-line-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: 1.6rem 0;
}
.ig-line p { color: var(--text-soft); font-size: 1rem; }
.ig-line p b { color: var(--bone); font-weight: 600; }
.ig-line .link-arrow svg { color: var(--copper); }

@media (max-width: 900px) {
    .about-grid, .faq-grid { grid-template-columns: minmax(0, 1fr); }
    .def-list > div { grid-template-columns: minmax(0, 1fr); gap: 0.25rem; }
}


/* ============================================================
   MEDIA FRAMES — aspect-aware fitting (see fitImage in shared.js)
   Landscape photos fill the frame (cover); portrait/square posts are
   shown whole (contain) over a blurred copy of themselves.
   ============================================================ */
.img-wrapper, .hero-featured-img, .vg-slide { position: relative; overflow: hidden; background: #0b0b0a; }
.img-backdrop {
    position: absolute;
    inset: -14%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: blur(22px) saturate(1.1) brightness(0.5);
    transform: scale(1.06);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
}
.has-backdrop > .img-backdrop { opacity: 1; }
.card-carousel { z-index: 1; }
.hero-featured-img > img, .vg-slide > img { position: relative; z-index: 1; }
.card-carousel img.is-contain,
.hero-featured-img img.is-contain,
.vg-slide img.is-contain { object-fit: contain; }
/* hero frame follows the cover: square for portrait posts, 4:3 for photos */
.hero-featured-img { aspect-ratio: 4 / 3; transition: aspect-ratio 0.3s var(--ease); }
.hero-featured-img.is-square { aspect-ratio: 1 / 1; }
.hero-featured-img::after { z-index: 2; }
.hero-featured-tag { z-index: 3; }
.vg-slide .img-backdrop { filter: blur(26px) saturate(1.1) brightness(0.45); }

/* ============================================================
   HERO — fluid first screen (two-column layout, ≥ 1101px)
   Every size in the hero is a multiple of one scale token, --hs,
   which follows the viewport width (1vw) between ~1150px and
   ~1700px and is clamped outside that range. So a 1280px laptop
   sees the same composition as a 1512px MacBook, just smaller,
   and a 1920px monitor sees it a bit bigger — never a fixed card
   floating in a bigger screen. Baseline: --hs = 15.12px @ 1512px.
   The hero also owns the first screen: its height is the viewport
   minus the category strip, so that strip always peeks at the fold.
   ============================================================ */
@media (min-width: 1101px) {
    .hero {
        /* width-driven, but a short wide viewport (e.g. 1512×770) scales down a notch so the card keeps air */
        --hs: clamp(0.72rem, min(1vw, 1.9vh), 1.0625rem);
        --hero-peek: 86px; /* .cat-strip height */
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: min(calc(100vh - var(--hero-peek)), 1080px);
        min-height: min(calc(100svh - var(--hero-peek)), 1080px);
        padding-top: calc(var(--nav-h) + var(--hs) * 2);
        padding-bottom: calc(var(--hs) * 2);
    }
    .hero-inner { gap: calc(var(--hs) * 5); }

    /* text column */
    .hero-text { max-width: calc(var(--hs) * 44); }
    .hero-kicker { font-size: calc(var(--hs) * 0.95); margin-bottom: calc(var(--hs) * 1.15); }
    .hero h1 { font-size: calc(var(--hs) * 4.25); margin-bottom: calc(var(--hs) * 1.25); }
    .hero-sub { font-size: calc(var(--hs) * 1.24); margin-bottom: calc(var(--hs) * 1.9); }
    .hero-actions { gap: calc(var(--hs) * 0.66) calc(var(--hs) * 1.2); margin-bottom: calc(var(--hs) * 1.9); }
    .hero-actions .btn-xl { font-size: calc(var(--hs) * 1.08); padding: calc(var(--hs) * 1) calc(var(--hs) * 1.6); }
    .hero-actions .link-arrow { font-size: calc(var(--hs) * 1); }
    .hero-actions .link-arrow svg { width: calc(var(--hs) * 1.2); height: calc(var(--hs) * 1.2); }
    .hero-summary { font-size: calc(var(--hs) * 0.97); padding-top: calc(var(--hs) * 1.25); max-width: calc(var(--hs) * 34.5); }

    /* featured card */
    .hero-visual { max-width: calc(var(--hs) * 28); }
    .hero-featured-tag {
        top: calc(var(--hs) * 0.66); left: calc(var(--hs) * 0.66);
        padding: calc(var(--hs) * 0.27) calc(var(--hs) * 0.6);
        font-size: calc(var(--hs) * 0.76);
    }
    .hero-featured-body { padding: calc(var(--hs) * 0.95) calc(var(--hs) * 1.15) calc(var(--hs) * 1.05); }
    .hero-featured-head { margin-bottom: calc(var(--hs) * 0.75); }
    .hero-featured-overline { font-size: calc(var(--hs) * 0.8); }
    .hero-featured-title { font-size: calc(var(--hs) * 1.6); }
    .hero-featured-meta { font-size: calc(var(--hs) * 0.91); }
    .hero-featured-foot { padding-top: calc(var(--hs) * 0.75); }
    .hero-featured-price { font-size: calc(var(--hs) * 1.6); }
    .hero-featured-price small { font-size: calc(var(--hs) * 0.76); }
    .hero-featured-cta { font-size: calc(var(--hs) * 0.93); }
    .hf-controls { padding-top: calc(var(--hs) * 0.66); }
    .hf-arrow { width: calc(var(--hs) * 2.25); height: calc(var(--hs) * 2.25); font-size: calc(var(--hs) * 1.35); }
    .hf-dot { width: calc(var(--hs) * 0.46); height: calc(var(--hs) * 0.46); }
    .hf-dot.active { width: calc(var(--hs) * 1.45); }
}

/* ============================================================
   CAROUSEL ARROWS — SVG chevrons (hero, cards, gallery, lightbox)
   The buttons are flex-centered; the chevron scales with the button.
   ============================================================ */
.hf-arrow, .carousel-arrow, .vg-arrow, .vg-modal-arrow { padding: 0; line-height: 0; }
.hf-arrow svg, .carousel-arrow svg, .vg-arrow svg, .vg-modal-arrow svg {
    display: block;
    width: 48%; height: 48%;
    flex: none;
}
/* optical centering: a chevron's visual weight sits toward its point, nudge it 1px against the point */
.hf-prev svg, .carousel-arrow.prev svg, .vg-prev svg, .vg-modal-prev svg { transform: translateX(-1px); }
.hf-next svg, .carousel-arrow.next svg, .vg-next svg, .vg-modal-next svg { transform: translateX(1px); }
