:root {
  --bg: #0b0b0d;
  --bg-2: #121216;
  --bg-3: #1a1b20;
  --line: #26272e;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --red: #e11d2a;
  --red-2: #b3121d;
  --gray: #8b8d93;
  --radius: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: .25s ease; white-space: nowrap;
  font-family: inherit;
}
.btn--red { background: var(--red); color: #fff; box-shadow: 0 8px 24px -8px rgba(225, 29, 42, .7); }
.btn--red:hover { background: #f02532; transform: translateY(-2px); }
.btn--ghost { border-color: #3a3b43; color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--red); color: #fff; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--block { width: 100%; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; height: 58px; width: auto; border-radius: 6px; }
.logo--sm img { height: 46px; border-radius: 5px; }

/* ---------- Nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: .3s; }
.nav.is-scrolled { background: rgba(11,11,13,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; font-size: 15px; font-weight: 500; color: var(--muted); }
.nav__links a:hover { color: #fff; }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav__toggle span { display: block; height: 2px; width: 24px; background: #fff; margin: 0 auto; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; padding-top: 120px; display: flex; flex-direction: column; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 20%, transparent 70%);
}
.hero__glow { position: absolute; width: 700px; height: 700px; right: -150px; top: 40px; background: radial-gradient(circle, rgba(225,29,42,.28), transparent 65%); filter: blur(20px); }
.hero__inner { position: relative; flex: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.tag { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border: 1px solid #3a2023; background: rgba(225,29,42,.08); border-radius: 999px; font-size: 13px; font-weight: 600; color: #ffb3b8; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(225,29,42,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(225,29,42,0); } 100% { box-shadow: 0 0 0 0 rgba(225,29,42,0); } }
.hero h1 { font-size: clamp(44px, 6.4vw, 88px); line-height: .98; font-weight: 900; letter-spacing: -2.5px; margin: 24px 0; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero__lead { font-size: 18px; color: var(--muted); max-width: 540px; }
.hero__actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 560px; }
.hero__stats strong { display: block; font-size: 30px; font-weight: 800; letter-spacing: -1px; }
.hero__stats span { font-size: 13px; color: var(--muted); line-height: 1.4; display: block; }

.hero__visual { position: relative; height: 480px; }
.bigmark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 360px; line-height: 1; letter-spacing: -10px; color: transparent; -webkit-text-stroke: 2px #2c2d34; user-select: none; }
.bigmark i { width: 22px; height: 300px; background: var(--red); margin: 0 14px; box-shadow: 0 0 60px rgba(225,29,42,.6); }
.hero__car { position: absolute; left: -4%; right: -4%; bottom: 20px; width: 108%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.7)); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }

.marquee { position: relative; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); overflow: hidden; margin-top: 48px; }
.marquee__track { display: flex; gap: 28px; padding: 18px 0; width: max-content; animation: scroll 30s linear infinite; font-family: "Archivo Narrow", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: 4px; color: #d4d4d8; }
.marquee__track b { color: var(--red); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section--dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { margin-bottom: 56px; max-width: 720px; }
.section__head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: "Archivo Narrow", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: #fff; }
h2 { font-size: clamp(32px, 4.2vw, 54px); line-height: 1.05; font-weight: 800; letter-spacing: -1.5px; }
.section__sub { color: var(--muted); font-size: 18px; margin-top: 16px; }

/* Cards */
.cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.cards .card { flex: 0 1 calc((100% - 40px) / 3); }
.card { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; overflow: hidden; transition: .35s; }
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red); transition: .4s; }
.card:hover { transform: translateY(-6px); border-color: #3a2023; background: #15151a; }
.card:hover::after { width: 100%; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(225,29,42,.1); border: 1px solid rgba(225,29,42,.3); display: grid; place-items: center; margin-bottom: 24px; }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

/* Stock */
.stock { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .35s; }
.car:hover { transform: translateY(-6px); border-color: #3a3b43; }
.car__img { position: relative; display: block; width: 100%; aspect-ratio: 4/3; padding: 0; border: 0; background: #d9dadd; overflow: hidden; cursor: zoom-in; }
.car__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.car:hover .car__img img { transform: scale(1.04); }
.car__badge { position: absolute; top: 16px; left: 16px; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; z-index: 2; }
.car__count { position: absolute; right: 14px; bottom: 14px; background: rgba(11,11,13,.75); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.car__brand { display: block; font-family: "Archivo Narrow", sans-serif; font-weight: 700; letter-spacing: 3px; font-size: 12px; color: var(--red); margin-bottom: 6px; }
.car__body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.car__body h3 { font-size: 21px; font-weight: 700; }
.car__specs { list-style: none; display: flex; gap: 8px; margin: 12px 0 22px; flex-wrap: wrap; }
.car__specs li { font-size: 12px; color: var(--muted); padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; }
.car .car__details { display: none; }
.car__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.note { margin-top: 28px; font-size: 13px; color: var(--gray); }

/* Gallery */
.gallery { width: min(1180px, calc(100% - 32px)); max-height: calc(100vh - 32px); margin: auto; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); color: var(--text); overflow: hidden; }
.gallery[open] { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); }
body:has(.gallery[open]) { overflow: hidden; }
.gallery::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(4px); }
.gallery__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: rgba(11,11,13,.8); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; }
.gallery__close:hover { border-color: var(--red); }
.gallery__media { display: flex; flex-direction: column; min-width: 0; background: #000; }
.gallery__stage { position: relative; flex: 1; min-height: 0; display: grid; place-items: center; }
.gallery__img { width: 100%; height: min(68vh, 640px); object-fit: contain; }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(11,11,13,.7); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; transition: .2s; }
.gallery__nav:hover { background: var(--red); }
.gallery__nav--prev { left: 14px; }
.gallery__nav--next { right: 14px; }
.gallery__counter { position: absolute; left: 14px; bottom: 14px; background: rgba(11,11,13,.75); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 999px; }
.gallery__thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: var(--bg); scrollbar-width: thin; }
.gallery__thumbs button { flex: none; width: 64px; height: 64px; padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: none; cursor: pointer; opacity: .55; transition: .2s; }
.gallery__thumbs button:hover { opacity: .9; }
.gallery__thumbs button.is-active { border-color: var(--red); opacity: 1; }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery__info { display: flex; flex-direction: column; padding: 32px 28px 28px; overflow-y: auto; }
.gallery__info h3 { font-size: 24px; font-weight: 800; letter-spacing: -.5px; padding-right: 40px; }
.gallery__info .car__details { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.gallery__info .car__details li { position: relative; padding-left: 20px; font-size: 14px; color: var(--muted); }
.gallery__info .car__details li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 2px; background: var(--red); }
.gallery__pay { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); font-size: 13px; color: var(--muted); display: grid; gap: 6px; margin-bottom: 24px; }
.gallery__pay strong { color: var(--text); font-size: 14px; }
.gallery__cta { margin-top: auto; justify-content: center; }

/* Steps */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 30px 26px; border-left: 1px solid var(--line); }
.step__n { font-family: "Archivo Narrow", sans-serif; font-size: 56px; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--red); line-height: 1; display: block; margin-bottom: 20px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__text p { color: var(--muted); font-size: 17px; margin-top: 18px; }
.split__text h2 { margin-bottom: 6px; }
.deliveries {
  position: relative; border-radius: 24px; padding: 48px; min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background:
    radial-gradient(circle at 80% 10%, rgba(225,29,42,.55), transparent 50%),
    linear-gradient(160deg, #1e1f25, #0e0e11);
  border: 1px solid var(--line); overflow: hidden;
}
.deliveries::before { content: "4B"; position: absolute; top: -40px; right: -10px; font-size: 260px; font-weight: 900; letter-spacing: -10px; color: rgba(255,255,255,.04); }
.deliveries__label { align-self: flex-start; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: auto; }
.deliveries strong { font-size: 34px; line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.deliveries p { color: #c4c4cc; margin: 12px 0 18px; }
.link { color: var(--red); font-weight: 700; }
.checks { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.checks li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.checks li::before { content: "✓"; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; background: var(--red); color: #fff; flex-shrink: 0; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%); overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 2px, transparent 2px 18px); }
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.cta__text p { font-size: 18px; margin-top: 16px; color: rgba(255,255,255,.85); }
.form { background: var(--bg); border-radius: 20px; padding: 32px; display: grid; gap: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.form input, .form select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--line); color: var(--text);
  padding: 14px 16px; border-radius: 12px; font-family: inherit; font-size: 15px; outline: none; transition: .2s;
}
.form input:focus, .form select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,42,.2); }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact__list { display: grid; gap: 14px; }
.contact__item { display: flex; align-items: center; gap: 18px; padding: 22px 24px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: .3s; }
a.contact__item:hover { border-color: var(--red); transform: translateX(6px); }
.contact__ic { width: 50px; height: 50px; border-radius: 12px; background: rgba(225,29,42,.1); display: grid; place-items: center; flex-shrink: 0; }
.contact__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__item small { display: block; color: var(--muted); font-size: 13px; }
.contact__item strong { font-size: 18px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer p { color: var(--gray); font-size: 13px; }

/* WhatsApp float */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.6); transition: .3s; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner, .split, .cta__inner, .contact { grid-template-columns: 1fr; }
  .hero__visual { height: 340px; order: -1; }
  .bigmark { font-size: 240px; }
  .bigmark i { height: 200px; width: 16px; }
  .stock { grid-template-columns: repeat(2, 1fr); }
  .cards .card { flex-basis: calc((100% - 20px) / 2); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(11,11,13,.97); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav__links a { padding: 16px 24px; border-top: 1px solid var(--line); }
  .nav__links.is-open { max-height: 400px; }
  .nav__toggle { display: flex; margin-left: auto; }
  .container { padding: 0 16px; }
  .section { padding: 84px 0; }
  .hero { padding-top: 96px; }
  .hero__visual { height: 240px; }
  .bigmark { font-size: 170px; letter-spacing: -6px; }
  .bigmark i { height: 140px; width: 12px; margin: 0 8px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .hero__stats li:last-child { grid-column: span 2; }
  .stock, .steps, .form__row { grid-template-columns: 1fr; }
  .cards .card { flex-basis: 100%; }
  .gallery[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .gallery__img { height: 52vh; }
  .gallery__info { overflow: visible; padding: 24px 20px; }
  .gallery__nav { width: 38px; height: 38px; font-size: 24px; }
  .deliveries { padding: 32px; min-height: 360px; }
  .form { padding: 22px; }
}
