/* ================================================================
   Auto Stop PR · home-light.css
   Landing page · Light theme
================================================================ */

:root {
  --red:        #EC2E2B;
  --red-deep:   #AB1A18;
  --black:      #0A0A0A;
  --carbon:     #1A1A1A;
  --carbon-2:   #222;
  --line-dark:  #2a2a2a;
  --line:       #e0dedb;
  --white:      #fff;
  --paper:      #f5f4f1;
  --paper-2:    #eeedea;
  --mute:       #8a8a8a;
  --mute-dark:  #666;
  --green:      #2da46b;

  --display: "Exo 2", system-ui, sans-serif;
  --body:    "Manrope", system-ui, sans-serif;

  --octa:       polygon(29.3% 0%, 70.7% 0%, 100% 29.3%, 100% 70.7%, 70.7% 100%, 29.3% 100%, 0% 70.7%, 0% 29.3%);
  --chamfer-sm: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
  --chamfer-md: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
  --chamfer-lg: polygon(22px 0, calc(100% - 22px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 22px) 100%, 22px 100%, 0 calc(100% - 22px), 0 22px);
}

.grecaptcha-badge {
  opacity: 0;
}


/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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


/* ----------------------------------------------------------------
   TYPE UTILITIES
---------------------------------------------------------------- */

.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: .95;
}

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute-dark);
}

.mono {
  font-family: var(--body);
}

.red {
  color: var(--red);
}

.ul-red {
  position: relative;
  display: inline-block;
}

.ul-red::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: var(--red);
}


/* ----------------------------------------------------------------
   OCTAGON PRIMITIVES
---------------------------------------------------------------- */

.octa {
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
}

.octa-frame {
  position: relative;
  display: inline-grid;
  place-items: center;
  background: var(--red);
  padding: 3px;
}

.octa-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
  z-index: 0;
}

.octa-frame > * {
  position: relative;
  z-index: 1;
}

.octa-frame > .inner {
  background: var(--white);
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  display: grid;
  place-items: center;
}

.stop-sign {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.stop-sign::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
}

.stop-sign::after {
  content: "";
  position: absolute;
  inset: 6%;
  background: transparent;
  border: 2px solid #fff;
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
}

.stop-sign > * {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
}

.octa-img {
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
  width: 100%;
  aspect-ratio: 1;
  background: var(--paper);
  display: block;
}


/* ----------------------------------------------------------------
   LAYOUT
---------------------------------------------------------------- */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
}


/* ================================================================
   1. PREHEADER
================================================================ */

.preheader {
  width: 100%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background .2s;
}

.preheader:hover {
  background: var(--red-deep);
}

.preheader .pin {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
}

.preheader .pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
}

.preheader .pin::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--red);
  clip-path: var(--octa);
  -webkit-clip-path: var(--octa);
}

.preheader .arrow {
  font-weight: 700;
  margin-left: 8px;
}

.preheader .short {
  display: none;
}

@media (max-width: 720px) {
  .preheader {
    font-size: 10px;
    letter-spacing: .14em;
    gap: 10px;
    padding: 9px 14px;
  }
  .preheader .full {
    display: none;
  }
  .preheader .short {
    display: inline;
  }
}


/* ================================================================
   2. HEADER
================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 1px 12px rgba(0, 0, 0, .3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 32px;
  max-width: 1440px;
  margin: 0 auto;
}

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

.brand img {
  width: 200px;
  height: auto;
  flex: 0 0 auto;
}

.brand .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--black);
}

.brand .tag {
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--mute);
  text-transform: uppercase;
  margin-top: 4px;
}

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

.nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ccc;
  padding: 8px 0;
  position: relative;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line-dark);
  color: #aaa;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  clip-path: var(--chamfer-sm);
}

.seal .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  clip-path: var(--octa);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: transform .15s, background .2s, color .2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-red {
  background: var(--red);
  color: #fff;
  clip-path: var(--chamfer-sm);
}

.btn-red:hover {
  background: var(--red-deep);
}

.btn-frame {
  display: inline-block;
  padding: 1.5px;
  background: var(--black);
  clip-path: var(--chamfer-sm);
}

.btn-outline {
  border: none;
  color: var(--black);
  clip-path: var(--chamfer-sm);
  background: #fff;
}

.btn-outline:hover {
  background: var(--black);
  color: #fff;
}

.btn-frame-white {
  display: inline-block;
  padding: 1.5px;
  background: #fff;
  clip-path: var(--chamfer-sm);
}

.btn-outline-white {
  border: none;
  color: #fff;
  clip-path: var(--chamfer-sm);
  background: #0a0a0a;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--black);
}

.btn-ghost {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
}

.burger span::before {
  top: -7px;
}

.burger span::after {
  top: 7px;
}

@media (max-width: 1080px) {
  .nav,
  .header .seal,
  .header .btn-red {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}

.menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.menu.open {
  transform: translateX(0);
}

.menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.menu .top .brand .name {
  color: #fff;
}

.menu .top .brand .tag {
  color: var(--mute);
}

.menu a {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: .04em;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}

.menu a .num {
  display: none;
}

.menu .btn {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  text-align: center;
}


/* ================================================================
   3. HERO
================================================================ */

.hero {
  min-height: 92vh;
  background:
    linear-gradient(100deg,
      rgba(4,4,4,.90) 0%,
      rgba(4,4,4,.76) 32%,
      rgba(4,4,4,.32) 58%,
      rgba(4,4,4,.06) 100%),
    url('../assets/outlander-2026-banner-desktop.jpg') right center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 100px max(40px, 8vw) 120px;
  max-width: none;
  margin: 0;
}

.hero-diag {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(135deg, var(--red) 0 8px, transparent 8px 22px);
  opacity: .5;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 108px);
  line-height: .9;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: #fff;
}

.hero h1 .l2 {
  display: block;
}

.hero .sub {
  margin-top: 28px;
  max-width: 540px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.5;
}

.hero .ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero .eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  clip-path: var(--octa);
}

.hero-model-tag {
  position: absolute;
  bottom: 44px;
  right: max(40px, 8vw);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  pointer-events: none;
}

.hero-model-tag .brand-name {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

.hero-model-tag .model-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 28px 72px;
    background:
      linear-gradient(to top,
        rgba(4,4,4,.92) 0%,
        rgba(4,4,4,.70) 32%,
        rgba(4,4,4,.20) 62%,
        rgba(4,4,4,.04) 100%),
      url('../assets/outlander-2026-banner-mobile.jpg') center top / cover no-repeat;
  }

  .hero > [aria-hidden] {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .hero-model-tag {
    display: none;
  }
}


/* ================================================================
   4. MODELOS NUEVOS
================================================================ */

.section-hd {
  padding: 80px 0 40px;
}

.section-hd h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--black);
}

.section-hd .sub {
  color: #555;
  margin-top: 14px;
  font-size: 16px;
  max-width: 560px;
}

.section-hd .eyebrow {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-hd .eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  clip-path: var(--octa);
}

.nuevos {
  padding: 0 0 100px;
  background: var(--paper);
}

.nuevos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 720px) {
  .nuevos-grid {
    grid-template-columns: 1fr;
  }
}

.model-card {
  position: relative;
  background: var(--white);
  clip-path: var(--chamfer-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
}

.model-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.model-card .img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #fff;
  overflow: hidden;
  border-radius: 2px;
}

.model-card .model-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.model-card:hover .model-img {
  transform: scale(1.05) translateX(6px);
}

.model-card .body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.model-card .name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.model-card .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--black);
}

.model-card .price {
  font-family: var(--display);
  font-weight: 900;
  color: var(--red);
  font-size: 32px;
  letter-spacing: .01em;
}

.model-card .price small {
  font-family: var(--body);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .18em;
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.model-card .badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  /* clip-path: var(--chamfer-sm); */
}

.pill-red {
  background: var(--red);
  color: #fff;
}

.pill-green {
  background: var(--green);
  color: #fff;
}

.pill-line {
  /* background: var(--paper-2); */
  color: var(--mute-dark);
}

.model-card .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.model-card .actions .btn {
  padding: 11px 18px;
  font-size: 9px;
  width: 100%;
  justify-content: center;
}

.model-card .actions .btn-frame {
  display: block;
}

.model-card .actions .btn-frame .btn {
  display: flex;
}

@media (max-width: 520px) {
  .model-card {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: center;
  }
  .model-card .name-row {
    justify-content: center;
  }
  .model-card .actions {
    justify-content: center;
  }
  .model-card .img-wrap {
    max-width: 240px;
    margin: 0 auto;
  }
}


/* ================================================================
   5. USADOS
================================================================ */

.usados {
  background: var(--carbon);
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.usados .section-hd h2 {
  color: var(--white);
}

.usados .section-hd .sub {
  color: #bbb;
}

.usados .section-hd .eyebrow {
  color: var(--mute);
}

.usados::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .012) 0 2px, transparent 2px 14px);
  pointer-events: none;
}

.usados-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 32px 32px;
  margin: 0 -32px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.usados-rail::-webkit-scrollbar {
  height: 6px;
}

.usados-rail::-webkit-scrollbar-thumb {
  background: var(--red);
}

.usados-rail::-webkit-scrollbar-track {
  background: #111;
}

.used-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 240px;
  background: var(--black);
  clip-path: var(--chamfer-md);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  position: relative;
}

.used-card .photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, #2a2a2a, #0d0d0d);
}

.used-card .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.used-card .photo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: .18em;
  color: #bbb;
  background: rgba(0, 0, 0, .7);
  padding: 4px 7px;
  text-transform: uppercase;
}

.used-card .photo-avail {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: .18em;
  color: #fff;
  background: var(--red);
  padding: 4px 8px;
  text-transform: uppercase;
  clip-path: var(--chamfer-sm);
}

.used-card .meta {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.used-card .ymm {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.used-card .upprice {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  color: var(--red);
  line-height: 1;
}

.used-card .specs {
  font-family: var(--body);
  font-size: 11px;
  color: #9a9a9a;
  letter-spacing: .06em;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
}

.used-card .specs span + span::before {
  content: " · ";
  color: var(--red);
  font-weight: 700;
  padding: 0 6px;
}

.used-card .footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.used-card .loc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .16em;
  color: #bbb;
  text-transform: uppercase;
}

.used-card .loc-badge .o {
  width: 14px;
  height: 14px;
  background: var(--red);
  clip-path: var(--octa);
  position: relative;
}

.used-card .loc-badge .o::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid #fff;
  clip-path: var(--octa);
}

.used-card .det-btn {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .16em;
  color: #fff;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

@media (max-width: 1280px) {
  .used-card {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}

@media (max-width: 780px) {
  .used-card {
    flex: 0 0 calc((100% - 40px) / 2);
  }
}

@media (max-width: 520px) {
  .used-card {
    flex: 0 0 calc(82% - 20px);
    min-width: 0;
  }
}

.usados-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.usados-cta .btn {
  padding: 18px 36px;
  font-size: 14px;
  background: #fff;
  color: var(--black);
  clip-path: var(--chamfer-md);
}

.usados-cta .btn:hover {
  background: var(--red);
  color: #fff;
}


/* ================================================================
   6. LOCALIDADES
================================================================ */

.localidades {
  background: var(--white);
  color: var(--black);
  padding: 0 0 100px;
}

.localidades .section-hd h2 {
  color: var(--black);
}

.localidades .section-hd .sub {
  color: #444;
}

.localidades .section-hd .eyebrow {
  color: #666;
}

.loc-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 980px) {
  .loc-split {
    grid-template-columns: 1fr;
  }
}

.map-panel {
  background: #0b1118;
  clip-path: var(--chamfer-lg);
  padding: 32px;
  position: relative;
  color: #fff;
  aspect-ratio: 1.6;
}

.map-panel .compass {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: .9;
  opacity: .7;
}

.map-panel .compass .stem {
  width: 1px;
  height: 18px;
  background: #fff;
  margin-bottom: 4px;
}

.map-panel .west-label {
  position: absolute;
  left: 24px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .4em;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
}

.map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-pin {
  cursor: pointer;
}

.pin-scale {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .2s;
}

.map-pin:hover .pin-scale {
  transform: scale(1.15);
}

.map-pin.active .halo {
  opacity: 1;
}

.map-pin .halo {
  opacity: 0;
  transition: opacity .2s;
}

.loc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.loc-pill {
  padding: 9px 14px;
  background: var(--paper);
  color: var(--black);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  clip-path: var(--chamfer-sm);
  transition: background .2s, color .2s;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.loc-pill.active,
.loc-pill:hover {
  background: var(--red);
  color: #fff;
  clip-path: var(--chamfer-sm);
}

.loc-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loc-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  background: var(--paper);
  color: var(--black);
  clip-path: var(--chamfer-md);
  cursor: pointer;
  transition: background .2s, color .2s;
  position: relative;
  border: 1px solid var(--line);
}

.loc-card .icon {
  width: 40px;
  height: 40px;
  /* background: var(--black); */
  /* clip-path: var(--octa); */
  position: relative;
  display: grid;
  place-items: center;
}

.loc-card .icon svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--line-dark);
}

.loc-card .info .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}

.loc-card .info .addr {
  font-family: var(--body);
  font-size: 1em;
  color: #555;
  margin-top: 6px;
  letter-spacing: .04em;
}

.loc-card .info .hrs {
  font-family: var(--body);
  font-size: .9em;
  color: #888;
  margin-top: 4px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.loc-card .phone-frame {
  display: inline-block;
  padding: 1px;
  background: var(--black);
  clip-path: var(--chamfer-sm);
}

.loc-card .phone-frame:has(.phone:hover) {
  background: var(--red);
}

.loc-card .phone {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  color: var(--black);
  letter-spacing: .04em;
  padding: 9px 12px;
  clip-path: var(--chamfer-sm);
  text-align: right;
  background: var(--paper);
  display: block;
}

.loc-card .phone:hover {
  background: var(--red);
  color: #fff;
}

.loc-card.active {
  background: var(--black);
  color: #fff;
  border-left: 4px solid var(--red);
  border-color: var(--black);
  clip-path: none;
  padding-left: 18px;
}

.loc-card.active .addr {
  color: #bbb;
}

.loc-card.active .hrs {
  color: #888;
}

.loc-card.active .phone-frame {
  background: #fff;
}

.loc-card.active .phone {
  background: var(--black);
  color: #fff;
}

/* .loc-card.active .icon {
  background: var(--red);
} */

@media (max-width: 520px) {
  .loc-card {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .loc-card .phone-frame {
    grid-column: 1 / -1;
    margin-top: 8px;
    display: block;
    width: 100%;
  }
  .loc-card .phone {
    text-align: center;
    width: 100%;
  }
}


/* ================================================================
   7. CONTACTO
================================================================ */

.contacto {
  background: var(--black);
  color: var(--white);
  padding: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.contacto .section-hd {
  text-align: center;
}

.contacto .section-hd h2 {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.contacto .section-hd .sub {
  color: #bbb;
}

.contacto .section-hd .eyebrow {
  color: var(--mute);
}

.contacto .hd-line {
  flex: 0 0 80px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

.contacto .eyebrow {
  justify-content: center;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--carbon);
  clip-path: var(--chamfer-lg);
  padding: 36px;
  border: 1px solid var(--line-dark);
  position: relative;
}

.form-card .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .form-card .row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.field label {
  font-family: var(--body);
  font-size: 0.8em;
  letter-spacing: .2em;
  color: var(--mute);
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  background: var(--black);
  border: 1px solid var(--line-dark);
  color: #fff;
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 15px;
  transition: border-color .2s;
  clip-path: var(--chamfer-sm);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}

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

.form-card .btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  margin-top: 8px;
  font-size: 14px;
}

.form-card .disc {
  font-family: var(--body);
  font-size: 0.9em;
  color: var(--mute);
  letter-spacing: .1em;
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
  font-weight: 800;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wa-tile {
  background: var(--red);
  clip-path: var(--chamfer-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
  cursor: pointer;
  transition: background .2s;
}

.wa-tile:hover {
  background: var(--red-deep);
}

.wa-tile .o {
  width: 64px;
  height: 64px;
  background: #fff;
  clip-path: var(--octa);
  display: grid;
  place-items: center;
}

.wa-tile .o svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.wa-tile .info .lbl {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
}

.wa-tile .info .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.05;
  margin-top: 4px;
}

.wa-tile .info .sub {
  font-family: var(--body);
  font-size: 11px;
  color: #fff;
  letter-spacing: .12em;
  margin-top: 6px;
  text-transform: uppercase;
}

.alt-call {
  background: var(--carbon);
  clip-path: var(--chamfer-md);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line-dark);
  text-align: left;
  width: 100%;
  transition: border-color .2s;
  color: #fff;
}

.alt-call:hover {
  border-color: var(--red);
}

.alt-call .t {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.alt-call .s {
  font-family: var(--body);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .12em;
  margin-top: 4px;
  text-transform: uppercase;
}

.alt-call .arrow {
  font-size: 24px;
  color: var(--red);
}

.auth-callout {
  background: var(--carbon-2);
  clip-path: var(--chamfer-md);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-dark);
}

.auth-callout .seal-big {
  width: 48px;
  height: 48px;
  background: var(--red);
  clip-path: var(--octa);
  position: relative;
  display: grid;
  place-items: center;
}

.auth-callout .seal-big::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1.5px solid #fff;
  clip-path: var(--octa);
}

.auth-callout .seal-big span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  letter-spacing: .02em;
}

.auth-callout .t {
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
}

.auth-callout .s {
  font-family: var(--body);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .06em;
  margin-top: 6px;
  line-height: 1.5;
}


/* ================================================================
   8. FOOTER
================================================================ */

.footer {
  background: #050505;
  padding: 80px 0 0;
  border-top: 1px solid var(--line-dark);
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

@media (max-width: 980px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

.footer .col h4 {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer .col li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
  color: #bbb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .col li .o {
  width: 6px;
  height: 6px;
  background: var(--red);
  clip-path: var(--octa);
  flex: 0 0 6px;
}

.footer .col a {
  color: #bbb;
}

.footer .col a:hover {
  color: var(--red);
}

.footer .brand-col p {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
  margin: 14px 0 18px;
  max-width: 300px;
}

.footer .brand-col .brand {
  margin-bottom: 10px;
}

.footer .brand-col .brand .name {
  color: #fff;
}

.footer .brand-col .brand .tag {
  color: var(--mute);
}

.footer .auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .18em;
  color: #ccc;
  text-transform: uppercase;
  clip-path: var(--chamfer-sm);
  margin-bottom: 18px;
}

.footer .auth-badge .o {
  width: 10px;
  height: 10px;
  background: var(--red);
  clip-path: var(--octa);
}

.footer .socials {
  display: flex;
  gap: 12px;
}

.footer .socials a {
  width: 48px;
  height: 48px;
  background: var(--carbon);
  clip-path: var(--octa);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s, color .2s;
}

.footer .socials a:hover {
  background: var(--red);
  color: #fff;
}

.footer .socials svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--mute);
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--mute);
}

.footer-bottom a:hover {
  color: var(--red);
}


/* ================================================================
   9. FLOATING CTA
================================================================ */

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: var(--red);
  clip-path: var(--octa);
  display: grid;
  place-items: center;
  z-index: 40;
  box-shadow: 0 12px 40px rgba(230, 0, 18, .45), 0 0 0 0 rgba(230, 0, 18, .4);
  transition: transform .2s;
  animation: pulse 2.4s infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.wa-float:hover {
  transform: scale(1.08);
}

@keyframes pulse {
  0%   { box-shadow: 0 12px 40px rgba(230, 0, 18, .45), 0 0 0 0   rgba(230, 0, 18, .6); }
  70%  { box-shadow: 0 12px 40px rgba(230, 0, 18, .45), 0 0 0 18px rgba(230, 0, 18, 0); }
  100% { box-shadow: 0 12px 40px rgba(230, 0, 18, .45), 0 0 0 0   rgba(230, 0, 18, 0); }
}


/* ================================================================
   10. MODAL LOCALIDADES
================================================================ */

.modal-bk {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}

.modal-bk.open {
  display: flex;
}

.modal {
  background: var(--carbon);
  /* clip-path: var(--chamfer-lg); */
  width: 100%;
  max-width: 720px;
  position: relative;
  padding: 36px;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: .025;
  pointer-events: none;
  clip-path: var(--chamfer-lg);
}

.modal-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.modal-hd .auth {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--red);
  text-transform: uppercase;
}

.modal-hd .auth .o {
  width: 12px;
  height: 12px;
  background: var(--red);
  clip-path: var(--octa);
  position: relative;
}

.modal-hd .auth .o::after {
  content: "";
  position: absolute;
  inset: 1.5px;
  border: 1px solid #fff;
  clip-path: var(--octa);
}

.modal-hd h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 42px;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-top: 8px;
  color: #fff;
}

.modal-close {
  width: 44px;
  height: 44px;
  /* background: var(--black);
  clip-path: var(--octa); */
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .2s;
  position: relative;
  flex: 0 0 44px;
}

.modal-close:hover {.modal-close
  background: var(--red);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.ml-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--black);
  /* clip-path: var(--chamfer-md); */
  border: 1px solid var(--line-dark);
}

.ml-row .num {
  width: 56px;
  height: 56px;
  background: var(--red);
  clip-path: var(--octa);
  display: grid;
  place-items: center;
  position: relative;
}

.ml-row .num span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}

.ml-row .info .name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
}

.ml-row .info .addr {
  font-family: var(--body);
  font-size: 0.9em;
  color: #aaa;
  margin-top: 6px;
}

.ml-row .info .hrs {
  font-family: var(--body);
  font-size: 0.8em;
  color: #888;
  margin-top: 3px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ml-row .acts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ml-row .acts .a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: var(--body);
  font-size: 0.9em;
  letter-spacing: .16em;
  text-transform: uppercase;
  clip-path: var(--chamfer-sm);
}

.ml-row .acts .phone {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.ml-row .acts .phone:hover {
  background: var(--red-deep);
}

.ml-row .acts .cita {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.ml-row .acts .cita:hover {
  opacity: .75;
}

.ml-row .acts .maps {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.ml-row .acts .maps:hover {
  color: #fff;
}

.ml-row .acts svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 620px) {
  .ml-row {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .ml-row .num {
    width: 44px;
    height: 44px;
  }
  .ml-row .num span {
    font-size: 20px;
  }
  .ml-row .acts {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .ml-row .acts .a {
    flex: 0 0 auto;
    justify-content: center;
    font-size: 0.78em;
    padding: 7px 10px;
    white-space: nowrap;
  }
  .modal {
    padding: 24px;
  }
  .modal-hd h3 {
    font-size: 30px;
  }
}

.modal-ft {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.modal-ft .h {
  font-family: var(--body);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.modal-ft .link {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1em;
  color: #fff;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  cursor: pointer;
}

body.lock {
  overflow: hidden;
}

/* ----------------------------------------------------------------
   HERO PHONE
---------------------------------------------------------------- */
.hero-phone {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .04em;
}
.hero-phone svg {
  flex-shrink: 0;
  opacity: .5;
  width: 15px;
  height: 15px;
}
.hero-phone a {
  color: rgba(255,255,255,.8);
  font-family: var(--display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: color .15s;
}
.hero-phone a:hover { color: var(--red); }

/* ----------------------------------------------------------------
   NAV SUBMENU
---------------------------------------------------------------- */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a .chev {
  width: 9px;
  height: 9px;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-item:hover > a .chev {
  transform: rotate(180deg);
}
.nav-drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--carbon);
  border: 1px solid var(--line-dark);
  padding: 6px 0;
  min-width: 214px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s, transform .15s;
  z-index: 200;
}
.nav-drop::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-item:hover .nav-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop a {
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  color: #999;
  white-space: nowrap;
  letter-spacing: .1em;
}
.nav-drop a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.nav-drop a:hover::after {
  display: none;
}
.nav-drop .drop-cur {
  color: var(--red);
}
.nav-drop .drop-cur:hover { color: var(--red); }

/* ----------------------------------------------------------------
   MOBILE NAV SUBMENU
---------------------------------------------------------------- */
.menu-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: .04em;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
}
.menu-sub-toggle .sub-chev {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: .45;
  transition: transform .2s, opacity .2s;
}
.menu-sub-toggle.open .sub-chev {
  transform: rotate(180deg);
  opacity: .8;
}
.menu-sub-list {
  display: none;
  border-bottom: 1px solid var(--line-dark);
  padding: 4px 0 8px 0;
}
.menu-sub-list.open { display: block; }
.menu-sub-list a {
  font-size: 18px;
  padding: 11px 8px;
  border-bottom: none;
  opacity: .65;
  letter-spacing: .06em;
}
.menu-sub-list a:hover { opacity: 1; }
.menu-sub-list .sub-cur { color: var(--red); opacity: 1; }
