/* Topcars - hoja de estilos del sitio (mockup topcars-redesign) */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #05070d;
  --bg-elevated: rgba(14, 20, 32, 0.9);
  --surface: rgba(15, 22, 34, 0.8);
  --surface-strong: #101826;
  --surface-soft: rgba(255, 255, 255, 0.045);
  --text: #f5f7fb;
  --muted: #a9b2c0;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #caa15a;
  --accent-strong: #f1ddb1;
  --accent-2: #5e8bb8;
  --danger: #f26b6b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1440px, calc(100vw - 24px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(202, 161, 90, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(94, 139, 184, 0.14), transparent 24%),
    linear-gradient(180deg, #0a0f18 0%, #05070d 36%, #03050a 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

body.theme-light {
  --bg-elevated: rgba(255, 255, 255, 0.84);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: rgba(10, 16, 26, 0.04);
  --text: #111827;
  --muted: #5f6876;
  --line: rgba(17, 24, 39, 0.09);
  --accent: #b68a3b;
  --accent-strong: #e4c889;
  --accent-2: #6e7f95;
  --danger: #c95d5d;
  --shadow: 0 28px 70px rgba(31, 41, 55, 0.08);
  --shadow-soft: 0 18px 40px rgba(31, 41, 55, 0.06);
}

body.theme-light {
  background:
    radial-gradient(circle at top left, rgba(182, 138, 59, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(110, 127, 149, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f1ea 48%, #ece7df 100%);
}

  body.theme-midnight {
    --bg-elevated: rgba(10, 18, 34, 0.88);
    --surface: rgba(14, 24, 44, 0.82);
    --surface-strong: #111d33;
    --surface-soft: rgba(255, 255, 255, 0.045);
    --text: #f5f8ff;
    --muted: #a7b5cb;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #5c93ff;
    --accent-strong: #d6e4ff;
    --accent-2: #67d6c8;
    --danger: #ff6f7f;
    --shadow: 0 30px 90px rgba(3, 8, 20, 0.48);
    --shadow-soft: 0 18px 50px rgba(3, 8, 20, 0.28);
  }

  body.theme-midnight {
    background:
      radial-gradient(circle at top left, rgba(92, 147, 255, 0.18), transparent 24%),
      radial-gradient(circle at top right, rgba(103, 214, 200, 0.14), transparent 24%),
      linear-gradient(180deg, #07101d 0%, #081121 42%, #050a14 100%);
  }

  body.theme-midnight .site-header,
  body.theme-midnight .header__inner,
  body.theme-midnight .site-footer,
  body.theme-midnight .vehicle-card,
  body.theme-midnight .signal-strip article,
  body.theme-midnight .timeline__item,
  body.theme-midnight .stat-card,
  body.theme-midnight .trust-note,
  body.theme-midnight .cta-band__inner,
  body.theme-midnight .hero__contact-card,
  body.theme-midnight .hero__floating-card,
  body.theme-midnight .form-panel,
  body.theme-midnight .preview-card,
  body.theme-midnight .summary-card,
  body.theme-midnight .dropzone {
    background: rgba(12, 20, 34, 0.86);
    border-color: rgba(255, 255, 255, 0.08);
  }

  body.theme-midnight .hero__background-layer {
    background:
      radial-gradient(circle at 18% 20%, rgba(92, 147, 255, 0.22), transparent 30%),
      radial-gradient(circle at 82% 16%, rgba(103, 214, 200, 0.14), transparent 26%),
      linear-gradient(150deg, rgba(15, 24, 43, 0.98), rgba(6, 11, 20, 0.92));
  }

  body.theme-midnight .hero__visual::before {
    background: radial-gradient(circle at 30% 25%, rgba(92, 147, 255, 0.18), transparent 38%), linear-gradient(180deg, rgba(17, 28, 48, 0.92), rgba(8, 13, 24, 0.86));
  }

  body.theme-midnight .chip:hover,
  body.theme-midnight .chip:focus-visible,
  body.theme-midnight .chip.is-active {
    color: #0e1420;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  }

  body.theme-midnight .btn--primary {
    box-shadow: 0 18px 42px rgba(92, 147, 255, 0.24);
  }

  body.theme-midnight .btn--pulse::after {
    border-color: rgba(92, 147, 255, 0.22);
  }

  body.theme-sand {
    --bg-elevated: rgba(255, 249, 241, 0.92);
    --surface: rgba(255, 252, 247, 0.92);
    --surface-strong: #fffdf8;
    --surface-soft: rgba(76, 47, 20, 0.04);
    --text: #2a2018;
    --muted: #6b5a4d;
    --line: rgba(76, 47, 20, 0.09);
    --accent: #9a6234;
    --accent-strong: #d9b06f;
    --accent-2: #8c6d4e;
    --danger: #c85f4f;
    --shadow: 0 28px 70px rgba(83, 58, 33, 0.08);
    --shadow-soft: 0 18px 40px rgba(83, 58, 33, 0.06);
  }

  body.theme-sand {
    background:
      radial-gradient(circle at top left, rgba(154, 98, 52, 0.14), transparent 22%),
      radial-gradient(circle at top right, rgba(217, 176, 111, 0.14), transparent 24%),
      linear-gradient(180deg, #fffaf4 0%, #f5eadf 46%, #efe1cf 100%);
  }

  body.theme-sand .site-header,
  body.theme-sand .header__inner,
  body.theme-sand .site-footer,
  body.theme-sand .vehicle-card,
  body.theme-sand .signal-strip article,
  body.theme-sand .timeline__item,
  body.theme-sand .stat-card,
  body.theme-sand .trust-note,
  body.theme-sand .cta-band__inner,
  body.theme-sand .hero__contact-card,
  body.theme-sand .hero__floating-card,
  body.theme-sand .form-panel,
  body.theme-sand .preview-card,
  body.theme-sand .summary-card,
  body.theme-sand .dropzone {
    background: rgba(255, 252, 247, 0.9);
    border-color: rgba(76, 47, 20, 0.08);
  }

  body.theme-sand .hero__background-layer {
    background:
      radial-gradient(circle at 18% 20%, rgba(154, 98, 52, 0.18), transparent 30%),
      radial-gradient(circle at 82% 16%, rgba(217, 176, 111, 0.18), transparent 26%),
      linear-gradient(150deg, rgba(255, 250, 243, 0.98), rgba(244, 232, 217, 0.96));
  }

  body.theme-sand .hero__visual::before {
    background: radial-gradient(circle at 30% 25%, rgba(154, 98, 52, 0.18), transparent 38%), linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(240, 226, 210, 0.9));
  }

  body.theme-sand .chip:hover,
  body.theme-sand .chip:focus-visible,
  body.theme-sand .chip.is-active {
    color: #fffdf9;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  }

  body.theme-sand .btn--primary {
    box-shadow: 0 18px 42px rgba(154, 98, 52, 0.22);
  }

  body.theme-sand .btn--pulse::after {
    border-color: rgba(154, 98, 52, 0.22);
  }

body.theme-light .site-header,
body.theme-light .header__inner,
body.theme-light .site-footer,
body.theme-light .vehicle-card,
body.theme-light .signal-strip article,
body.theme-light .timeline__item,
body.theme-light .stat-card,
body.theme-light .trust-note,
body.theme-light .cta-band__inner,
body.theme-light .hero__contact-card,
body.theme-light .hero__floating-card,
body.theme-light .form-panel,
body.theme-light .preview-card,
body.theme-light .summary-card,
body.theme-light .dropzone {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(17, 24, 39, 0.08);
}

body.theme-light .site-header {
  background: transparent;
}

body.theme-light.scrolled .site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

body.theme-light .header__inner,
body.theme-light .vehicle-card,
body.theme-light .signal-strip article,
body.theme-light .timeline__item,
body.theme-light .stat-card,
body.theme-light .trust-note,
body.theme-light .cta-band__inner,
body.theme-light .hero__contact-card,
body.theme-light .hero__floating-card,
body.theme-light .form-panel,
body.theme-light .preview-card,
body.theme-light .summary-card,
body.theme-light .dropzone {
  box-shadow: var(--shadow-soft);
}

body.theme-light .site-nav a,
body.theme-light .hero__lead,
body.theme-light .section-heading p,
body.theme-light .process-copy p,
body.theme-light .trust-copy p,
body.theme-light .cta-band p,
body.theme-light .site-footer p,
body.theme-light .vehicle-card__body p,
body.theme-light .timeline__item p,
body.theme-light .trust-note span,
body.theme-light .hero__floating-card p,
body.theme-light .hero__contact-card a,
body.theme-light .vehicle-card__specs li,
body.theme-light .preview-card li,
body.theme-light .brand__text small,
body.theme-light .footer__bottom {
  color: var(--muted);
}

body.theme-light .site-nav a:hover,
body.theme-light .site-nav a:focus-visible,
body.theme-light .section-kicker,
body.theme-light .eyebrow,
body.theme-light .hero__proofs strong,
body.theme-light .hero__contact-label,
body.theme-light .hero__floating-card-label,
body.theme-light .signal-strip span,
body.theme-light .chip.is-active,
body.theme-light .timeline__item span,
body.theme-light .stat-card__label,
body.theme-light .brand__mark {
  color: var(--accent-strong);
}

body.theme-light .header__inner,
body.theme-light .site-nav,
body.theme-light .nav-toggle,
body.theme-light .chip,
body.theme-light .vehicle-card__badge,
body.theme-light .vehicle-card__meta,
body.theme-light .field input,
body.theme-light .field select,
body.theme-light .field textarea {
  border-color: var(--line);
}

body.theme-light .eyebrow,
body.theme-light .chip,
body.theme-light .vehicle-card__specs li,
body.theme-light .field input,
body.theme-light .field select,
body.theme-light .field textarea {
  background: rgba(255, 255, 255, 0.82);
}

body.theme-light .btn--secondary,
body.theme-light .btn--ghost,
body.theme-light .nav-toggle {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

body.theme-light .hero__background-layer {
  background:
    radial-gradient(circle at 18% 20%, rgba(182, 138, 59, 0.14), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(110, 127, 149, 0.12), transparent 26%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.96));
  border-color: rgba(17, 24, 39, 0.07);
}

body.theme-light .hero__visual::before {
  background: radial-gradient(circle at 30% 25%, rgba(182, 138, 59, 0.18), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 232, 224, 0.92));
  border-color: rgba(17, 24, 39, 0.08);
}

body.theme-light .hero__media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  border-color: rgba(17, 24, 39, 0.08);
}

body.theme-light .hero__floating-card,
body.theme-light .hero__contact-card,
body.theme-light .site-footer,
body.theme-light .cta-band__inner {
  background: rgba(255, 255, 255, 0.9);
}

body.theme-light .signal-strip article,
body.theme-light .timeline__item span,
body.theme-light .brand__mark {
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
}

body.theme-light .btn--primary {
  color: #1a1a1a;
  box-shadow: 0 18px 42px rgba(182, 138, 59, 0.2);
}

body.theme-light .btn--pulse::after {
  border-color: rgba(182, 138, 59, 0.22);
}

body.theme-light .chip:hover,
body.theme-light .chip:focus-visible,
body.theme-light .chip.is-active {
  color: #131722;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

body.theme-light .vehicle-card:hover,
body.theme-light .vehicle-card:focus-within {
  border-color: rgba(182, 138, 59, 0.2);
}

body.theme-light .vehicle-card__meta {
  background: rgba(182, 138, 59, 0.12);
  color: #8d6422;
}

body.theme-light .vehicle-card__hover {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.86) 36%, rgba(246, 242, 235, 0.98) 100%);
}

body.theme-light .hero__proofs li,
body.theme-light .summary-card,
body.theme-light .preview-card,
body.theme-light .form-panel,
body.theme-light .dropzone {
  background: rgba(255, 255, 255, 0.88);
}

body.theme-light .field input:focus,
body.theme-light .field select:focus,
body.theme-light .field textarea:focus {
  border-color: rgba(182, 138, 59, 0.38);
  box-shadow: 0 0 0 4px rgba(182, 138, 59, 0.12);
}

body.theme-light .dropzone.is-dragover {
  border-color: rgba(182, 138, 59, 0.42);
  background: rgba(182, 138, 59, 0.08);
}

/* ===== Tema oficial Topcars: rojo #b22234 (accion) / azul marino #3c3b6e (estructura) / blanco (colores reales de marca) ===== */

body.theme-topcars {
  --navy: #3c3b6e;
  --navy-deep: #232251;
  --navy-bright: #6a69c9;
  --red: #b22234;
  --red-bright: #e23a4e;
  --bg-elevated: rgba(255, 255, 255, 0.86);
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: rgba(20, 20, 50, 0.04);
  --text: #14151f;
  --muted: #5b5f72;
  --line: rgba(20, 20, 50, 0.09);
  --accent: #b22234;
  --accent-strong: #e23a4e;
  --accent-2: #3c3b6e;
  --danger: #e2652b;
  --shadow: 0 28px 70px rgba(20, 21, 47, 0.1);
  --shadow-soft: 0 18px 40px rgba(20, 21, 47, 0.07);
}

body.theme-topcars {
  background:
    radial-gradient(circle at top left, rgba(178, 34, 52, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(60, 59, 110, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f6f6fb 48%, #edeef5 100%);
}

/* Header y footer: azul marino solido, para que el color de marca sea inconfundible */
body.theme-topcars .header__inner {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(15, 14, 40, 0.22);
}

body.theme-topcars.scrolled .site-header {
  background: rgba(20, 19, 48, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.theme-topcars .site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

body.theme-topcars .site-nav a:hover,
body.theme-topcars .site-nav a:focus-visible {
  color: #ffffff;
}

body.theme-topcars .nav-toggle span {
  background: #ffffff;
}

body.theme-topcars .brand__text strong {
  color: #ffffff;
}

body.theme-topcars .brand__text small {
  color: rgba(255, 255, 255, 0.66);
}

body.theme-topcars .brand__plate {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(10, 10, 30, 0.18);
}

body.theme-topcars .brand__plate img {
  display: block;
  height: 26px;
  width: auto;
}

body.theme-topcars .header__cta.btn--ghost {
  background: var(--red);
  color: #ffffff;
  border-color: transparent;
}

body.theme-topcars .header__cta.btn--ghost:hover {
  background: var(--red-bright);
}

/* Superficies de contenido: fondo blanco, panel con levisimo tinte azul */
body.theme-topcars .vehicle-card,
body.theme-topcars .signal-strip article,
body.theme-topcars .timeline__item,
body.theme-topcars .stat-card,
body.theme-topcars .trust-note,
body.theme-topcars .cta-band__inner,
body.theme-topcars .hero__contact-card,
body.theme-topcars .hero__floating-card,
body.theme-topcars .form-panel,
body.theme-topcars .preview-card,
body.theme-topcars .summary-card,
body.theme-topcars .dropzone {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(60, 59, 110, 0.12);
  box-shadow: var(--shadow-soft);
}

body.theme-topcars .hero__lead,
body.theme-topcars .section-heading p,
body.theme-topcars .process-copy p,
body.theme-topcars .trust-copy p,
body.theme-topcars .cta-band p,
body.theme-topcars .vehicle-card__body p,
body.theme-topcars .timeline__item p,
body.theme-topcars .trust-note span,
body.theme-topcars .hero__floating-card p,
body.theme-topcars .hero__contact-card a,
body.theme-topcars .vehicle-card__specs li,
body.theme-topcars .preview-card li {
  color: var(--muted);
}

body.theme-topcars .site-footer p,
body.theme-topcars .footer__bottom {
  color: rgba(255, 255, 255, 0.62);
}

body.theme-topcars .section-kicker,
body.theme-topcars .eyebrow,
body.theme-topcars .hero__contact-label,
body.theme-topcars .hero__floating-card-label,
body.theme-topcars .signal-strip span,
body.theme-topcars .stat-card__label {
  color: var(--navy);
}

body.theme-topcars .hero__proofs strong {
  color: var(--red);
}

body.theme-topcars .eyebrow span:last-child {
  color: var(--muted);
}

body.theme-topcars .chip.is-active {
  color: #ffffff;
}

body.theme-topcars .header__inner,
body.theme-topcars .site-nav,
body.theme-topcars .nav-toggle,
body.theme-topcars .chip,
body.theme-topcars .vehicle-card__badge,
body.theme-topcars .vehicle-card__meta,
body.theme-topcars .field input,
body.theme-topcars .field select,
body.theme-topcars .field textarea {
  border-color: var(--line);
}

body.theme-topcars .header__inner,
body.theme-topcars .site-nav {
  border-color: rgba(255, 255, 255, 0.14);
}

body.theme-topcars .eyebrow,
body.theme-topcars .chip,
body.theme-topcars .vehicle-card__specs li,
body.theme-topcars .field input,
body.theme-topcars .field select,
body.theme-topcars .field textarea {
  background: rgba(60, 59, 110, 0.05);
  color: var(--text);
}

body.theme-topcars .field label {
  color: var(--text);
}

body.theme-topcars .btn--secondary,
body.theme-topcars .btn--ghost {
  background: rgba(60, 59, 110, 0.06);
  color: var(--text);
  border-color: rgba(60, 59, 110, 0.24);
}

body.theme-topcars .nav-toggle {
  background: transparent;
}

body.theme-topcars .hero__background-layer {
  background:
    radial-gradient(circle at 18% 20%, rgba(178, 34, 52, 0.1), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(60, 59, 110, 0.12), transparent 26%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 241, 247, 0.96));
  border-color: rgba(20, 20, 50, 0.07);
}

body.theme-topcars .hero__visual::before {
  background: radial-gradient(circle at 30% 25%, rgba(178, 34, 52, 0.14), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 239, 245, 0.92));
  border-color: rgba(20, 20, 50, 0.08);
}

body.theme-topcars .hero__media {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  border-color: rgba(20, 20, 50, 0.08);
}

body.theme-topcars .hero__floating-card,
body.theme-topcars .hero__contact-card,
body.theme-topcars .cta-band__inner {
  background: rgba(255, 255, 255, 0.94);
}

body.theme-topcars .site-footer {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #17163a 100%);
  border-top: none;
}

body.theme-topcars .footer__grid h3 {
  color: #ffffff;
}

body.theme-topcars .footer__grid a {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-topcars .footer__grid a:hover {
  color: var(--red-bright);
}

body.theme-topcars .brand--footer .brand__text strong {
  color: #ffffff;
}

body.theme-topcars .signal-strip article,
body.theme-topcars .brand__mark {
  box-shadow: 0 12px 28px rgba(20, 21, 47, 0.1);
}

body.theme-topcars .timeline__item span {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-bright) 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(60, 59, 110, 0.28);
}

body.theme-topcars .btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  box-shadow: 0 18px 42px rgba(178, 34, 52, 0.26);
}

body.theme-topcars .btn--pulse::after {
  border-color: rgba(178, 34, 52, 0.24);
}

body.theme-topcars .chip:hover,
body.theme-topcars .chip:focus-visible,
body.theme-topcars .chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
}

body.theme-topcars .vehicle-card:hover,
body.theme-topcars .vehicle-card:focus-within {
  border-color: rgba(178, 34, 52, 0.24);
}

body.theme-topcars .vehicle-card__meta {
  background: rgba(60, 59, 110, 0.1);
  color: var(--navy);
}

body.theme-topcars .vehicle-card__hover {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.88) 36%, rgba(246, 247, 250, 0.98) 100%);
}

body.theme-topcars .hero__proofs li,
body.theme-topcars .summary-card,
body.theme-topcars .preview-card,
body.theme-topcars .form-panel,
body.theme-topcars .dropzone {
  background: rgba(255, 255, 255, 0.88);
}

body.theme-topcars .field input:focus,
body.theme-topcars .field select:focus,
body.theme-topcars .field textarea:focus {
  border-color: rgba(178, 34, 52, 0.4);
  box-shadow: 0 0 0 4px rgba(178, 34, 52, 0.12);
}

body.theme-topcars .dropzone.is-dragover {
  border-color: rgba(178, 34, 52, 0.42);
  background: rgba(178, 34, 52, 0.08);
}

body.theme-topcars .whatsapp-float {
  background: #1fae5a;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 21, 47, 0.22);
}

/* ---- Detalles "tech": grid de fondo, linea glow, tags monospace, indicador en vivo ---- */

.tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 59, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 59, 110, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
  pointer-events: none;
}

.glow-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--red, #b22234) 0%, var(--accent-2, #3c3b6e) 55%, transparent 100%);
  border-radius: 999px;
  opacity: 0.7;
}

.mono-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(60, 59, 110, 0.08);
  color: var(--accent-2);
  border: 1px solid rgba(60, 59, 110, 0.16);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1fae5a;
  box-shadow: 0 0 0 rgba(31, 174, 90, 0.6);
  animation: liveDot 1.8s infinite;
  flex: none;
}

@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(31, 174, 90, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(31, 174, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 174, 90, 0); }
}

.chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  background: var(--surface);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: var(--surface);
}

.info-card h3 {
  margin-top: 0;
}

.section-shell {
  position: relative;
  padding: 96px 0;
}

.section-shell::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.hero h1,
.process-copy h2,
.trust-copy h2,
.cta-band h2,
.timeline__item h3,
.stats-grid strong,
.site-footer h3,
.brand strong {
  font-family: 'Space Grotesk', sans-serif;
}

.section-kicker,
.eyebrow span,
.stat-card__label,
.hero__floating-card-label,
.hero__contact-label,
.signal-strip span,
.chip,
.timeline__item span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.section-kicker {
  color: var(--accent-strong);
  font-weight: 800;
}

.section-heading h2,
.process-copy h2,
.trust-copy h2,
.cta-band h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.section-heading p,
.process-copy p,
.trust-copy p,
.cta-band p,
.site-footer p,
.hero__lead,
.vehicle-card__body p,
.timeline__item p,
.trust-note span,
.hero__floating-card p,
.hero__contact-card a {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  transition: 240ms ease;
}

body.scrolled .site-header {
  padding: 10px 0;
  background: rgba(5, 10, 18, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(9, 15, 26, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #101622;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(202, 161, 90, 0.35);
}

.brand__text {
  display: grid;
}

.brand__text strong {
  font-size: 1.05rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(238, 244, 255, 0.88);
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: #101622;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 18px 42px rgba(202, 161, 90, 0.28);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--pulse {
  position: relative;
}

.btn--pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(202, 161, 90, 0.22);
  animation: pulse 2.2s ease-out infinite;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  color: #ffffff;
}

.whatsapp-float__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.whatsapp-float__text {
  font-size: 0.95rem;
}

.hero {
  padding-top: 28px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
}

.eyebrow span:last-child {
  color: rgba(238, 244, 255, 0.68);
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 15ch;
}

.hero__lead {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero__proofs li,
.hero__contact-card,
.signal-strip article,
.vehicle-card,
.timeline__item,
.stat-card,
.trust-note,
.cta-band__inner,
.site-footer,
.admin-panel,
.form-panel,
.preview-card,
.summary-card,
.dropzone {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero__proofs li {
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.hero__proofs strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.hero__proofs span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__contact-card {
  display: grid;
  gap: 6px;
  width: fit-content;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.hero__contact-card a {
  width: fit-content;
}

.hero__visual {
  position: relative;
  min-height: 700px;
}

.hero__background-layer {
  position: absolute;
  inset: 7% 4% 5% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 20%, rgba(202, 161, 90, 0.22), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(94, 139, 184, 0.14), transparent 26%),
    linear-gradient(150deg, rgba(14, 22, 34, 0.98), rgba(7, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 12% 10% 8% 10%;
  background: radial-gradient(circle at 30% 25%, rgba(202, 161, 90, 0.24), transparent 38%), linear-gradient(180deg, rgba(18, 27, 42, 0.92), rgba(9, 13, 22, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  transform: rotate(7deg);
  box-shadow: var(--shadow);
}

.hero__media {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__media--large {
  inset: 12% 12% 12% 18%;
  z-index: 2;
}

.hero__media--top {
  inset: 8% 0 auto auto;
  width: min(250px, 32vw);
  aspect-ratio: 1.1;
  z-index: 3;
}

.hero__media--bottom {
  inset: auto auto 4% 0;
  width: min(245px, 32vw);
  aspect-ratio: 1.2;
  z-index: 3;
}

.hero__floating-card {
  position: absolute;
  right: 2%;
  bottom: 10%;
  max-width: 260px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(10, 18, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.hero__floating-card strong {
  display: block;
  margin: 10px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
}

.signal-strip {
  padding: 0 0 88px;
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.signal-strip article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.signal-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.chip {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  transition: 180ms ease;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  color: #0e1420;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.vehicle-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  flex: 1 1 320px;
  max-width: 400px;
}

.vehicle-card:hover,
.vehicle-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  border-color: rgba(202, 161, 90, 0.22);
}

.vehicle-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1.16;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
}

.vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.vehicle-card:hover .vehicle-card__media img,
.vehicle-card:focus-within .vehicle-card__media img {
  transform: scale(1.06);
}

.vehicle-card__badge,
.vehicle-card__meta,
.vehicle-card__hover {
  position: absolute;
}

.vehicle-card__badge {
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5, 10, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.vehicle-card__meta {
  right: 16px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(202, 161, 90, 0.16);
  color: var(--accent-strong);
  backdrop-filter: blur(14px);
  z-index: 2;
}

.vehicle-card__hover {
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.92) 36%, rgba(5, 10, 18, 0.98) 100%);
  transform: translateY(42%);
  opacity: 0;
  transition: 220ms ease;
}

.vehicle-card:hover .vehicle-card__hover,
.vehicle-card:focus-within .vehicle-card__hover {
  transform: translateY(0);
  opacity: 1;
}

.vehicle-card__body {
  padding: 18px 20px 22px;
}

.vehicle-card__body h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.vehicle-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.vehicle-card__price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
}

.vehicle-card__price span {
  color: var(--muted);
  font-size: 0.88rem;
}

.vehicle-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.vehicle-card__specs li {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 244, 255, 0.82);
  font-size: 0.82rem;
}

.vehicle-card__hover p {
  margin: 0 0 16px;
}

.process-layout,
.trust-layout,
.cta-band__inner,
.footer__grid,
.admin-layout,
.admin-shell__stats {
  display: grid;
  gap: 22px;
}

.process-layout,
.trust-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline__item {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(202, 161, 90, 0.18), rgba(94, 139, 184, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  font-weight: 900;
}

.timeline__item h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
}

.trust-note {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.trust-note strong {
  display: block;
  margin-bottom: 6px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card p {
  margin-bottom: 0;
}

.cta-band {
  padding: 12px 0 96px;
}

.cta-band__inner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(202, 161, 90, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(94, 139, 184, 0.12), transparent 28%),
    rgba(12, 21, 35, 0.92);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer {
  margin: 0 0 20px;
  padding: 28px 0 18px;
  border-radius: 32px;
  background: rgba(10, 17, 29, 0.84);
}

.footer__grid {
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.75fr));
  padding: 24px 0 30px;
}

@media (max-width: 760px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer__grid h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.footer__grid a,
.footer__grid p {
  display: block;
  color: var(--muted);
  margin: 8px 0 0;
}

.brand--footer {
  margin-bottom: 14px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 244, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    transform: scale(0.98);
    opacity: 0.64;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

/* Dashboard preview */
.admin-page {
  background:
    radial-gradient(circle at top left, rgba(202, 161, 90, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(94, 139, 184, 0.08), transparent 24%),
    linear-gradient(180deg, #09111c 0%, #050911 100%);
}

.admin-shell {
  padding: 36px 0 72px;
}

.admin-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 17, 29, 0.82);
  backdrop-filter: blur(18px);
}

.admin-hero__brand {
  display: grid;
  gap: 4px;
}

.admin-hero__brand strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
}

.admin-hero__brand .hero__lead {
  max-width: 68ch;
}

.admin-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.admin-layout--spaced {
  margin-top: 22px;
}

.form-panel,
.preview-card {
  border-radius: 28px;
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.9rem;
  color: rgba(238, 244, 255, 0.82);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(168, 180, 200, 0.72);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(202, 161, 90, 0.4);
  box-shadow: 0 0 0 4px rgba(202, 161, 90, 0.14);
}

.field--full {
  grid-column: 1 / -1;
}

.dropzone {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  min-height: 220px;
  border-radius: 24px;
  text-align: center;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.dropzone.is-dragover {
  border-color: rgba(202, 161, 90, 0.45);
  transform: scale(1.01);
  background: rgba(202, 161, 90, 0.08);
}

.dropzone strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
}

.dropzone p {
  margin: 0;
  color: var(--muted);
}

.summary-card,
.preview-card,
.admin-panel {
  border-radius: 24px;
}

.admin-shell__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.summary-card {
  padding: 18px;
}

.summary-card strong {
  display: block;
  font-size: 1.45rem;
  font-family: 'Space Grotesk', sans-serif;
}

.preview-card {
  position: sticky;
  top: 96px;
}

.preview-card__visual {
  aspect-ratio: 1.2;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
}

.preview-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-card ul {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.preview-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.preview-card li strong {
  color: var(--text);
}

.file-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.admin-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.admin-grid-heading {
  margin-bottom: 18px;
}

.admin-form-grid {
  margin-top: 18px;
}

.admin-support-note {
  margin-top: 18px;
}

.admin-note-spaced {
  margin-top: 18px;
}

.file-pill {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(238, 244, 255, 0.82);
}

.admin-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.admin-image-item {
  position: relative;
  width: 130px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(60, 59, 110, 0.16);
  background: rgba(255, 255, 255, 0.9);
  cursor: grab;
  user-select: none;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.admin-image-item:active {
  cursor: grabbing;
}

.admin-image-item.is-dragging {
  opacity: 0.4;
}

.admin-image-item.is-drag-over {
  transform: scale(1.03);
  box-shadow: 0 0 0 2px var(--red);
}

.admin-image-item img {
  display: block;
  width: 100%;
  height: 90px;
  object-fit: cover;
  pointer-events: none;
}

.admin-image-item__badge {
  display: none;
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.admin-image-item:first-child .admin-image-item__badge {
  display: inline-block;
}

.admin-image-item__actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
}

.admin-image-item__cover-btn {
  border: 1px solid rgba(60, 59, 110, 0.2);
  background: rgba(60, 59, 110, 0.05);
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 11px;
  cursor: pointer;
  color: var(--text);
}

.admin-image-item:first-child .admin-image-item__cover-btn {
  visibility: hidden;
}

.admin-image-item__delete {
  display: block;
  font-size: 11px;
  text-align: center;
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero__grid,
  .section-heading,
  .process-layout,
  .trust-layout,
  .cta-band__inner,
  .footer__grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 560px;
    order: 0;
  }

  .hero__copy {
    order: -1;
  }

  .stats-grid,
  .signal-strip__grid,
  .admin-shell__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
  }

  .header__inner {
    border-radius: 24px;
    justify-content: space-between;
    position: relative;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(7, 12, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero__proofs,
  .timeline,
  .stats-grid,
  .signal-strip__grid,
  .form-grid,
  .admin-shell__stats {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero__visual {
    min-height: 480px;
  }

  .hero__media--large {
    inset: 12% 6% 16% 14%;
  }

  .hero__media--top {
    width: 180px;
  }

  .hero__media--bottom {
    width: 175px;
  }

  .hero__floating-card {
    left: 6%;
    right: auto;
    bottom: 4%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px 12px 12px;
  }

  .whatsapp-float__text {
    font-size: 0.9rem;
  }

  .cta-band__inner {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .section-shell {
    padding: 72px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

  .hero__background-layer {
    inset: 6% 0 3% 0;
    border-radius: 32px;
  }

  .vehicle-card__hover {
    transform: translateY(0);
    opacity: 1;
    position: relative;
    inset: auto;
    background: linear-gradient(180deg, rgba(5, 10, 18, 0.7), rgba(5, 10, 18, 0.98));
  }

  .preview-card {
    position: static;
  }
}

/* ===================== FICHA DE VEHICULO (single-product) ===================== */
.vehicle-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}

.vehicle-detail__gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.vehicle-detail__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 21, 31, 0.55);
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.gallery-arrow:hover {
  background: rgba(20, 21, 31, 0.85);
}

.gallery-arrow--prev {
  left: 12px;
}

.gallery-arrow--next {
  right: 12px;
}

.vehicle-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.vehicle-detail__thumbs a {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.vehicle-detail__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.vehicle-detail__thumbs a:hover img {
  transform: scale(1.06);
}

.vehicle-detail__summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 24px;
}

.vehicle-detail__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.vehicle-detail__badge,
.vehicle-detail__tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-detail__badge {
  background: var(--navy, #14151f);
  color: #fff;
}

.vehicle-detail__tag {
  background: rgba(202, 161, 90, 0.16);
  color: var(--accent-strong);
}

.vehicle-detail__summary h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  margin: 10px 0 6px;
  color: var(--text);
}

.vehicle-detail__price {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-strong);
  margin-bottom: 18px;
}

.vehicle-detail__specs {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vehicle-detail__specs li {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--muted);
}

.vehicle-detail__specs li strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 2px;
}

.vehicle-detail__summary .btn {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

.vehicle-detail__inline-features {
  margin-bottom: 22px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.vehicle-detail__inline-features h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.vehicle-detail__inline-features .checklist {
  grid-template-columns: 1fr;
  gap: 8px;
}

.vehicle-detail__inline-features .checklist li {
  font-size: 13px;
}

.vehicle-detail__description {
  margin-top: 40px;
  color: var(--muted);
  line-height: 1.7;
}

.vehicle-detail__description h2 {
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.vehicle-detail__features {
  margin-top: 40px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.vehicle-detail__features h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.checklist__icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

.vehicle-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 18px;
}

.vehicle-detail__back:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .vehicle-detail {
    grid-template-columns: 1fr;
  }

  .vehicle-detail__summary {
    position: static;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}
