/* ============================================================
   GTI Automóveis — Site premium
   Estrutura inspirada no TCAR Imports · Identidade GTI:
   dark carbono + vermelho GTI + branco · Anton / Inter
   ============================================================ */

:root {
  --red: #e10600;
  --red-dark: #b50500;
  --red-glow: rgba(225, 6, 0, .4);
  --bg: #0a0a0c;
  --bg-2: #101013;
  --card: #141519;
  --card-2: #1b1d22;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);
  --white: #f5f6f8;
  --muted: #9aa0ab;
  --muted-2: #686e79;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-display: 'Anton', system-ui, sans-serif;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body.is-loading { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--red); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  transition: transform .9s cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}
.preloader::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 50% 38%, rgba(225,6,0,.16), transparent 55%);
}
.preloader.is-done { transform: translateY(-100%); }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.preloader__logo {
  width: clamp(150px, 34vw, 220px); height: auto;
  opacity: 0; transform: scale(.92);
  animation: preLogo 1s var(--ease) forwards;
}
@keyframes preLogo { to { opacity: 1; transform: scale(1); } }
.preloader__count {
  font-family: var(--font-display); font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1; color: #fff; letter-spacing: 1px;
  display: inline-flex; align-items: flex-start; gap: 2px;
}
.preloader__count i { font-style: normal; font-size: .4em; color: var(--red); margin-top: .3em; }
.preloader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--line); }
.preloader__bar span {
  display: block; height: 100%; width: 0;
  background: var(--red); box-shadow: 0 0 16px var(--red-glow);
  transition: width .25s linear;
}
.preloader__tag {
  position: absolute; bottom: 28px; left: 0; right: 0; text-align: center;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2);
}

/* ---------- Image slots (fotos do estoque/showroom) ---------- */
.car__img, .hero__img, .feature__img, .feature__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.img--fallback { opacity: 0 !important; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--red);
  z-index: 200;
  box-shadow: 0 0 12px var(--red-glow);
  transition: width .1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: .2px;
  padding: 14px 28px; border-radius: 8px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, border-color .3s;
  white-space: nowrap;
}
.btn i { font-style: normal; transition: transform .3s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--lg { padding: 17px 36px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px var(--red-glow); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 18px 44px -12px var(--red-glow); }
.btn--ghost { background: transparent; border-color: var(--line-strong); color: #fff; }
.btn--ghost:hover { border-color: rgba(255,255,255,.55); transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  position: relative; z-index: 101; font-size: 13px;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar__contact { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #fff; opacity: .92; transition: opacity .3s; font-weight: 600; }
.topbar__item:hover { opacity: 1; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { color: #fff; opacity: .9; transition: transform .3s, opacity .3s; display: inline-flex; }
.topbar__social a:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Brand / logo ---------- */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 84px; width: auto; display: block; transition: transform .4s var(--ease), height .4s var(--ease); }
.header.scrolled .brand__logo { height: 64px; }
.brand:hover .brand__logo { transform: scale(1.04); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 12, .85);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
}
.header.scrolled { background: rgba(10, 10, 12, .92); border-bottom-color: var(--line); padding: 10px 0; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav { display: flex; gap: 34px; margin: 0 auto; }
.nav__link {
  font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: .3px;
  text-transform: uppercase; position: relative; transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--red);
  transition: width .35s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - 210px);
  display: flex; align-items: stretch;
  overflow: hidden; padding: clamp(40px, 6vh, 80px) 0 clamp(24px, 3vh, 36px);
}
/* svh = altura realmente visível no mobile (desconta a barra de URL),
   garante que o indicador "role para baixo" fique dentro da tela */
@supports (height: 100svh) { .hero { min-height: calc(100svh - 210px); } }
.hero__media {
  position: absolute; inset: 0; overflow: hidden;
  /* fundo escuro premium garantido caso a imagem não carregue */
  background:
    radial-gradient(ellipse at 70% 18%, rgba(225,6,0,.18), transparent 40%),
    linear-gradient(180deg, #15171c 0%, #0d0e12 55%, #08080a 100%);
}
.hero__img { position: absolute; inset: 0; object-fit: cover; object-position: center 66%; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.7) 45%, rgba(8,8,10,.3) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 35%);
}
.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; flex: 1; gap: 40px; }
.hero__top { max-width: 560px; }
.hero__bar { display: block; width: 64px; height: 3px; background: var(--red); margin-bottom: 28px; }
.hero__title { font-family: var(--font-display); font-weight: 400; line-height: .95; text-transform: uppercase; letter-spacing: .5px; }
.hero__line { display: block; font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--white); }
.hero__accent {
  background: linear-gradient(100deg, var(--red), #ff7063 55%, var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__sub { margin-top: 26px; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--muted); letter-spacing: .5px; }
/* CTA do hero: parte da seção 1, rola junto com a página */
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: clamp(28px, 4vh, 44px); }

/* Indicador "role para baixo" */
.hero__scroll {
  align-self: center; display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--muted); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  transition: color .3s; padding: 6px;
  animation: heroScrollIn .8s var(--ease) .7s both;
}
@keyframes heroScrollIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__scroll:hover { color: #fff; }
.hero__scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); animation: scrollBob 1.8s var(--ease) infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .5; }
  50% { transform: rotate(45deg) translate(4px, 4px); opacity: 1; }
}

/* ---------- Section base ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; position: relative; }
.section--alt { background: var(--bg-2); }
.section--tight { padding: clamp(50px, 7vw, 90px) 0; }

/* Divisória entre o hero (seção 1) e o veículo em destaque (seção 2) */
#destaque { border-top: 1px solid var(--line); }

.section__head { max-width: 720px; margin: 0 auto clamp(44px, 5vw, 72px); text-align: center; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; text-align: left; max-width: none; }
.section__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 4rem); line-height: .98; letter-spacing: .5px;
}
.section__title--left { text-align: left; }
.section__desc { color: var(--muted); margin-top: 18px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.section__desc--left { margin-left: 0; }

/* ---------- Featured vehicle ---------- */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 4vw, 56px); align-items: center; }
.feature__main {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 20%, rgba(225,6,0,.16), transparent 55%), linear-gradient(135deg, #1d2026, #0d0e11);
}
.feature__main::before { content: ''; position: absolute; inset: 0; z-index: 0; background-image: var(--car-silhouette); background-repeat: no-repeat; background-position: center 62%; background-size: 70%; }
.feature__img { position: absolute; inset: 0; z-index: 1; }
.feature__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.feature__thumb {
  position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1d2026, #0d0e11);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.feature__thumb:hover { border-color: var(--line-strong); }
.feature__thumb.is-active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), 0 0 16px -2px var(--red-glow); }
.feature__thumb img { position: absolute; inset: 0; }
.feature__badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); border: 1px solid rgba(225,6,0,.5); border-radius: 100px; padding: 6px 14px; margin-bottom: 18px;
}
.feature__name { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.05; letter-spacing: .5px; margin-bottom: 18px; }
.feature__text { color: var(--muted); margin: 0 0 26px; font-size: 1.02rem; }
.feature__specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 26px; }
.feature__spec { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.feature__spec span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted-2); margin-bottom: 4px; }
.feature__spec strong { font-size: 1.05rem; }
.feature__price { font-family: var(--font-display); font-size: 2rem; color: var(--red); letter-spacing: .5px; margin-bottom: 22px; }
.feature__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Modal "Ver detalhes" ---------- */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: clamp(14px, 4vw, 48px);
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute; inset: 0; background: rgba(4, 4, 6, .8);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  animation: modalFade .3s var(--ease);
}
.modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 1080px; max-height: 90vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: clamp(20px, 3.2vw, 44px); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
  animation: modalUp .4s var(--ease);
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--line); background: var(--card); color: var(--white);
  font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.modal__close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.feature--modal { align-items: start; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Estoque carousel ---------- */
.carousel__nav { display: flex; gap: 10px; flex-shrink: 0; }
.carousel__btn {
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: transparent; border: 1px solid var(--line-strong); color: #fff;
  font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.carousel__btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(280px, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: var(--red) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--red); border-radius: 100px; }
.carousel::-webkit-scrollbar-track { background: var(--line); }
@media (min-width: 981px) { .carousel { grid-auto-columns: calc((100% - 3 * clamp(16px,1.8vw,24px)) / 4); } }

/* ---------- Car cards ---------- */
.car {
  scroll-snap-align: start;
  cursor: pointer;
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s;
}
.car:hover { transform: translateY(-8px); border-color: rgba(225,6,0,.45); box-shadow: 0 30px 60px -28px rgba(0,0,0,.9); }
.car__media {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  background: radial-gradient(circle at 28% 18%, rgba(225,6,0,.16), transparent 52%), linear-gradient(135deg, #1d2026, #0d0e11);
}
.car__media::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--car-silhouette);
  background-repeat: no-repeat; background-position: center 62%; background-size: 76%;
  transition: transform .6s var(--ease);
}
.car:hover .car__media::before { transform: scale(1.08) translateX(6px); }
.car__img { position: absolute; inset: 0; z-index: 1; }
.car:hover .car__img { transform: scale(1.06); }
.car__year {
  position: absolute; z-index: 2; top: 14px; left: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  background: rgba(10,10,12,.85); color: #fff; padding: 5px 12px; border-radius: 6px;
  border: 1px solid var(--line);
}
.car__tag {
  position: absolute; z-index: 2; right: 14px; bottom: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 6px 13px; border-radius: 100px;
}
.car__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.car__name { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; }
.car__specs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.car__specs li { font-size: .78rem; color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; }
.car__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.car__price { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .5px; color: #fff; }
.car__cta { color: var(--red); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap .3s; }
button.car__cta { background: none; border: 0; font-family: inherit; cursor: pointer; padding: 0; }
.car__cta i { font-style: normal; transition: transform .3s var(--ease); }
.car__cta:hover { gap: 10px; }

.estoque__more { text-align: center; margin-top: clamp(36px, 4vw, 56px); }

/* ---------- Página de estoque ---------- */
.nav__link.is-active { color: #fff; }
.nav__link.is-active::after { width: 100%; }

.estoque-head { padding: clamp(40px, 6vw, 80px) 0 clamp(24px, 3vw, 40px); }

.finband { background: radial-gradient(circle at 12% 50%, rgba(225,6,0,.16), transparent 60%), var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finband__inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 18px; color: var(--white); font-size: .95rem; }
.finband__inner svg { color: var(--red); flex-shrink: 0; }
.finband__inner strong { color: #fff; }
.finband__sep { color: var(--muted-2); }
.finband__inner span { color: var(--muted); }
.finband__note { font-size: .8rem; color: var(--muted-2); }

.filter-cat { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filter-cat__btn {
  font-family: var(--font); font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  color: var(--muted); background: var(--card); cursor: pointer;
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 22px;
  transition: color .3s, border-color .3s, background .3s;
}
.filter-cat__btn:hover { color: #fff; border-color: var(--line-strong); }
.filter-cat__btn.is-active { color: #fff; background: var(--red); border-color: var(--red); }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(28px, 3vw, 40px); }
.toolbar__search { display: flex; align-items: center; gap: 10px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 12px 16px; flex: 1; min-width: 240px; max-width: 420px; color: var(--muted); }
.toolbar__search:focus-within { border-color: rgba(225,6,0,.5); }
.toolbar__search input { flex: 1; background: transparent; border: 0; outline: 0; color: #fff; font-family: var(--font); font-size: .95rem; }
.toolbar__search input::placeholder { color: var(--muted-2); }
.toolbar__count { color: var(--muted); font-size: .95rem; white-space: nowrap; }
.toolbar__count strong { font-family: var(--font); font-weight: 800; color: #fff; font-size: 1.05rem; margin-right: 4px; }

.estoque-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 24px); }

.car__brand { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.car__meta { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }

.estoque-empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 1.05rem; }
.estoque-empty a { color: var(--red); font-weight: 600; }

/* ---------- Perks / garantias ---------- */
.grid { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.grid--perks { grid-template-columns: repeat(4, 1fr); }
.perk { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform .45s var(--ease), border-color .45s; }
.perk:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.4); }
.perk__icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(225,6,0,.1); border: 1px solid rgba(225,6,0,.25); margin-bottom: 20px; }
.perk__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.perk__text { color: var(--muted); font-size: .95rem; }

/* ---------- Financiamento band ---------- */
.band { background: radial-gradient(circle at 80% -20%, rgba(225,6,0,.25), transparent 55%), linear-gradient(180deg, var(--bg), #131316); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px); }
.band__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1; margin-bottom: 14px; }
.band__text p { color: var(--muted); max-width: 540px; }

/* ---------- Depoimentos ---------- */
.rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.rating__stars { color: var(--red); letter-spacing: 3px; font-size: 1.1rem; }
.rating__txt { color: var(--muted); font-size: .95rem; }
.grid--reviews { grid-template-columns: repeat(3, 1fr); }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .45s var(--ease), border-color .45s; }
.review:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.4); }
.review__stars { color: var(--red); letter-spacing: 3px; }
.review blockquote { color: var(--white); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.review figcaption { color: var(--muted-2); font-size: .9rem; font-weight: 600; }
.reviews__note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: 26px; }

/* Carrossel de clientes recebendo o carro (marquee infinito, não pausa no hover) */
.clientes { margin-top: 44px; }
.clientes__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.clientes__track { display: flex; width: max-content; animation: clientes-scroll 60s linear infinite; }
.clientes__item {
  flex: 0 0 auto; width: 360px; aspect-ratio: 4 / 3; margin-right: 22px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(135deg, #1d2026, #0d0e11);
}
.clientes__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes clientes-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .clientes__item { width: 260px; margin-right: 16px; } }

/* ---------- Redes sociais ---------- */
.grid--social { grid-template-columns: repeat(3, 1fr); }
.social { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; color: #fff; transition: transform .45s var(--ease), border-color .45s, background .45s; }
.social:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.45); background: var(--card-2); }
.social svg { color: var(--red); margin-bottom: 8px; }
.social strong { font-size: 1.15rem; }
.social span { color: var(--muted); font-size: .92rem; }

/* ---------- Localização ---------- */
.local { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.local__text p { color: var(--muted); margin-top: 18px; }
.local__list { list-style: none; margin: 30px 0; display: grid; gap: 22px; }
.local__list li { display: flex; gap: 16px; align-items: flex-start; }
.local__ico { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--red); background: rgba(225,6,0,.1); border: 1px solid rgba(225,6,0,.25); }
.local__list strong { display: block; margin-bottom: 3px; }
.local__list p { margin: 0; color: var(--muted); font-size: .95rem; }
.local__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3.4; background: var(--card); }
.local__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ---------- Big CTA ---------- */
.bigcta { padding: clamp(70px, 10vw, 130px) 0; background: radial-gradient(circle at 50% -10%, rgba(225,6,0,.2), transparent 55%), linear-gradient(180deg, var(--bg), #131316); text-align: center; border-top: 1px solid var(--line); }
.bigcta__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem, 6vw, 4.2rem); line-height: .98; }
.bigcta__sub { color: var(--muted); max-width: 600px; margin: 22px auto 36px; font-size: 1.06rem; }
.bigcta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #060608; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; padding-top: clamp(50px, 6vw, 80px); padding-bottom: 44px; }
.footer__logo { height: 60px; width: auto; }
.footer__tag { color: var(--muted); margin-top: 18px; max-width: 300px; font-size: .95rem; }
.footer__col h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer__col p { color: var(--muted); font-size: .95rem; margin-bottom: 8px; }
.footer__nav { display: flex; flex-direction: column; gap: 11px; }
.footer__nav a { color: var(--muted); transition: color .3s; width: fit-content; }
.footer__nav a:hover { color: var(--red); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--card); border: 1px solid var(--line); transition: background .3s, border-color .3s, transform .3s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; padding-bottom: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .85rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 120;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.6);
  transition: transform .35s var(--ease); animation: waPulse 2.8s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 34px -10px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); }
}

/* silhueta de carro reutilizada nos placeholders */
:root {
  --car-silhouette: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 80'%3E%3Cpath d='M15 60 Q35 35 70 33 Q90 20 120 22 Q150 24 165 38 L185 42 Q192 44 190 52 L188 60 Z' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='0.4'/%3E%3Ccircle cx='60' cy='62' r='9' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='0.4'/%3E%3Ccircle cx='150' cy='62' r='9' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='0.4'/%3E%3C/svg%3E");
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .wa-float, .hero__img, .preloader__logo, .hero__scroll-arrow, .hero__scroll { animation: none; }
  .preloader__logo { opacity: 1; transform: none; }
  .preloader { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .feature { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .estoque-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .grid--perks { grid-template-columns: repeat(2, 1fr); }
  .estoque-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--reviews, .grid--social { grid-template-columns: repeat(2, 1fr); }
  .local { grid-template-columns: 1fr; gap: 50px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .topbar__social { display: none; }
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .brand__logo, .header.scrolled .brand__logo { height: 58px; }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; margin: 0;
    background: rgba(10,10,12,.98); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 22px;
  }
  .nav.open .nav__link { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .grid--perks { grid-template-columns: 1fr; }
  .grid--reviews, .grid--social { grid-template-columns: 1fr; }
  .estoque-grid { grid-template-columns: 1fr; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .toolbar__search { max-width: none; }
  .feature__specs { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions, .bigcta__actions, .feature__actions { width: 100%; }
  .hero__actions .btn, .bigcta__actions .btn, .feature__actions .btn { width: 100%; justify-content: center; }
  .band__inner { flex-direction: column; align-items: flex-start; }
  .band__inner .btn { width: 100%; justify-content: center; }
}

/* Telas bem pequenas */
@media (max-width: 400px) {
  .car__foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wa-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}
