
  :root {
    --asphalt: #1C1F22;
    --asphalt-2: #262A2E;
    --asphalt-line: rgba(255,255,255,0.14);
    --paper: #F1F3EE;
    --paper-2: #E7EAE2;
    --card: #FFFFFF;
    --ink: #1C1F22;
    --stone: #6E7268;
    --stone-dim: #9AA095;
    --line: rgba(28,31,34,0.12);
    --amber: #E29A2E;
    --amber-deep: #B87A1C;
    --amber-ink: #4A3007;
    --sage: #3F6B4A;
    --sage-tint: #E4EDE4;

    --font-display: 'Archivo', ui-sans-serif, system-ui, sans-serif;
    --font-numeral: 'Big Shoulders Display', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Work Sans', ui-sans-serif, system-ui, sans-serif;

    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    --max: 1180px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; background: var(--asphalt); }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .font-display { font-family: var(--font-display); }
  .font-numeral { font-family: var(--font-numeral); font-variant-numeric: tabular-nums; }
  a { color: inherit; text-decoration: none; }
  img, svg { display: block; max-width: 100%; }
  ::selection { background: var(--amber); color: var(--asphalt); }

  .wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
  @media (min-width: 1024px) { .wrap { padding: 0 32px; } }
  section[id] { scroll-margin-top: 84px; }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    border-radius: 6px; padding: 14px 26px; border: 1px solid transparent; cursor: pointer;
    transition: background-color .16s var(--ease-out), color .16s var(--ease-out), border-color .16s var(--ease-out), transform .12s var(--ease-out);
    white-space: nowrap;
  }
  .btn:active { transform: scale(0.97); }
  .btn-amber { background: var(--amber); color: var(--amber-ink); }
  @media (hover: hover) and (pointer: fine) { .btn-amber:hover { background: var(--amber-deep); color: #fff; } }
  .btn-outline-dark { border-color: rgba(255,255,255,0.35); color: #fff; }
  @media (hover: hover) and (pointer: fine) { .btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); } }
  .btn-outline-light { border-color: var(--line); color: var(--ink); }
  @media (hover: hover) and (pointer: fine) { .btn-outline-light:hover { border-color: var(--ink); } }
  .btn-sm { padding: 11px 18px; font-size: 12.5px; }
  .btn svg { width: 16px; height: 16px; }

  /* ---------- Nav ---------- */
  nav.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 80;
    background: rgba(28,31,34,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--asphalt-line);
    transition: background-color .25s var(--ease-out), border-color .25s var(--ease-out);
  }
  nav.site-nav.scrolled { background: rgba(28,31,34,0.96); backdrop-filter: blur(10px); border-bottom-color: var(--asphalt-line); }
  .nav-row { max-width: var(--max); margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  @media (min-width: 1024px) { .nav-row { padding: 12px 32px; } }
  .brand { display: flex; flex-direction: column; line-height: 1; color: #fff; transition: opacity .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .brand:hover { opacity: 0.8; } }
  .brand .b1 { font-family: var(--font-display); font-weight: 900; font-size: 15px; letter-spacing: -0.01em; }
  .brand .b2 { font-family: var(--font-numeral); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-top: 2px; }
  .nav-links { display: none; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
  .nav-links a { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.75); transition: color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .nav-links a:hover { color: #fff; } }
  .nav-cta { display: none; }
  @media (min-width: 900px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: #fff; cursor: pointer; }
  @media (min-width: 900px) { .nav-toggle { display: none; } }
  .nav-mobile { overflow: hidden; max-height: 0; opacity: 0; background: rgba(28,31,34,0.98); border-top: 1px solid var(--asphalt-line); transition: max-height .3s var(--ease-out), opacity .3s var(--ease-out); }
  .nav-mobile.open { max-height: 360px; opacity: 1; }
  .nav-mobile ul { list-style: none; margin: 0; padding: 8px 24px 16px; display: flex; flex-direction: column; }
  .nav-mobile a { display: block; padding: 13px 0; border-bottom: 1px solid var(--asphalt-line); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
  .nav-mobile li:last-child a { border-bottom: none; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; background: var(--asphalt); color: #fff; overflow: hidden;
    padding: 107px 0 40px; min-height: 100vh; display: flex; align-items: center;
  }
  .hero-glow { position: absolute; top: -20%; right: -10%; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(226,154,46,0.18), transparent 70%); pointer-events: none; animation: glowPulse 9s ease-in-out infinite; }
  @keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
  .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  @media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
  .top-marquee {
    position: relative; height: 11px;
    background-color: var(--asphalt); overflow: hidden; pointer-events: none;
  }
  .top-marquee::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("assets/asphalt-texture.png");
    background-repeat: repeat-x; background-position: 0 0; background-size: auto 11px;
    opacity: 0.5; animation: roadmove 19s linear infinite; will-change: background-position;
  }
  @keyframes roadmove { from { background-position-x: 0; } to { background-position-x: -151px; } }
  @media (prefers-reduced-motion: reduce) { .top-marquee::before { animation: none; } }
  .hero-inner { position: relative; z-index: 2; max-width: 720px; }
  .kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-numeral); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); }
  .kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: dotPulse 2s ease-in-out infinite; }
  @keyframes dotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(1.35); } }
  .hero h1 { margin: 16px 0 0; font-weight: 900; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.06; letter-spacing: -0.015em; text-wrap: balance; }
  .hero h1 em { font-style: normal; color: var(--amber); }

  /* ---------- Animación de texto: letras del hero y palabras de los h2 ---------- */
  .hero h1 .hchar-word { display: inline-block; }
  .hero h1.split-chars .hchar {
    display: inline-block;
    opacity: 0;
    transform: translateY(60%) rotate(6deg);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  .hero h1.split-chars.revealed .hchar { opacity: 1; transform: translateY(0) rotate(0deg); }

  .wclip { overflow: hidden; display: inline-block; vertical-align: top; }
  .h2.split-words .wclip-inner {
    display: inline-block;
    transform: translateY(115%);
    transition: transform .6s var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  .reveal.in .h2.split-words .wclip-inner { transform: translateY(0); }
  .hero p.lead { margin: 18px 0 0; max-width: 520px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.72); }
  .hero-ctas { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 28px; padding-top: 16px; border-top: 1px solid var(--asphalt-line); }
  .hero-meta .item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }
  .hero-meta svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; }

  /* ---------- Section shell ---------- */
  .section { position: relative; padding: 87px 0 88px; }
  #catalogo, #servicios, #proceso, #ubicacion, #contacto { display: none; }
  .nav-links a.active, .nav-mobile a.active { color: var(--amber); }
  @media (min-width: 1024px) { .section { padding: 111px 0 112px; } }
  .section-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-numeral); font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-deep); }
  .eyebrow .rule { width: 26px; height: 2px; background: var(--amber); }
  .h2 { margin: 20px 0 0; max-width: 620px; font-weight: 900; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.14; letter-spacing: -0.01em; text-wrap: balance; }
  .lede { margin: 16px 0 0; max-width: 540px; font-size: 15.5px; line-height: 1.6; color: var(--stone); }

  /* ---------- Servicios ---------- */
  .svc-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  @media (min-width: 720px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }
  .svc-card { background: var(--card); padding: 30px 26px; display: flex; flex-direction: column; transition: background-color .2s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .svc-card:hover { background: var(--sage-tint); } }
  .svc-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--sage-tint); color: var(--sage); display: flex; align-items: center; justify-content: center; }
  .svc-card h3 { margin: 20px 0 0; font-size: 16px; font-weight: 700; }
  .svc-card p { margin: 10px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--stone); flex: 1; }

  /* ---------- Confianza ---------- */
  .trust-strip { margin-top: 40px; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
  @media (min-width: 720px) { .trust-strip { grid-template-columns: repeat(4,1fr); } }
  .trust-item { background: var(--card); padding: 18px 20px; display: flex; align-items: center; gap: 12px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
  .trust-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--sage); }

  /* ---------- Permuta ---------- */
  .permuta-box { margin-top: 56px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 34px 26px; display: grid; grid-template-columns: 1fr; gap: 28px; }
  @media (min-width: 860px) { .permuta-box { grid-template-columns: 0.9fr 1.1fr; padding: 44px; } }
  .permuta-copy .eyebrow { color: var(--sage); }
  .permuta-copy h3 { margin: 14px 0 0; font-size: 21px; font-weight: 900; line-height: 1.22; letter-spacing: -0.01em; }
  .permuta-copy p { margin: 12px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--stone); max-width: 42ch; }
  .permuta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
  .permuta-form > div { min-width: 0; }
  .permuta-form label { display: block; font-size: 11.5px; font-weight: 700; color: var(--stone); margin-bottom: 6px; }
  .permuta-form input, .permuta-form select {
    width: 100%; padding: 11px 12px; border-radius: 6px; border: 1px solid var(--line);
    font-family: var(--font-body); font-size: 13.5px; color: var(--ink); background: var(--paper);
    transition: border-color .16s var(--ease-out);
  }
  .permuta-form input:focus, .permuta-form select:focus { outline: none; border-color: var(--sage); }
  .permuta-result { grid-column: 1 / -1; margin-top: 2px; padding: 0; border-radius: 8px; display: none; }
  .permuta-result.show { display: block; padding: 16px 18px; background: var(--sage-tint); }
  .permuta-result .pr-range { font-family: var(--font-numeral); font-size: 21px; font-weight: 700; color: var(--sage); font-variant-numeric: tabular-nums; }
  .permuta-result p { margin: 6px 0 0; font-size: 12px; color: var(--stone); line-height: 1.5; }
  .permuta-form .btn { grid-column: 1 / -1; margin-top: 2px; }

  /* ---------- Testimonios ---------- */
  .testi-marquee { margin-top: 40px; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
  .testi-track { display: flex; gap: 18px; width: max-content; animation: testiScroll 52s linear infinite; }
  .testi-marquee:hover .testi-track { animation-play-state: paused; }
  @keyframes testiScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .testi-track { animation: none; } }
  .testi-card { flex: 0 0 300px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px; display: flex; flex-direction: column; }
  .testi-stars { display: flex; gap: 3px; color: var(--amber); }
  .testi-stars svg { width: 14px; height: 14px; }
  .testi-card p { margin: 14px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink); flex: 1; }
  .testi-name { margin-top: 18px; font-size: 12px; font-weight: 700; color: var(--stone); }
  .testi-note { margin: 22px 0 0; font-size: 11px; color: var(--stone-dim); text-align: center; }

  /* ---------- Vehiculos similares (modal) ---------- */
  .vm-similar { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
  .vm-similar h4 { margin: 0 0 12px; font-size: 12px; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; }
  .vm-similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .vm-similar-card { cursor: pointer; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); transition: border-color .16s var(--ease-out), transform .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .vm-similar-card:hover { border-color: var(--sage); transform: translateY(-2px); } }
  .vm-similar-card img { width: 100%; height: 60px; object-fit: cover; }
  .vm-similar-card .vsc-info { padding: 7px 8px; }
  .vm-similar-card .vsc-title { font-size: 10px; font-weight: 700; line-height: 1.25; }
  .vm-similar-card .vsc-price { font-size: 10px; color: var(--sage); font-weight: 700; margin-top: 2px; }

  /* ---------- Catálogo ---------- */
  .cat-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr; gap: 22px; }
  @media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
  .car-card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), border-color .2s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .car-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(28,31,34,0.1); border-color: var(--stone-dim); } }
  .car-media { height: 168px; background: linear-gradient(155deg, var(--asphalt-2), var(--asphalt)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.28); position: relative; }
  .car-media .plate { position: absolute; bottom: 12px; left: 12px; background: #fff; color: var(--ink); font-family: var(--font-numeral); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; padding: 4px 8px; border-radius: 3px; }
  .car-body { padding: 20px 22px 22px; }
  .car-body h3 { margin: 0; font-size: 16px; font-weight: 700; }
  .car-meta { margin-top: 6px; font-size: 12.5px; color: var(--stone); }
  .car-price { margin-top: 14px; font-family: var(--font-numeral); font-weight: 700; font-size: 26px; color: var(--sage); font-variant-numeric: tabular-nums; }
  .car-price small { font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--stone); margin-left: 4px; }
  .car-cta { margin-top: 14px; display: block; text-align: center; border: 1px solid var(--line); border-radius: 6px; padding: 10px; font-size: 13px; font-weight: 600; transition: border-color .16s var(--ease-out), background-color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .car-cta:hover { border-color: var(--amber-deep); background: #FBF3E4; } }
  .car-card.placeholder .car-media { background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 10px, #fff 10px, #fff 20px); color: var(--stone-dim); }
  .car-card.placeholder h3 { color: var(--stone); }
  .car-card.placeholder .car-meta { color: var(--stone-dim); }
  .cat-note { margin-top: 22px; font-size: 12.5px; color: var(--stone-dim); }

  /* ---------- Catálogo: filtros ---------- */
  .catalog-layout { margin-top: 44px; display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
  @media (min-width: 960px) { .catalog-layout { grid-template-columns: 264px 1fr; gap: 40px; } }

  .filters-toggle { display: flex; width: 100%; margin-bottom: 4px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); font-family: var(--font-body); font-weight: 700; font-size: 13.5px; color: var(--ink); align-items: center; justify-content: space-between; cursor: pointer; }
  .filters-toggle svg { width: 16px; height: 16px; transition: transform .18s var(--ease-out); }
  .filters-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  @media (min-width: 960px) { .filters-toggle { display: none; } }

  .filters-panel { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: none; }
  .filters-panel.open { display: block; }
  @media (min-width: 960px) {
    .filters-panel { display: block; position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--stone-dim) transparent; }
    .filters-panel::-webkit-scrollbar { width: 6px; }
    .filters-panel::-webkit-scrollbar-track { background: transparent; }
    .filters-panel::-webkit-scrollbar-thumb { background: var(--stone-dim); border-radius: 6px; }
    .filters-panel::-webkit-scrollbar-thumb:hover { background: var(--stone); }
  }

  .filters-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
  .filters-head h3 { margin: 0; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--stone); }
  .filters-clear { background: none; border: none; color: var(--amber-deep); font-size: 12.5px; font-weight: 700; cursor: pointer; padding: 4px 0; transition: opacity .15s var(--ease-out); font-family: var(--font-body); }
  .filters-clear:hover { opacity: 0.7; }

  .filter-group { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .filter-label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stone); margin-bottom: 11px; }

  .filter-input { width: 100%; border: 1px solid var(--line); border-radius: 7px; padding: 9px 11px; font-family: var(--font-body); font-size: 13.5px; color: var(--ink); background: var(--paper); transition: border-color .15s var(--ease-out); }
  .filter-input:focus { outline: none; border-color: var(--amber); }
  .filter-input-sm { font-size: 12.5px; padding: 8px 8px; }

  .filter-range-row { display: flex; align-items: center; gap: 7px; }
  .filter-range-sep { color: var(--stone-dim); font-size: 12px; flex-shrink: 0; }

  .filter-checks { display: flex; flex-direction: column; gap: 9px; }
  .filter-check { display: flex; align-items: center; gap: 9px; font-size: 13.5px; cursor: pointer; user-select: none; }
  .filter-check input { width: 15px; height: 15px; accent-color: var(--amber-deep); cursor: pointer; flex-shrink: 0; }
  .filter-check .fc-count { margin-left: auto; color: var(--stone-dim); font-size: 11.5px; font-variant-numeric: tabular-nums; }

  .filter-slider { width: 100%; accent-color: var(--amber-deep); cursor: pointer; display: block; }
  .filter-slider-value { margin-top: 9px; font-size: 12.5px; color: var(--stone); font-variant-numeric: tabular-nums; }

  .catalog-main { min-width: 0; }
  .catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
  .catalog-count { margin: 0; font-size: 13.5px; color: var(--stone); }
  .catalog-count strong { color: var(--ink); font-variant-numeric: tabular-nums; }
  .catalog-sort { display: flex; align-items: center; gap: 8px; }
  .catalog-sort label { font-size: 12.5px; color: var(--stone); white-space: nowrap; }
  .catalog-sort select { width: auto; min-width: 170px; }

  .car-media { overflow: hidden; }
  .car-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .car-card:hover .car-media img { transform: scale(1.06); } }
  .car-year-badge { position: absolute; top: 12px; left: 12px; background: rgba(28,31,34,0.82); backdrop-filter: blur(2px); color: #fff; font-family: var(--font-numeral); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; padding: 4px 9px; border-radius: 5px; font-variant-numeric: tabular-nums; }
  .car-desc { margin-top: 8px; font-size: 12.5px; line-height: 1.5; color: var(--stone); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .car-price small.negociable { color: var(--amber-deep); font-weight: 700; }

  .catalog-empty { text-align: center; padding: 64px 24px; color: var(--stone); font-size: 14.5px; background: var(--card); border: 1px dashed var(--line); border-radius: 12px; }
  .catalog-empty strong { display: block; color: var(--ink); font-size: 16px; margin-bottom: 8px; }

  /* ---------- Vehículo: modal de detalle ---------- */
  .car-card { cursor: pointer; }
  .vehicle-modal-overlay { position: fixed; inset: 0; z-index: 300; background: rgba(28,31,34,0.6); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 18px; opacity: 0; pointer-events: none; transition: opacity .22s var(--ease-out); }
  .vehicle-modal-overlay.open { opacity: 1; pointer-events: auto; }
  body.modal-open { overflow: hidden; }
  .vehicle-modal { position: relative; background: var(--card); border-radius: 14px; max-width: 980px; width: 100%; max-height: 90vh; overflow: hidden; display: grid; grid-template-columns: 1fr; transform: scale(0.96); opacity: 0; transition: transform .22s var(--ease-out), opacity .22s var(--ease-out); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
  @media (min-width: 860px) { .vehicle-modal { grid-template-columns: 1.25fr 1fr; max-height: 84vh; } }
  .vehicle-modal-overlay.open .vehicle-modal { transform: scale(1); opacity: 1; }
  .vm-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(28,31,34,0.72); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; border: none; transition: background-color .16s var(--ease-out), transform .12s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .vm-close:hover { background: rgba(28,31,34,0.92); } }
  .vm-close:active { transform: scale(0.94); }
  .vm-gallery { position: relative; background: var(--asphalt); min-height: 240px; }
  @media (min-width: 860px) { .vm-gallery { min-height: 100%; } }
  .vm-gallery-track { position: relative; width: 100%; height: 100%; min-height: 240px; }
  .vm-media-item { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .28s var(--ease-out); }
  .vm-media-item.active { opacity: 1; }
  .vehicle-modal-overlay.open .vm-media-item.active { pointer-events: auto; }
  .vm-media-item img, .vm-media-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vm-video-tag { position: absolute; top: 14px; right: 54px; background: rgba(226,154,46,0.92); color: var(--amber-ink); font-family: var(--font-numeral); font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px; pointer-events: none; }
  .vm-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.88); color: var(--ink); display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; transition: background-color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .vm-nav:hover { background: #fff; } }
  .vm-nav.prev { left: 12px; }
  .vm-nav.next { right: 12px; }
  .vm-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
  .vm-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.45); transition: background-color .16s var(--ease-out), transform .16s var(--ease-out); border: none; padding: 0; cursor: pointer; }
  .vm-dot.active { background: #fff; transform: scale(1.3); }
  .vm-year-badge { position: absolute; top: 14px; left: 14px; background: rgba(28,31,34,0.82); color: #fff; font-family: var(--font-numeral); font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 5px; z-index: 2; }
  .vm-details { padding: 30px 28px; overflow-y: auto; }
  .vm-details h3 { margin: 0; font-size: 22px; line-height: 1.25; padding-right: 30px; }
  .vm-meta { margin-top: 6px; font-size: 13px; color: var(--stone); }
  .vm-price { margin-top: 16px; font-family: var(--font-numeral); font-weight: 700; font-size: 30px; color: var(--sage); font-variant-numeric: tabular-nums; }
  .vm-price small { font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: var(--stone); margin-left: 4px; }
  .vm-price .negociable { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--amber-deep); font-weight: 700; margin-top: 2px; }
  .vm-specs { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .vm-spec-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--stone-dim); }
  .vm-spec-value { margin-top: 3px; font-size: 14px; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
  .vm-desc { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13.5px; line-height: 1.6; color: var(--stone); max-width: 65ch; }
  .vm-cta { margin-top: 22px; display: block; text-align: center; background: var(--amber); color: var(--amber-ink); border-radius: 7px; padding: 13px; font-weight: 700; font-size: 14px; transition: background-color .16s var(--ease-out), color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .vm-cta:hover { background: var(--amber-deep); color: #fff; } }

  /* ---------- Cómo llegar: globo animado + mapa ---------- */
  .location-section { background: var(--asphalt); color: #fff; }
  .location-section .eyebrow { color: var(--amber); }
  .location-section .h2 { color: #fff; }
  .location-section .lede { color: rgba(255,255,255,0.68); }

  .locate-stage { margin-top: 48px; position: relative; min-height: 520px; border-radius: 16px; overflow: hidden; background: radial-gradient(ellipse at 50% 40%, #262a2e 0%, #15171a 75%); border: 1px solid var(--asphalt-line); }
  @media (min-width: 720px) { .locate-stage { min-height: 560px; } }

  .globe-scene { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transition: opacity .5s var(--ease-out), filter .5s var(--ease-out); }
  .globe-scene.hide { opacity: 0; filter: blur(8px); pointer-events: none; }

  .stars, .stars::after {
    position: absolute; inset: 0;
    background-repeat: no-repeat;
  }
  .stars {
    background-image:
      radial-gradient(2px 2px at 8% 22%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 18% 62%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2.5px 2.5px at 6% 82%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 27% 40%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2px 2px at 15% 10%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 92% 30%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2.5px 2.5px at 82% 70%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 94% 82%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2px 2px at 87% 12%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 73% 46%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 40% 88%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 60% 8%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1px 1px at 48% 52%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1px 1px at 66% 78%, #fff, rgba(255,255,255,0) 70%);
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5));
    animation: twinkleA 4s ease-in-out infinite;
  }
  .stars::after {
    content: '';
    background-image:
      radial-gradient(1.5px 1.5px at 12% 45%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2px 2px at 22% 88%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 4% 60%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2px 2px at 96% 55%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(2px 2px at 78% 24%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 90% 92%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 50% 18%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1.5px 1.5px at 35% 6%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1px 1px at 58% 62%, #fff, rgba(255,255,255,0) 70%),
      radial-gradient(1px 1px at 30% 30%, #fff, rgba(255,255,255,0) 70%);
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
    animation: twinkleB 3.4s ease-in-out infinite 1.1s;
  }
  @keyframes twinkleA { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }
  @keyframes twinkleB { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.85; } }

  .globe-frame {
    position: relative; width: 300px; height: 300px; border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(226,154,46,0.35), 0 0 80px rgba(226,154,46,0.22), inset 0 0 40px rgba(0,0,0,0.5);
    transition: transform 1.15s cubic-bezier(0.6,0,0.9,0.4), opacity 1.05s ease-in, filter 1.05s ease-in;
    overflow: hidden;
  }
  .globe-frame.zoom { transform: scale(26); opacity: 0; filter: blur(2px); }
  .globe-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transform: scale(1.3); }

  .globe-caption { position: relative; z-index: 2; margin: 0; font-family: var(--font-numeral); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  .map-reveal { position: absolute; inset: 0; z-index: 1; display: none; grid-template-columns: 1fr; opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
  .map-reveal.show { opacity: 1; pointer-events: auto; z-index: 3; }
  @media (min-width: 860px) { .map-reveal { grid-template-columns: 1.3fr 1fr; } }
  .map-embed { position: relative; min-height: 240px; background: var(--asphalt-2); }
  .map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }
  .map-info { padding: 32px 30px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
  .map-info h3 { margin: 0; font-size: 20px; font-weight: 900; }
  .map-info p { margin: 4px 0 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.65); max-width: 40ch; }
  .map-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
  .map-replay { margin-top: 22px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 12.5px; font-family: var(--font-body); cursor: pointer; transition: color .16s var(--ease-out); padding: 0; }
  @media (hover: hover) and (pointer: fine) { .map-replay:hover { color: var(--amber); } }

  /* ---------- Proceso ---------- */
/* ---------- Proceso ---------- */
  .steps-rail { position: relative; margin-top: 60px; }
  .steps-line { position: absolute; top: 15px; left: 30px; right: 30px; height: 2px; background-image: repeating-linear-gradient(to right, var(--amber) 0 14px, transparent 14px 26px); display: none; }
  @media (min-width: 860px) { .steps-line { display: block; } }
  .steps-grid { display: grid; grid-template-columns: 1fr; gap: 34px; position: relative; z-index: 1; }
  @media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 860px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
  .step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--asphalt); color: var(--amber); display: flex; align-items: center; justify-content: center; font-family: var(--font-numeral); font-weight: 700; font-size: 13px; }
  .step h3 { margin: 18px 0 0; font-size: 15.5px; font-weight: 700; }
  .step p { margin: 8px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--stone); max-width: 260px; }

  /* ---------- Ubicación / contacto ---------- */
  .contact-shell { background: var(--asphalt); color: #fff; }
  .contact-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
  @media (min-width: 940px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
  .contact-shell .eyebrow { color: var(--amber); }
  .contact-shell .h2 { color: #fff; }
  .contact-shell .lede { color: rgba(255,255,255,0.68); }
  .info-list { margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
  .info-row { display: flex; align-items: flex-start; gap: 14px; }
  .info-row .ic { width: 38px; height: 38px; border-radius: 8px; background: rgba(226,154,46,0.14); color: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .info-row .tt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); }
  .info-row .vv { margin-top: 3px; font-size: 14.5px; color: #fff; }
  .info-row a.vv { transition: color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .info-row a.vv:hover { color: var(--amber); } }
  .social-row { margin-top: 28px; display: flex; gap: 10px; }
  .social-row a { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--asphalt-line); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: border-color .16s var(--ease-out), color .16s var(--ease-out); }
  @media (hover: hover) and (pointer: fine) { .social-row a:hover { border-color: var(--amber); color: var(--amber); } }
  .cta-card { background: var(--asphalt-2); border: 1px solid var(--asphalt-line); border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
  .cta-card h3 { margin: 0; font-size: 19px; font-weight: 900; }
  .cta-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.68); }

  /* ---------- Footer ---------- */
  footer.site-footer { background: var(--asphalt); border-top: 1px solid var(--asphalt-line); padding: 26px 0; }
  .foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.45); }

  /* ---------- WhatsApp float ---------- */
  .wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 60;
    display: flex; align-items: center; gap: 8px; background: #25D366; color: #fff;
    border-radius: 999px; padding: 13px 20px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.28); transition: background-color .16s var(--ease-out), transform .12s var(--ease-out);
    animation: waPulse 2.8s ease-out infinite;
  }
  @keyframes waPulse {
    0% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 26px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
  }
  @media (hover: hover) and (pointer: fine) { .wa-float:hover { background: var(--amber-deep); animation-play-state: paused; } }
  .wa-float:active { transform: scale(0.97); }
