/* =========================================================================
   SKIN "STUDIO" — minimalista / clean (recriada do zero, fiel ao Claude Design)
   -------------------------------------------------------------------------
   Usada pelas VIEWS PRÓPRIAS da Studio (layouts/guest-studio + skins/studio/*),
   NÃO é um restyle do markup do complete. CSS cru (servido direto, sem build).

   Identidade: canvas NEUTRO fixo (fundo branco, seções off-white, footer escuro,
   texto quase-preto, hairlines) + ACENTO = a cor de marca do cliente
   (var(--main-primary-color)). Tipografia Montserrat (títulos/UI) + Lato (corpo),
   self-hosted (fonts.css). Só o acento é herdado; o canvas é da skin (um cliente
   de tema escuro não deixa a Studio preta).
   ========================================================================= */

.st {
    --acc:   var(--main-primary-color, #2F6DB0);
    /* Acentos/ações que o cliente controla na Identidade visual (subset da Studio):
       secundária = acento de apoio (botão outline); botão/hover = CTA. Fallback coerente:
       secundária→primária, botão→primária, hover→botão escurecido (sem depender de config). */
    --acc2:  var(--main-secondary-color, var(--acc));
    --btn:   var(--button-color, var(--acc));
    --btn-h: var(--button-hover-color, color-mix(in srgb, var(--btn) 88%, #000));
    --ink:   #141414;
    --muted: #6a6a6a;
    --muted2:#8a8a8a;
    --label: #9a9a9a;
    --line:  #ECECE6;
    --line2: #F0F0EA;
    --surface:#FFFFFF;
    --section:#FAFAF8;
    --footer:#141414;
    --f-head:'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --f-body:'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: var(--f-body);
    -webkit-font-smoothing: antialiased;
}
.st * { box-sizing: border-box; }
.st a { text-decoration: none; color: inherit; }
.st img { max-width: 100%; display: block; }
.st h1, .st h2, .st h3 { font-family: var(--f-head); margin: 0; }

/* Container consistente — WIDE (padrão das skins novas: usa bem a largura do desktop).
   Container único p/ todas as seções (header/hero/cards/footer) → sem "cruzamento". */
.st-wrap { width: 92%; max-width: 1600px; margin: 0 auto; }

/* Kickers (rótulo pequeno, espaçado) */
.st-kicker {
    font: 600 clamp(9px, .8vw, 11px) var(--f-head);
    letter-spacing: .22em; text-transform: uppercase; color: var(--label);
}
.st-kicker--accent { color: var(--acc); }

/* Botões */
.st-btn {
    display: inline-block; font: 600 13px var(--f-head); letter-spacing: -.01em;
    padding: 13px 28px; border-radius: 6px; cursor: pointer; transition: filter .18s, background .18s, color .18s;
}
/* Tinta do MESMO fundo que pinta o botão (--btn = --button-color). Era `#fff` fixo — a
   última das cinco skins a cravar branco; prestige e turbo já derivavam. Nenhum site usa a
   studio hoje, mas a prévia da área do cliente a desenha. */
.st-btn--primary { background: var(--btn); color: var(--button-color-ink, #fff); border: none; }
.st-btn--primary:hover { background: var(--btn-h); }
.st-btn--ghost { background: transparent; color: var(--acc2); border: 1px solid color-mix(in srgb, var(--acc2) 35%, #fff); }
.st-btn--ghost:hover { background: var(--acc2); color: #fff; }

/* -------- Header -------- */
.st-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.st-header__inner { display: flex; align-items: center; gap: 24px; padding: 16px 0; }
.st-brand { display: inline-flex; align-items: center; }
.st-brand__logo { max-height: 40px; width: auto; }
.st-brand__name { font: 700 20px var(--f-head); letter-spacing: -.01em; color: var(--ink); }
.st-brand__dot { color: var(--acc); }
.st-nav { display: flex; gap: 22px; margin-left: 8px; }
.st-nav a { font: 500 13px var(--f-head); color: #5c5c5c; }
.st-nav a:hover { color: var(--ink); }
.st-search {
    display: flex; align-items: center; gap: 8px; margin-left: auto;
    border: 1px solid var(--line); border-radius: 22px; padding: 8px 16px; background: #fff;
}
.st-search__icon { color: var(--label); font-size: 13px; }
.st-search input { border: none; outline: none; background: transparent; font: 400 12px var(--f-body); color: var(--ink); min-width: 140px; }
.st-search input::placeholder { color: var(--label); }
.st-nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--ink); cursor: pointer; margin-left: auto; }

/* -------- Hero -------- */
.st-hero { padding: clamp(32px, 5vw, 56px) 0 clamp(28px, 4vw, 44px); }
.st-hero__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 48px); }
.st-hero__title { font: 700 clamp(30px, 4.4vw, 52px)/1.1 var(--f-head); letter-spacing: -.02em; margin: 14px 0 0; }
.st-hero__sub { font: 400 clamp(13px, 1.2vw, 16px)/1.6 var(--f-body); color: var(--muted); margin: 16px 0 26px; max-width: 46ch;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
/* Topo em "carrossel de destaques" (`hero_type`): sem a coluna da mídia, a grade vira uma
   coluna — senão o texto do hero ficaria em metade da largura. Ver skins/studio/home.php. */
.st-hero__grid--solo { grid-template-columns: 1fr; }
.st-hero__media { position: relative; aspect-ratio: 16 / 10; border-radius: 12px; overflow: hidden; background: var(--section); border: 1px solid var(--line); }
.st-hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Sem banner (ou banner quebrado): box neutro com legenda discreta, em vez de ícone quebrado */
.st-hero__media.is-empty::after {
    content: 'foto / banner'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font: 500 13px var(--f-head); letter-spacing: .04em; color: var(--label);
}

/* -------- Destaques -------- */
.st-featured { padding: 4px 0 clamp(36px, 5vw, 56px); }
.st-featured .st-kicker { display: block; margin-bottom: 20px; }
.st-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(18px, 2vw, 28px); }

.st-card {
    border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--surface);
    display: block; transition: box-shadow .25s, border-color .25s, transform .25s;
}
.st-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: #dcdcd4; transform: translateY(-2px); }
.st-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--section); }
.st-card__media img { width: 100%; height: 100%; object-fit: cover; }
.st-tag { position: absolute; top: 10px; left: 10px; background: rgba(20,20,20,.82); color: #fff; font: 600 10px var(--f-head); text-transform: uppercase; letter-spacing: .04em; padding: 4px 9px; border-radius: 999px; }
.st-card__body { padding: 16px 18px 18px; }
.st-card__name { font: 700 16px var(--f-head); letter-spacing: -.01em; }
.st-card__ver { font: 400 12px var(--f-body); color: var(--muted2); margin-top: 3px; }
.st-card__specs { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.st-card__specs > div { display: flex; justify-content: space-between; font: 400 12.5px var(--f-body); }
.st-card__specs span:first-child { color: var(--label); }
.st-card__specs span:last-child { color: #3a3a3a; }
.st-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line2); }
.st-card__price { font: 800 18px var(--f-head); letter-spacing: -.01em; color: var(--ink); }
.st-card__arrow { font: 600 18px var(--f-head); color: var(--acc); }
.st-more { text-align: center; margin-top: clamp(24px, 3vw, 36px); }

/* -------- Ficha do veículo -------- */
.st-vehicle { padding: clamp(20px, 3vw, 36px) 0 clamp(40px, 5vw, 64px); }
.st-crumb { font: 400 12.5px var(--f-body); color: var(--label); margin-bottom: 18px; }
.st-crumb a { color: var(--muted); }
.st-crumb a:hover { color: var(--acc); }
.st-crumb span { color: var(--ink); }
.st-vehicle__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: start; }
.st-gallery__main { aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--section); border: 1px solid var(--line); }
.st-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.st-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.st-thumb { padding: 0; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; cursor: pointer; background: var(--section); aspect-ratio: 4 / 3; }
.st-thumb img { width: 100%; height: 100%; object-fit: cover; }
.st-thumb.is-active { border-color: var(--acc); }
.st-vehicle__name { font: 700 clamp(22px, 2.4vw, 30px) var(--f-head); letter-spacing: -.01em; }
.st-vehicle__ver { font: 400 13px var(--f-body); color: var(--muted2); margin-top: 4px; }
.st-vehicle__price { font: 800 clamp(26px, 3vw, 34px) var(--f-head); letter-spacing: -.02em; margin: 14px 0 18px; }
.st-vehicle__specs { display: flex; flex-direction: column; margin-bottom: 20px; }
.st-vehicle__specs > div { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line2); font: 400 13.5px var(--f-body); }
.st-vehicle__specs span:first-child { color: var(--label); }
.st-vehicle__specs span:last-child { color: #3a3a3a; font-weight: 600; }
.st-btn--block { display: block; text-align: center; }
.st-btn--block + .st-btn--block { margin-top: 10px; }
.st-btn--outline { background: transparent; color: var(--acc); border: 1px solid color-mix(in srgb, var(--acc) 35%, #fff); }
.st-btn--outline:hover { background: var(--acc); color: #fff; }
.st-btn--wpp { background: #25D366; }
.st-btn--wpp:hover { filter: brightness(.95); }
.st-vehicle__obs { margin-top: clamp(28px, 3vw, 44px); max-width: 70ch; }
.st-vehicle__obs .st-kicker { display: block; margin-bottom: 10px; }
.st-vehicle__obs p { font: 400 14px/1.7 var(--f-body); color: var(--muted); }

/* -------- Sobre -------- */
.st-about { padding: clamp(32px, 4vw, 56px) 0 clamp(40px, 5vw, 64px); }
.st-about__title { font: 700 clamp(28px, 3.4vw, 42px) var(--f-head); letter-spacing: -.02em; margin: 12px 0 20px; }
.st-about__text { font: 400 15px/1.8 var(--f-body); color: var(--muted); max-width: 74ch; white-space: pre-line; }
.st-about__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: clamp(28px, 3vw, 40px); }
.st-info-card { border: 1px solid var(--line); border-radius: 12px; padding: 22px 24px; background: var(--surface); }
.st-info-card .st-kicker { display: block; margin-bottom: 12px; }
.st-info-card__lines { font: 400 14px/1.9 var(--f-body); color: var(--ink); margin-bottom: 14px; }
.st-info-card__lines a { color: var(--ink); }
.st-info-card__lines a:hover { color: var(--acc); }
.st-btn--sm { padding: 10px 20px; font-size: 12.5px; }

/* -------- Formulários (Contato / Ficha) -------- */
.st-contact, .st-reg { padding: clamp(32px, 4vw, 56px) 0 clamp(40px, 5vw, 64px); }
.st-contact__title, .st-reg__title { font: 700 clamp(26px, 3vw, 38px) var(--f-head); letter-spacing: -.02em; margin: 12px 0 24px; }
.st-contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 3vw, 44px); align-items: start; }
.st-form { display: flex; flex-direction: column; gap: 16px; }
.st-field { display: flex; flex-direction: column; gap: 6px; }
.st-field label { font: 600 12px var(--f-head); color: var(--muted); letter-spacing: .01em; }
.st-field input, .st-field textarea, .st-field select {
    font: 400 14px var(--f-body); color: var(--ink); background: #fff;
    border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; width: 100%; outline: none;
    transition: border-color .18s;
}
.st-field input:focus, .st-field textarea:focus, .st-field select:focus { border-color: var(--acc); }
.st-field textarea { resize: vertical; min-height: 110px; }
.st-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.st-form .st-btn { align-self: flex-start; }

/* Ficha cadastral (form dinâmico por seções) */
.st-form--reg { max-width: 920px; }
.st-reg__section { margin-bottom: 8px; padding-bottom: 20px; border-bottom: 1px solid var(--line2); }
.st-reg__section:last-of-type { border-bottom: none; }
.st-reg__section-title { font: 600 11px var(--f-head); letter-spacing: .12em; text-transform: uppercase; color: var(--label); margin: 6px 0 16px; }
.st-reg__fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.st-field--full { grid-column: 1 / -1; }
.st-radios { display: flex; flex-wrap: wrap; gap: 8px 20px; padding-top: 4px; }
.st-radio { display: inline-flex; align-items: center; gap: 6px; font: 400 13.5px var(--f-body); color: var(--ink); cursor: pointer; }
.st-radio input { accent-color: var(--acc); }

/* -------- Footer -------- */
.st-footer { background: var(--footer); color: #e8e8e4; padding: clamp(30px, 4vw, 48px) 0 24px; }
.st-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(24px, 3vw, 40px); }
.st-footer__brand { font: 700 18px var(--f-head); }
.st-footer__logo { max-height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .92; }
.st-footer__desc { font: 400 12.5px/1.7 var(--f-body); color: #9a9a94; margin: 10px 0 0; max-width: 40ch; }
.st-footer__label { font: 600 10px var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: #8a8a84; margin-bottom: 10px; }
.st-footer__lines { font: 400 12.5px/1.9 var(--f-body); color: #b0b0aa; }
.st-footer__lines a { color: #b0b0aa; }
.st-footer__social { display: flex; gap: 10px; }
.st-footer__social a {
    width: 36px; height: 36px; border-radius: 8px; background-color: rgba(255,255,255,.08);
    background-repeat: no-repeat; background-position: center; background-size: 19px;
    font-size: 0; color: transparent; transition: background-color .18s;
}
.st-footer__social a:hover { background-color: rgba(255,255,255,.16); }
.st-footer__social .icon__instagram { background-image: url(../img/icons/instagram-color.svg); }
.st-footer__social .icon__facebook  { background-image: url(../img/icons/facebook-color.svg); }
.st-footer__social .icon__youtube   { background-image: url(../img/icons/youtube-color.svg); }
.st-footer__social .icon__tiktok    { background-image: url(../img/icons/tiktok-white.svg); }
.st-footer__bar { border-top: 1px solid rgba(255,255,255,.1); margin-top: 24px; padding-top: 16px; font: 400 11px var(--f-body); color: #7a7a74; text-align: center; }

.st-flash { background: #fee2e2; color: #991b1b; border-radius: 8px; padding: 12px 16px; margin: 16px 0; font: 500 13px var(--f-body); }

/* -------- Estoque -------- */
.st-stock { background: var(--section); padding: clamp(24px, 3vw, 44px) 0 clamp(40px, 5vw, 64px); min-height: 60vh; }
.st-stock .st-kicker { display: block; margin-bottom: 16px; }
.st-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 26px; }
.st-filters__search { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 9px 16px; flex: 1 1 260px; max-width: 380px; }
.st-filters__search input { border: none; outline: none; background: transparent; font: 400 13px var(--f-body); color: var(--ink); width: 100%; }
.st-filters__search input::placeholder { color: var(--label); }
.st-chip {
    font: 500 13px var(--f-body); color: #5c5c5c; background: #fff; border: 1px solid #E2E2DA;
    padding: 10px 18px; border-radius: 22px; cursor: pointer; appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M1 1.5 6 6l5-4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; background-size: 10px; padding-right: 34px;
}
.st-chip:focus { outline: none; border-color: var(--acc); }
.st-chip--go { background: var(--acc); color: #fff; border-color: var(--acc); font-family: var(--f-head); font-weight: 600; padding-right: 20px; background-image: none; }
.st-chip--go:hover { filter: saturate(1.05) brightness(.93); }
.st-empty { color: var(--muted); font: 400 15px var(--f-body); padding: 40px 0; text-align: center; }
.st-stock__count { font: 600 13px var(--f-head); color: var(--muted); margin-bottom: 16px; }

/* Cabeçalho da listagem: contagem + seletor de exibição (lista × cards) */
.st-stock__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.st-stock__head .st-stock__count { margin-bottom: 0; }
.st-viewtoggle { display: inline-flex; gap: 3px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 3px; }
.st-viewtoggle__btn {
    border: none; background: transparent; color: var(--muted2); width: 36px; height: 30px; border-radius: 18px;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .18s, color .18s;
}
.st-viewtoggle__btn svg { fill: currentColor; }
.st-viewtoggle__btn:hover { color: var(--ink); }
.st-viewtoggle__btn.is-active { background: var(--acc); color: #fff; }

/* Alterna as duas visões (default = lista; sem JS, cai na lista) */
.st-results[data-view="list"] .st-grid { display: none; }
.st-results[data-view="cards"] .st-list { display: none; }

/* Listagem em linhas (LIST ROWS — fiel ao design; distinta do grid de cards da home) */
.st-list { display: flex; flex-direction: column; gap: 14px; }
.st-row {
    display: grid; grid-template-columns: 168px 1fr auto; align-items: center; gap: 22px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
    transition: box-shadow .25s, border-color .25s, transform .25s;
}
.st-row:hover { box-shadow: 0 12px 30px rgba(0,0,0,.08); border-color: #dcdcd4; transform: translateY(-2px); }
.st-row__media { position: relative; width: 168px; aspect-ratio: 4 / 3; background: var(--section); }
.st-row__media img { width: 100%; height: 100%; object-fit: cover; }
.st-row__body { min-width: 0; padding: 6px 0; }
.st-row__name { font: 700 16px var(--f-head); letter-spacing: -.01em; color: var(--ink); }
.st-row__ver { font: 400 13px var(--f-body); color: var(--muted2); letter-spacing: 0; }
.st-row__meta { font: 400 13px var(--f-body); color: var(--muted); margin-top: 5px; }
.st-row__end { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; padding: 0 22px 0 0; text-align: right; }
.st-row__price { font: 800 18px var(--f-head); letter-spacing: -.01em; color: var(--ink); white-space: nowrap; }
.st-row__arrow { font: 600 16px var(--f-head); color: var(--acc); }

/* Paginação */
.st-pager { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: clamp(28px, 3vw, 40px); }
.st-pager__num, .st-pager__nav {
    min-width: 38px; height: 38px; padding: 0 8px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink);
    font: 500 13px var(--f-head); transition: border-color .18s, background .18s;
}
.st-pager__num:hover, .st-pager__nav:hover { border-color: var(--acc); color: var(--acc); }
.st-pager__num.is-current { background: var(--acc); border-color: var(--acc); color: #fff; }
.st-pager__dots { color: var(--label); padding: 0 4px; }

/* -------- Responsivo -------- */
@media (max-width: 860px) {
    .st-hero__grid { grid-template-columns: 1fr; }
    .st-hero__media { order: -1; }
    /* Ficha do veículo em UMA coluna no mobile — a studio era a única skin sem este
       breakpoint (classic/prestige/turbo já o tinham): a galeria ficava numa coluna
       de 167px num container de 345px. */
    .st-vehicle__grid { grid-template-columns: 1fr; }
    .st-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 0; box-shadow: 0 12px 24px rgba(0,0,0,.08); }
    .st-nav.is-open { display: flex; }
    .st-nav a { padding: 12px clamp(20px, 4vw, 48px); }
    .st-header__inner { position: relative; flex-wrap: wrap; }
    .st-nav-toggle { display: block; }
    .st-search { margin-left: 0; order: 3; flex: 1 1 100%; }
    .st-footer__grid { grid-template-columns: 1fr; }
}

/* -------- FAQ (Dúvidas) -------- */
.st-faq { padding: clamp(32px, 4vw, 56px) 0 clamp(40px, 5vw, 64px); }
.st-faq__wrap { max-width: 860px; }
.st-faq__title { font: 700 clamp(26px, 3vw, 38px) var(--f-head); letter-spacing: -.02em; margin: 12px 0 24px; }
.st-faq__list { display: flex; flex-direction: column; gap: 10px; }
.st-faq__item { border: 1px solid var(--line); border-radius: 10px; background: var(--surface); overflow: hidden; }
.st-faq__q { cursor: pointer; padding: 16px 20px; font: 600 15px var(--f-head); color: var(--ink); list-style: none; position: relative; }
.st-faq__q::-webkit-details-marker { display: none; }
.st-faq__q::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 20px; line-height: 0; color: var(--acc); }
.st-faq__item[open] .st-faq__q::after { content: '\2212'; }
.st-faq__a { padding: 0 20px 18px; line-height: 1.65; color: var(--muted); font: 400 14.5px var(--f-body); }
.st-faq__a p { margin: 0 0 10px; }
/* Título da seção (tema) — só existe quando o cliente agrupa as perguntas. */
.st-faq__cat { font: 700 clamp(17px, 1.6vw, 20px) var(--f-head); letter-spacing: -.01em; color: var(--ink); margin: 22px 0 2px; }
.st-faq__cat:first-child { margin-top: 0; }

/* -------- Alerts (form de venda / feedback) -------- */
.st-alert { border-radius: 10px; padding: 14px 18px; font: 400 14px var(--f-body); margin-bottom: 20px; }
.st-alert--ok  { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.st-alert--err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.st-alert ul { margin: 0; padding-left: 18px; }

/* ── Faixa de horário e selos ─────────────────────────────────────────────
   Os dois partials são autocontidos (a Studio não carrega o fix.css) e leem estas vars.
   A faixa fica clara, com hairline — a Studio não tem topo escuro como a complete. */
.skin--studio {
    --hours-bar-bg: #ffffff;
    --hours-bar-fg: #6b7280;
    --selos-bg: #f7f7f5;
    --selos-border: #e8e8e3;
}
.skin--studio .top-hours-bar { border-bottom: 1px solid #e8e8e3; }

/* ── Chips de faixa (Ano / Preço) ─────────────────────────────────────────
   Mesma pílula dos demais chips, com dois campos numéricos dentro: o filtro de faixa
   precisa de dois valores e a Studio não tem espaço para dois chips por filtro. */
/* ⚠️ Sem a seta do `select` e sem o padding que a acomoda: o `.st-chip` base desenha um
   chevron por `background-image`, e num campo de faixa ele apareceria sobre o segundo número. */
.st-chip--range { display: inline-flex; align-items: center; gap: 6px; background-image: none; padding-right: 18px; }
.st-chip--range .st-chip__lbl { color: #6b7280; font-size: 13px; white-space: nowrap; }
.st-chip--range .st-chip__sep { color: #c4c4c0; }
.st-chip--range input {
    width: 78px; border: 0; background: transparent; font: inherit; color: inherit;
    padding: 0; -moz-appearance: textfield;
}
.st-chip--range input::-webkit-outer-spin-button,
.st-chip--range input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.st-chip--range input:focus { outline: none; }
.st-chip--range:focus-within { border-color: var(--acc, #2F6DB0); }
@media (max-width: 640px) {
    .st-chip--range input { width: 62px; }
}

/* ── Badges sobre a foto ──────────────────────────────────────────────────
   ⚠️ O `.st-tag` base é absoluto no canto superior ESQUERDO. Com a carroceria e o
   "Blindado" ao mesmo tempo, os dois se sobrepunham — a carroceria fica à esquerda
   (é a informação que o comprador filtra) e o "Blindado" vai para a direita. */
.st-tag--armor { left: auto; right: 10px; background: rgba(20,20,20,.82); }
.st-tag--cat   { background: rgba(255,255,255,.94); color: #1c1c1c; box-shadow: 0 1px 3px rgba(0,0,0,.12); }

/* Na LISTAGEM a foto é pequena: o badge encolhe junto, senão cobre metade da imagem. */
.st-row__media { position: relative; }
.st-row__media .st-tag { top: 6px; left: 6px; font-size: 9px; padding: 3px 7px; }

/* ============================================================================
 * ⚠️ BOTÃO QUE É <a> PERDE A COR DO TEXTO — o reset `.st a { color: inherit }` (0-1-1:
 * classe + tipo) VENCE as regras de botão (0-1-0). O sintoma é contraste ~1,7:1 no CTA
 * (texto do canvas sobre o fundo do botão) e o CSS "diz" a cor certa algumas linhas acima —
 * marcador de HTML não vê contraste; só a cor COMPUTADA no navegador denuncia.
 * Achado ao auditar a classic (27/08); vale para as quatro skins de layout próprio.
 * ==========================================================================*/
.st a.st-btn--primary { color: var(--button-color-ink, #ffffff); }
.st a.st-btn--ghost { color: var(--acc2); }
.st a.st-btn--ghost:hover { color: #ffffff; }
.st a.st-btn--outline { color: var(--acc); }
.st a.st-btn--outline:hover { color: #ffffff; }
