/* ===========================
   ESPASA LANDING — STYLES
   Mobile-first, VW brand design
   =========================== */

:root {
  --navy: #001E50;
  --navy-light: #0d3578;
  --blue: #0040C1;
  --blue-light: #e8eef8;
  --green: #25D366;
  --orange: #E67E22;
  --orange-light: #fdf2e9;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --font: 'Inter', system-ui, sans-serif;
  --max-w: 480px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--navy);
}

.navbar__logo img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.navbar__logo-vw circle { fill: var(--navy); }

.navbar__brand-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.navbar__brand {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
}
.navbar__brand-sub {
  font-size: .6rem;
  color: var(--gray-600);
  letter-spacing: .3px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.navbar__tel {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
}

.navbar__menu-btn {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-family: var(--font);
  font-weight: 600;
  padding: .35rem .5rem;
}

/* Drawer */
.navbar__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: #fff;
  z-index: 200;
  box-shadow: -4px 0 30px rgba(0,0,0,.15);
  transition: right .3s ease;
  overflow-y: auto;
}
.navbar__drawer.open { right: 0; }
.navbar__drawer-inner { padding: 1.5rem; }
.navbar__drawer-close {
  background: none;
  border: none;
  font-size: .9rem;
  cursor: pointer;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  display: block;
  font-family: var(--font);
}
.navbar__drawer ul { display: flex; flex-direction: column; gap: .15rem; }
.navbar__drawer li a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  transition: background .15s;
}
.navbar__drawer li a:hover { background: var(--gray-100); }
.drawer-sep { height: 1px; background: var(--gray-200); margin: .5rem 0; }
.navbar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 150;
}
.navbar__overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  color: white;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}


.hero__content {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.25rem 1.25rem;
  flex: 1;
}

.hero__badge {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: .22rem .75rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.hero__title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .5rem;
}

.hero__subtitle {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero__features {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.5rem;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  color: rgba(255,255,255,.92);
}

.hero__features svg { flex-shrink: 0; }

.hero__img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero__img-wrap::before,
.hero__img-wrap::after { display: none; }

/* picture es inline por default — forzar block */
.hero__img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__ctas {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.hero__ctas .btn {
  font-size: .82rem;
  padding: .75rem .75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  padding: .8rem 1rem;
  transition: opacity .15s, transform .1s;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
}
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--navy); color: white; border: 2px solid white; }
.btn--outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,.55); }
.btn--outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--full { width: 100%; }
.btn--sm { font-size: .78rem; padding: .5rem .9rem; border-radius: 6px; }
.btn--wa-big {
  background: var(--green);
  color: white;
  border: none;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  width: 100%;
  justify-content: center;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .25rem 1rem;
  padding: .55rem .75rem;
}

.trust-bar__inner span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .62rem;
  font-weight: 500;
  color: var(--gray-800);
  white-space: nowrap;
}

/* ===== SECTION HELPERS ===== */
section { max-width: var(--max-w); margin: 0 auto; }

.section-header {
  text-align: center;
  padding: 2rem 1.25rem .9rem;
}
.section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}
.section-header p { font-size: .85rem; color: var(--text-muted); }

/* ===== ¿CÓMO COMPRAR? ===== */
.compra-section { padding-bottom: .5rem; background: var(--gray-50); }
.compra-section .section-header { background: transparent; }

.compra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  padding: 0 1rem 1.5rem;
}

.compra-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .9rem .7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  box-shadow: var(--shadow);
}
.compra-card--blue { border-color: #c5d6f5; }
.compra-card--orange { border-color: #f5d9b8; }

.compra-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: .15rem;
}
.compra-card--blue .compra-card__icon { background: var(--blue-light); color: var(--blue); }
.compra-card--orange .compra-card__icon { background: var(--orange-light); color: var(--orange); }

.compra-card h3 { font-size: .8rem; font-weight: 700; color: var(--navy); }
.compra-card p { font-size: .7rem; color: var(--text-muted); line-height: 1.4; flex: 1; }

.compra-card__link {
  margin-top: .4rem;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
}
.compra-card--blue .compra-card__link { border-color: var(--blue); color: var(--blue); }
.compra-card--orange .compra-card__link { border-color: var(--orange); color: var(--orange); }

/* ===== VERSIONES ===== */
.versiones-section { padding-bottom: 1rem; }

.versiones-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 0 1rem;
}

/* Card horizontal: [img] [info] [precio+btn] */
.version-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
}

.version-card__img-wrap {
  width: 115px;
  height: 115px;
  flex-shrink: 0;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.version-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* auto completo, sin recorte */
  object-position: center;
  display: block;
  padding: 4px;          /* pequeño respiro para que no quede pegado al borde */
}

.version-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
}

.version-card__body {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.version-card__info {
  flex: 1;
  padding: .75rem .6rem .75rem .75rem;
  min-width: 0;
}

.version-card__name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.3;
}

.version-card__specs {
  display: flex;
  flex-direction: column;
  gap: .22rem;
}

.version-card__specs li {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--gray-800);
}

.version-card__specs svg { color: var(--blue); flex-shrink: 0; }

.version-card__price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: .3rem;
  padding: .75rem .75rem .75rem .4rem;
  border-left: none;
  min-width: 115px;
}

.version-card__desde {
  font-size: .65rem;
  color: var(--text-muted);
}

.version-card__price-lista {
  font-size: .7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.version-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.version-card__price--oferta { color: #c62828; }

.versiones-section__compare {
  text-align: center;
  padding: .9rem 1rem;
}

.link-compare {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FINANCIACIÓN ===== */
.financiacion-section {
  background: var(--gray-50);
  padding-bottom: 1.5rem;
}
.financiacion-section .section-header { background: transparent; }

.financiacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  padding: 0 1rem;
}

.financiacion-card {
  background: white;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .28rem;
}

.financiacion-card__badge {
  background: var(--orange);
  color: white;
  font-size: .62rem;
  font-weight: 700;
  padding: .18rem .55rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.financiacion-card__titulo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-top: .1rem;
}

.financiacion-card__monto { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }
.financiacion-card__monto strong { display: block; font-size: .95rem; color: var(--text); font-weight: 700; }
.financiacion-card__cuotas { font-size: .78rem; color: var(--text-muted); }
.financiacion-card__cuotas strong { font-weight: 700; color: var(--text); }

.financiacion-card__banco {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.tooltip-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--blue);
  font-size: .85rem;
  padding: 0 .15rem;
}

/* Calculadora CTA */
.calculadora-cta {
  margin: 1rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.calculadora-cta__icon { color: var(--navy); }

.calculadora-cta__text strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.calculadora-cta__text span { font-size: .78rem; color: var(--text-muted); }

/* ===== ENTREGA ===== */
.entrega-section { padding-bottom: 2rem; }

.entrega-inner {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.entrega-img {
  border-radius: var(--radius);
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.entrega-bullets ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.25rem;
}

.entrega-bullets li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--gray-800);
}

/* ===== ACOMPAÑAMOS ===== */
.acompañamos-section {
  background: var(--gray-50);
  padding-bottom: 1.5rem;
}

.acompañamos-grid {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}

.acompañamos-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.acompañamos-item:last-child { border-bottom: none; }

.acompañamos-item__icon {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acompañamos-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}
.acompañamos-item p { font-size: .8rem; color: var(--text-muted); }

/* ===== CONTACTO ===== */
.contacto-section {
  background: var(--navy);
  max-width: var(--max-w);
  margin: 0 auto;
}

.contacto-box {
  padding: 1.75rem 1.25rem 2rem;
}

.contacto-box__header {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1.25rem;
}
.contacto-box__header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: .2rem;
}
.contacto-box__header p { font-size: .82rem; color: rgba(255,255,255,.7); }

.contacto-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: .6rem;
}

.contacto-form input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: white;
  font-family: var(--font);
  font-size: .88rem;
  outline: none;
}
.contacto-form input::placeholder { color: rgba(255,255,255,.4); }
.contacto-form input:focus {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.11);
}
.contacto-form .btn--primary {
  background: white;
  color: var(--navy);
  border: none;
  margin-top: .25rem;
}
.contacto-form__ok {
  text-align: center;
  color: #a5f3c0;
  font-size: .88rem;
  margin-top: .75rem;
}

/* ===== PRECIOS ===== */
.precios-section { padding-bottom: 2rem; }

.precios-tabla {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 1rem;
}

.precios-fila {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.precios-fila:last-child { border-bottom: none; }
.precios-fila:nth-child(odd) { background: var(--gray-50); }

.precios-fila__nombre { font-size: .88rem; color: var(--gray-800); }
.precios-fila__precio { font-size: .88rem; font-weight: 700; color: var(--navy); }

.precios-nota {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .72rem;
  color: var(--text-muted);
  padding: .65rem 1.25rem;
  line-height: 1.5;
}
.precios-nota svg { flex-shrink: 0; margin-top: .15rem; }

/* ===== RELACIONADOS ===== */
.relacionados-section { padding-bottom: 1.5rem; }

.relacionados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  padding: 0 1rem;
}

.relacionado-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.relacionado-card__img {
  width: 100%;
  height: 75px;
  object-fit: cover;
  background: var(--gray-100);
}

.relacionado-card__body {
  padding: .55rem .6rem .6rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.relacionado-card__body strong { font-size: .78rem; font-weight: 700; color: var(--navy); }
.relacionado-card__body span { font-size: .67rem; color: var(--text-muted); }
.relacionado-card__link {
  display: flex;
  align-items: center;
  gap: .2rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: .3rem;
}

/* ===== FAQ ===== */
.faq-section { padding-bottom: 2rem; }

.faq-list {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 1rem;
}

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .95rem 1rem;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: .5rem;
}

.faq-item__arrow {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform .25s ease;
}
.faq-item__question[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item__answer.open { max-height: 400px; }
.faq-item__answer p {
  padding: 0 1rem 1rem;
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: var(--navy);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-final__inner {
  padding: 2.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  position: relative;
  z-index: 1;
  max-width: 70%;
}

.cta-final__text h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.cta-final__text p { font-size: .85rem; color: rgba(255,255,255,.7); }

.cta-final__tel { font-size: .82rem; color: rgba(255,255,255,.65); }
.cta-final__tel a { color: white; font-weight: 600; }

.cta-final__img {
  position: absolute;
  right: -10px;
  bottom: 0;
  height: 210px;
  opacity: .9;
  pointer-events: none;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: white; }

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__col strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: .65rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer__col li {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.footer__col a { color: rgba(255,255,255,.65); }
.footer__col a:hover { color: white; }

.footer__social { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: .25rem; }
.footer__social a { color: rgba(255,255,255,.65); transition: color .15s; }
.footer__social a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer__bottom-inner {
  padding: 1rem 1.25rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: .85rem;
}

.footer__badges span {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .67rem;
  color: rgba(255,255,255,.5);
}

.footer__copy { font-size: .68rem; color: rgba(255,255,255,.35); margin-bottom: .4rem; }

.footer__links { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer__links a { font-size: .68rem; color: rgba(255,255,255,.35); text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 1.1rem;
  right: 1.1rem;
  z-index: 90;
  background: var(--green);
  color: white;
  border-radius: 50px;
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 600;
  font-size: .82rem;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* ===== OPERACIÓN MULTI-STEP ===== */
.op-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .25rem 1.25rem .5rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: .25rem;
}
.op-topbar__version {
  font-size: .82rem; font-weight: 700; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 80%;
}

.op-step { padding: .5rem 0; }
.op-step__titulo { font-size: 1.15rem; font-weight: 800; color: var(--navy); padding: .25rem 1.25rem .2rem; }
.op-step__sub    { font-size: .8rem; color: var(--text-muted); padding: 0 1.25rem .75rem; }

.op-back-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .25rem 1.25rem .5rem;
}
.op-back {
  background: none; border: none; font-family: var(--font);
  font-size: .82rem; color: var(--blue); cursor: pointer; font-weight: 600; padding: 0;
}
.op-pago-badge {
  font-size: .72rem; font-weight: 700; padding: .2rem .65rem;
  border-radius: 20px;
}
.op-badge--blue   { background: var(--blue-light); color: var(--blue); }
.op-badge--orange { background: var(--orange-light); color: var(--orange); }
.op-badge--green  { background: #e8f5e9; color: #0f9d58; }

/* Cards de pago */
.op-pago-cards { display: flex; flex-direction: column; gap: .6rem; padding: 0 1.25rem .5rem; }

.op-pago-card {
  display: flex; align-items: center; gap: .9rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: .9rem 1rem; background: white; cursor: pointer;
  text-align: left; font-family: var(--font); transition: border-color .15s, background .15s;
  width: 100%;
}
.op-pago-card:hover { border-color: var(--navy); background: var(--gray-50); }

.op-pago-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.op-pago-card__text { flex: 1; }
.op-pago-card__text strong { display: block; font-size: .92rem; color: var(--navy); margin-bottom: .15rem; }
.op-pago-card__text span  { font-size: .75rem; color: var(--text-muted); }
.op-pago-card__check { width: 22px; height: 22px; flex-shrink: 0; }

.op-pago-card.seleccionado {
  border-color: var(--navy);
  background: var(--blue-light);
}
.op-pago-card.seleccionado .op-pago-card__text strong { color: var(--navy); }

/* Planes de financiación seleccionables */
.op-planes { display: flex; flex-direction: column; gap: .5rem; }

.op-plan-btn {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: .75rem 1rem; background: white; cursor: pointer;
  font-family: var(--font); text-align: left; transition: border-color .15s, background .15s;
  width: 100%;
}
.op-plan-btn:disabled { opacity: .45; cursor: not-allowed; }
.op-plan-btn.seleccionado { border-color: var(--navy); background: var(--blue-light); }

.op-plan-btn__left { display: flex; flex-direction: column; gap: .15rem; }
.op-plan-btn__titulo    { font-size: .8rem; color: var(--gray-800); }
.op-plan-btn__banco     { font-size: .7rem; color: var(--text-muted); }
.op-plan-btn__quebranto { font-size: .7rem; color: #b45309; margin-top: .2rem; }
.op-plan-btn__cuota  { font-size: 1.05rem; font-weight: 800; color: var(--navy); white-space: nowrap; }
.op-plan-btn.seleccionado .op-plan-btn__cuota { color: #0f9d58; }
.op-plan-btn.no-disponible { opacity: .4; pointer-events: none; }

/* Formulario usado */
.op-form { padding: 0 1.25rem .5rem; display: flex; flex-direction: column; gap: .65rem; }
.op-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.op-form__field { display: flex; flex-direction: column; gap: .3rem; }
.op-form__field label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .3px; }
.op-form__field input {
  padding: .7rem .9rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .9rem; color: var(--text); outline: none;
  background: var(--gray-50);
}
.op-form__field input:focus { border-color: var(--navy); background: white; }

/* Resumen final */
.op-resumen-card {
  margin: .5rem 1.25rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden;
}
.op-resumen-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .65rem 1rem; border-bottom: 1px solid var(--gray-200); gap: .5rem;
}
.op-resumen-row:last-child { border-bottom: none; }
.op-resumen-row span { font-size: .75rem; color: var(--text-muted); flex-shrink: 0; }
.op-resumen-row strong { font-size: .85rem; color: var(--navy); text-align: right; }
.op-resumen-section {
  background: var(--gray-50); padding: .4rem 1rem;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .4px; color: var(--text-muted);
  border-bottom: 1px solid var(--gray-200);
}

.op-contacto-form {
  margin: .75rem 1.25rem .25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.op-contacto-form__titulo {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--gray-50);
  padding: .5rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}

/* Cada campo ocupa una fila completa, igual que las filas del resumen */
.op-contacto-form .op-form__row {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.op-contacto-form .op-form__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
}

.op-contacto-form > .op-form__field {
  border-bottom: none;
}

.op-contacto-form .op-form__row .op-form__field:first-child {
  border-right: none;
}

.op-contacto-form .op-form__field label {
  font-size: .75rem;
  color: var(--text-muted);
  padding: .65rem 1rem;
  flex-shrink: 0;
  width: 90px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.op-contacto-form .op-form__field input {
  flex: 1;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: .65rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  outline: none;
  font-family: var(--font);
}

.op-contacto-form .op-form__field input::placeholder {
  font-weight: 400;
  color: var(--gray-400);
}

.op-contacto-form .op-form__field input:focus {
  background: var(--blue-light);
}

.op-contacto-form .op-form__field.op-field--error {
  background: #fff5f5;
}
.op-contacto-form .op-form__field.op-field--error label {
  color: #c62828;
}
.op-contacto-form .op-form__field.op-field--error input {
  color: #c62828;
}
.op-contacto-form .op-form__field.op-field--error input::placeholder {
  color: #e57373;
}

/* Grilla de familias (step 0a) */
.op-familia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  padding: 0 1.25rem 1rem;
}

.op-familia-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .65rem .5rem;
  background: white;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color .15s, background .15s;
}
.op-familia-card:hover { border-color: var(--navy); background: var(--blue-light); }

.op-familia-card__img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
}
.op-familia-card__img--empty {
  background: var(--gray-100);
  display: block;
}
.op-familia-card__nombre {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

/* Lista de versiones (step 0b) */
.op-version-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 0 1.25rem 1rem;
}

.op-version-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  background: white;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  width: 100%;
  transition: border-color .15s, background .15s;
  color: var(--navy);
}
.op-version-btn:hover { border-color: var(--navy); background: var(--blue-light); }

.op-version-btn__info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.op-version-btn__info strong { font-size: .88rem; font-weight: 700; color: var(--navy); }
.op-version-btn__info span   { font-size: .8rem; color: var(--text-muted); }

.op-step__ctas { padding: .75rem 1.25rem 0; }

/* ===== CALCULADORA ===== */
.calc-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .5rem 1.25rem .25rem;
}
.calc-header__titulo { font-size: 1.15rem; font-weight: 800; color: var(--navy); }
.calc-header__sub    { font-size: .78rem; color: var(--text-muted); margin-top: .1rem; }

.calc-section { padding: .75rem 1.25rem; }

.calc-label { font-size: .72rem; font-weight: 700; text-transform: uppercase;
              letter-spacing: .4px; color: var(--text-muted); display: block; margin-bottom: .5rem; }

.calc-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.calc-label-row .calc-label { margin: 0; }

.calc-input-wrap {
  display: flex; align-items: center; gap: .25rem;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: .35rem .65rem;
}
.calc-currency { font-size: .9rem; font-weight: 600; color: var(--navy); }
.calc-input {
  border: none; background: transparent; font-family: var(--font);
  font-size: .95rem; font-weight: 700; color: var(--navy);
  width: 130px; outline: none; text-align: right;
}

/* Slider */
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(to right, var(--navy) 40%, var(--gray-200) 40%);
  border-radius: 3px; outline: none; cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,30,80,.3); cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,30,80,.3); cursor: pointer;
}
.calc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: .65rem; color: var(--text-muted); margin-top: .4rem;
}

.calc-precio-fijo { display: flex; align-items: center; gap: .75rem; }
.calc-precio-base { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

.calc-select {
  width: 100%; padding: .65rem .85rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--gray-50); font-family: var(--font);
  font-size: .88rem; color: var(--text); outline: none; cursor: pointer;
}

/* Resumen anticipo/financiar */
.calc-resumen {
  display: flex; align-items: center;
  background: var(--navy); border-radius: var(--radius-sm);
  margin: 0 1.25rem .75rem; overflow: hidden;
}
.calc-resumen__item {
  flex: 1; padding: .75rem 1rem; text-align: center;
}
.calc-resumen__item span { font-size: .7rem; color: rgba(255,255,255,.65); display: block; margin-bottom: .2rem; }
.calc-resumen__item strong { font-size: 1rem; font-weight: 700; color: white; }
.calc-resumen__sep { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; }

/* Planes */
.calc-planes { display: flex; flex-direction: column; gap: .6rem; }

.calc-plan {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: .85rem 1rem; transition: border-color .2s;
}
.calc-plan.disponible { border-color: var(--navy); background: #f0f5ff; }
.calc-plan.no-disponible { opacity: .5; }

.calc-plan__header { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.calc-plan__badge {
  background: var(--orange); color: white;
  font-size: .62rem; font-weight: 700; padding: .15rem .5rem; border-radius: 20px;
}
.calc-plan__titulo { font-size: .78rem; color: var(--text-muted); }
.calc-plan__cuota { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.calc-plan.disponible .calc-plan__cuota { color: #0f9d58; }
.calc-plan__banco     { font-size: .72rem; color: var(--text-muted); margin-top: .25rem; }
.calc-plan__quebranto { font-size: .72rem; color: #b45309; margin-top: .25rem; font-weight: 600; }
.calc-plan__aviso     { font-size: .72rem; color: #c62828; margin-top: .25rem; }

.calc-nota { font-size: .68rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.5; }

/* ===== MODAL / BOTTOM SHEET ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 300;
  backdrop-filter: blur(2px);
}

.modal-overlay.show { display: block; }

.modal-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 310;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 0 0 2rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
  max-width: var(--max-w);
  margin: 0 auto;
  pointer-events: none;
  visibility: hidden;
}

.modal-sheet.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.modal-sheet__handle {
  width: 40px; height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: .75rem auto .5rem;
}

.modal-sheet__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .5rem 1.25rem 0;
  gap: .5rem;
}

.modal-sheet__nombre {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.modal-sheet__desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

.modal-sheet__close {
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--gray-600);
}

.modal-sheet__precio-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  background: var(--gray-50);
  margin: .75rem 1.25rem;
  border-radius: var(--radius-sm);
}

.modal-sheet__desde { font-size: .72rem; color: var(--text-muted); display: block; }

.modal-sheet__precio-lista {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
}

.modal-sheet__precio {
  font-size: 1.5rem;
  font-weight: 800;
  color: #c62828;
}

/* Specs rápidas */
.modal-sheet__specs {
  display: flex;
  gap: .5rem;
  padding: 0 1.25rem .75rem;
  flex-wrap: wrap;
}

.modal-spec-pill {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  padding: .3rem .75rem;
  font-size: .75rem;
  font-weight: 500;
}

/* Características por categoría */
.modal-sheet__feats {
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.modal-feat-group h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.modal-feat-group ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
}

.modal-feat-group li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .82rem;
  color: var(--gray-800);
  line-height: 1.35;
}

.modal-feat-group li svg { flex-shrink: 0; margin-top: .1rem; }

.modal-sheet__ctas {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.25rem 1.25rem 0;
}

/* Desktop: centrar el sheet */
@media (min-width: 900px) {
  .modal-sheet {
    bottom: auto;
    top: 50%;
    transform: translateY(-40%) scale(.95);
    left: 50%;
    margin-left: calc(var(--max-w) / -2);
    border-radius: var(--radius);
    max-height: 85vh;
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .modal-sheet.open {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  .modal-sheet:not(.open) { visibility: hidden; pointer-events: none; }
  .modal-sheet__handle { display: none; }
  .modal-feat-group ul { grid-template-columns: 1fr 1fr; }
}

/* ===== MOBILE PEQUEÑO ===== */
@media (max-width: 380px) {
  .hero__ctas { grid-template-columns: 1fr; }
  .version-card__img-wrap { width: 90px; }
  .version-card__price-col { min-width: 100px; padding: .6rem .5rem; }
  .version-card__price { font-size: .88rem; }
  .wa-float span { display: none; }
  .wa-float { border-radius: 50%; width: 50px; height: 50px; padding: 0; justify-content: center; }
}

/* ===== DESKTOP (≥900px) ===== */
@media (min-width: 900px) {
  :root { --max-w: 1120px; }

  body { background: var(--gray-100); }

  /* --- Navbar desktop --- */
  .navbar { background: white; border-bottom: 1px solid var(--gray-200); }

  .navbar__inner {
    max-width: var(--max-w);
    padding: .75rem 2rem;
  }

  .navbar__menu-btn { display: none; }

  .navbar__desktop-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
  }

  .navbar__desktop-nav a {
    padding: .4rem .75rem;
    border-radius: 6px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: background .15s, color .15s;
    white-space: nowrap;
  }

  .navbar__desktop-nav a:hover,
  .navbar__desktop-nav a.active { background: var(--blue-light); color: var(--blue); }

  .navbar__tel { font-size: .85rem; }

  /* --- Layout single-column desktop --- */
  .desktop-main {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Panel lateral sticky */
  .desktop-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* --- Hero desktop --- */
  .hero {
    max-width: var(--max-w);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
  }

  .hero__content {
    padding: 2.5rem 2rem 1.5rem;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__title { font-size: 2.4rem; }
  .hero__subtitle { font-size: 1rem; }

  .hero__img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: unset;
  }

  .hero__img-wrap::before,
  .hero__img-wrap::after { display: none; }

  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__ctas {
    padding: 0 2rem 2.5rem;
    margin-top: 0;
    max-width: 60%;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }

  /* --- Trust bar desktop --- */
  .trust-bar { max-width: var(--max-w); border-radius: 0; margin-top: 0; }
  .trust-bar__inner { max-width: 100%; flex-wrap: nowrap; justify-content: space-around; padding: .85rem 1.5rem; gap: 0; }
  .trust-bar__inner span { font-size: .78rem; gap: .45rem; }

  /* --- Secciones dentro de .desktop-main: mismo ancho que el hero, sin card flotante --- */
  .desktop-main section,
  .desktop-main .compra-section,
  .desktop-main .versiones-section,
  .desktop-main .financiacion-section,
  .desktop-main .entrega-section,
  .desktop-main .acompañamos-section,
  .desktop-main .faq-section,
  .desktop-main .relacionados-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }

  /* Contacto: mantener fondo navy aunque esté dentro de desktop-main */
  .desktop-main .contacto-section {
    width: 100%;
    margin: 0;
    background: var(--navy) !important;
  }

  .desktop-main .section-header { padding: 1.75rem 1.75rem .75rem; text-align: left; }
  .desktop-main .section-header h2 { font-size: 1.2rem; }

  /* Versiones: 1 col pero más ancha */
  .desktop-main .versiones-list { padding: 0 1.75rem 1.5rem; gap: .6rem; }
  .desktop-main .versiones-section__compare { padding: .6rem 1.75rem 1.25rem; text-align: left; }

  .desktop-main .version-card__img-wrap { width: 140px; height: 140px; }
  .desktop-main .version-card__price-col { min-width: 130px; }
  .desktop-main .version-card__name { font-size: .9rem; }
  .desktop-main .version-card__specs li { font-size: .78rem; }

  /* Compra */
  .desktop-main .compra-cards { padding: 0 1.75rem 1.5rem; gap: .75rem; }
  .desktop-main .compra-card { padding: 1rem; }
  .desktop-main .compra-card h3 { font-size: .85rem; }
  .desktop-main .compra-card p { font-size: .75rem; }

  /* Financiación */
  .desktop-main .financiacion-grid { padding: 0 1.75rem; }
  .desktop-main .calculadora-cta { margin: 1rem 1.75rem 1.5rem; }

  /* Entrega */
  .desktop-main .entrega-inner { padding: 0 1.75rem 1.5rem; flex-direction: row; align-items: center; gap: 1.5rem; }
  .desktop-main .entrega-img { width: 45%; flex-shrink: 0; max-height: 200px; }

  /* Acompañamos */
  .desktop-main .acompañamos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 1.75rem 1.5rem;
    gap: 0;
  }
  .desktop-main .acompañamos-item { border-bottom: 1px solid var(--gray-200); padding: 1rem 0; }
  .desktop-main .acompañamos-item:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--gray-200); }
  .desktop-main .acompañamos-item:nth-child(even) { padding-left: 1.5rem; }
  .desktop-main .acompañamos-item:nth-last-child(-n+2) { border-bottom: none; }

  /* FAQ */
  .desktop-main .faq-list { margin: 0 1.75rem 1.5rem; }

  /* Relacionados */
  .desktop-main .relacionados-grid { padding: 0 1.75rem 1.5rem; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .desktop-main .relacionado-card__img { height: 100px; }

  /* --- Panel lateral --- */
  .sidebar-precios {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .sidebar-precios__header {
    background: var(--navy);
    color: white;
    padding: 1.1rem 1.25rem;
  }

  .sidebar-precios__header h3 { font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
  .sidebar-precios__header p { font-size: .78rem; color: rgba(255,255,255,.7); }

  .sidebar-precios__tabla { }

  .sidebar-precios__fila {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    font-size: .82rem;
  }
  .sidebar-precios__fila:last-child { border-bottom: none; }
  .sidebar-precios__fila:nth-child(odd) { background: var(--gray-50); }
  .sidebar-precios__fila__nombre { color: var(--gray-800); }
  .sidebar-precios__fila__precio { font-weight: 700; color: var(--navy); white-space: nowrap; }

  /* Sidebar contacto */
  .sidebar-contacto {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }

  .sidebar-contacto__header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.1rem;
  }

  .sidebar-contacto__header h3 { font-size: .95rem; font-weight: 700; color: white; }
  .sidebar-contacto__header p { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .1rem; }

  .sidebar-contacto .contacto-form__row { grid-template-columns: 1fr; gap: .5rem; }
  .sidebar-contacto .contacto-form input { font-size: .85rem; padding: .7rem .9rem; }
  .sidebar-contacto .btn--primary { background: white; color: var(--navy); border: none; font-size: .88rem; }

  /* Sidebar WA */
  .sidebar-wa {
    background: white;
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    text-align: center;
  }

  .sidebar-wa p { font-size: .82rem; color: var(--text-muted); }
  .sidebar-wa .btn--wa-big { font-size: .9rem; padding: .8rem 1rem; }
  .sidebar-wa__tel { font-size: .8rem; color: var(--text-muted); }
  .sidebar-wa__tel a { color: var(--navy); font-weight: 600; }

  /* Ocultar secciones duplicadas en desktop (contacto, precios, CTA final) */
  .desktop-only { display: block !important; }
  .mobile-only { display: none !important; }

  /* Precios, contacto y CTA full-width → ocultar en desktop (están en sidebar) */
  .contacto-section.mobile-only,
  .precios-section.mobile-only,
  .cta-final.mobile-only { display: none !important; }

  /* Footer desktop */
  .footer__top {
    max-width: var(--max-w);
    grid-template-columns: 1fr 1fr 1fr;
    padding: 2rem 2rem;
    gap: 2rem;
  }

  .footer__bottom-inner { max-width: var(--max-w); padding: 1rem 2rem; }

  /* WA float: solo mostrar en mobile → ocultar en desktop */
  .wa-float { display: none; }
}

/* ===================================================
   HOME PAGE
   =================================================== */

/* ----- Hero ----- */
.home-hero {
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.home-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,20,60,.85) 45%, transparent 85%);
}
.home-hero__bg--gradient {
  background: linear-gradient(135deg, #001433, #001E50);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 2.5rem 1.25rem 2rem;
  gap: 1rem;
  min-height: 280px;
}

.home-hero__content { flex: 1; }

.home-hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: .75rem;
}

.home-hero__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.home-hero__cta {
  background: var(--navy);
  color: white;
  border: 2px solid white;
  padding: .75rem 1.5rem;
  font-size: .9rem;
}

.home-hero__car {
  width: 45%;
  flex-shrink: 0;
  display: none;
}
.home-hero__car img { width: 100%; height: auto; object-fit: contain; }

/* ----- Secciones del home ----- */
.home-section { max-width: var(--max-w); margin: 0 auto; }

/* ----- Grilla ofertas ----- */
.home-ofertas {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 1rem 1rem;
}

.home-ofertas__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 .25rem;
}

.home-ofertas__header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.home-ofertas__count {
  font-size: .78rem;
  color: var(--text-muted);
}

.home-ofertas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

/* Card de oferta */
.oferta-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.oferta-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: white;
  overflow: hidden;
}

.oferta-card__img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}

.oferta-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100);
}

.oferta-card__badges {
  position: absolute;
  top: .4rem; left: .4rem;
  display: flex; flex-direction: column; gap: .2rem;
}

.oferta-badge {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: .18rem .5rem;
  border-radius: 20px;
  display: inline-block;
}
.oferta-badge--green { background: #0f9d58; color: white; }
.oferta-badge--blue  { background: var(--blue); color: white; }

.oferta-card__body {
  padding: .65rem .7rem .75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.oferta-card__marca {
  font-size: .68rem;
  color: var(--text-muted);
  margin-bottom: .1rem;
}

.oferta-card__nombre {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  line-height: 1.3;
}

.oferta-card__precios {
  display: flex;
  flex-direction: column;
  gap: .05rem;
  margin-bottom: .15rem;
}

.oferta-card__precio-lista {
  font-size: .7rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.oferta-card__precio {
  font-size: 1rem;
  font-weight: 800;
  color: #c62828;
}

.oferta-card__nota {
  font-size: .65rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.oferta-card__info {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .6rem;
  flex: 1;
}

.oferta-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: .3rem;
  font-size: .65rem;
  color: var(--gray-800);
  line-height: 1.35;
}
.oferta-card__info-item svg { flex-shrink: 0; margin-top: .1rem; }

.oferta-card__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  margin-top: auto;
}

.oferta-card__btn-wa {
  background: var(--green);
  color: white;
  border: none;
  font-size: .7rem;
  padding: .5rem .4rem;
  border-radius: 6px;
  justify-content: center;
  gap: .3rem;
  white-space: nowrap;
}

.oferta-card__btn-ver {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-size: .7rem;
  padding: .5rem .4rem;
  border-radius: 6px;
  justify-content: center;
  white-space: nowrap;
}

/* Ver más */
.home-ofertas__footer {
  text-align: center;
  padding: 1.25rem 0 .5rem;
}

.home-ofertas__ver-mas {
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50px;
  padding: .65rem 1.75rem;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font);
}

.home-ofertas__empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

/* ----- Modelos scroll ----- */
.home-modelos {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
}

.home-modelos__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem .75rem;
}

.home-modelos__header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.home-modelos__carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.home-modelos__arrow {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--navy);
  box-shadow: var(--shadow);
  z-index: 1;
  transition: background .15s, border-color .15s;
}
.home-modelos__arrow:hover { background: var(--blue-light); border-color: var(--blue); }
.home-modelos__arrow--prev { margin-left: 1rem; }
.home-modelos__arrow--next { margin-right: 1rem; }

.home-modelos__scroll {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding: .25rem .5rem 1rem;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-modelos__scroll::-webkit-scrollbar { display: none; }

.home-modelo-card {
  flex-shrink: 0;
  width: 110px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.home-modelo-card__img {
  width: 110px;
  height: 70px;
  object-fit: contain;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .35rem;
}

.home-modelo-card__img--placeholder {
  background: var(--gray-100);
  display: block;
}

.home-modelo-card__nombre {
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
}

/* ----- Ayuda ----- */
.home-ayuda {
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  padding: 2rem 1.25rem;
}

.home-ayuda__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-ayuda__text h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.home-ayuda__text p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }
.home-ayuda__wa { max-width: 260px; font-size: .9rem; }

.home-ayuda__items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.home-ayuda__item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.home-ayuda__item svg { flex-shrink: 0; margin-top: .1rem; background: var(--blue-light); border-radius: 50%; padding: 3px; width: 26px; height: 26px; }
.home-ayuda__item strong { display: block; font-size: .88rem; color: var(--navy); margin-bottom: .1rem; }
.home-ayuda__item p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ===== HOME DESKTOP (≥900px) ===== */
@media (min-width: 900px) {
  .home-hero__inner { padding: 3.5rem 3rem 3rem; min-height: 340px; }
  .home-hero__title { font-size: 3rem; }
  .home-hero__car { display: block; width: 38%; }

  .home-ofertas { padding: 2rem 2rem 1.5rem; }
  .home-ofertas__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .home-ofertas__header h2 { font-size: 1.4rem; }

  .oferta-card__nombre { font-size: .88rem; }
  .oferta-card__precio { font-size: 1.1rem; }
  .oferta-card__btn-wa, .oferta-card__btn-ver { font-size: .75rem; }

  .home-modelos { padding: 2rem 0 1.5rem; }
  .home-modelos__header { padding: 0 2rem .75rem; }
  .home-modelos__scroll { padding: 0 2rem 1rem; gap: 1rem; }
  .home-modelo-card { width: 130px; }
  .home-modelo-card__img { width: 130px; height: 85px; }

  .home-ayuda { padding: 2.5rem 3rem; }
  .home-ayuda__inner { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .home-ayuda__text { flex-shrink: 0; }
  .home-ayuda__items { flex-direction: row; flex-wrap: wrap; gap: 1rem 2rem; }
}
}
