/* ============================================================
   Dongfeng BOX — Landing rediseño
   Dirección: minimalismo editorial refinado
   Typografía: Fraunces (display serif) + Montserrat (body sans)
   ============================================================ */

/* ----------  RESET  ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, button, select, textarea { font: inherit; }
input:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--color-cta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* palette — MAGE: midnight premium + champán gold */
  --color-bg: #FFFFFF;
  --color-bg-soft: #F5F2EB;           /* warm ivory */
  --color-bg-warm: #ECE6DA;           /* warmer section bg */
  --color-bg-dark: #17141B;           /* negro cálido (bloques oscuros, como la web oficial) */
  --color-ink: #1A161D;
  --color-ink-2: #2A242F;
  --color-ink-muted: #6B6470;
  --color-line: #ECE3E2;
  --color-line-strong: #DCCBCA;

  /* firma de marca MAGE oficial: blush rosé + dorado/mostaza + negro */
  --rose: #EBCBC7;                    /* blush rosé (hero/secciones de firma) */
  --rose-soft: #F6E6E4;              /* blush muy claro */
  --rose-deep: #B46A63;              /* rosé-vino para acentos y números */
  --mage-blue: var(--rose-deep);     /* acentos (compat. con marcado heredado) */
  --mage-blue-deep: #17141B;
  /* acento secundario rosé (mismos nombres "gold" por compatibilidad con el marcado) */
  --gold: var(--rose-deep);
  --gold-soft: #E3A9A3;
  --gold-deep: #A85F58;
  --cta-ink: #ffffff;

  --color-brand-blue: var(--mage-blue);
  --color-brand-red: #E60020;          /* mantenido por compatibilidad, sin uso visible */
  --color-brand-red-dark: #B5001A;
  --color-brand-yellow: var(--rose-deep);
  --color-cta: #15182B;                /* CTA pill negro, igual que VIGO */
  --color-cta-hover: #000000;
  --color-accent: var(--rose-deep);
  --color-star: #F5A524;

  /* type — sistema BOX/VIGO: Montserrat en todo (sin tipografía inventada) */
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* spacing scale */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem;  --s-7: 3rem;  --s-8: 4rem;
  --s-9: 6rem;   --s-10: 8rem; --s-11: 10rem;

  /* radius */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(14,14,16,.06);
  --shadow-lg: 0 24px 48px rgba(14,14,16,.12);
  --shadow-cta: 0 6px 20px rgba(230,0,32,.25);

  /* container */
  --container: 1200px;
  --container-px: clamp(1.25rem, 4vw, 3rem);
}

/* ----------  TYPOGRAPHY BASE  ---------- */
html { font-family: var(--font-body); color: var(--color-ink); background: var(--color-bg); }
body { font-size: 17px; line-height: 1.55; font-weight: 400; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; font-style: normal; color: var(--color-ink); letter-spacing: -0.02em; }
em, .em { font-style: italic; font-weight: 500; }

strong { font-weight: 600; }

::selection { background: var(--color-ink); color: var(--color-bg); }

/* ----------  LAYOUT PRIMITIVES  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-red);
  margin-bottom: var(--s-5);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--color-brand-red);
}

.section-head {
  max-width: 720px;
  margin-bottom: var(--s-8);
}

.section-title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.section-title em { font-weight: 500; }

.section-sub {
  margin-top: var(--s-5);
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  max-width: 56ch;
}

main > section { padding-block: clamp(var(--s-8), 6vw, var(--s-10)); }

/* alternate section bg for editorial rhythm */
.hero { background: var(--color-bg-soft); }
.trust-bar { background: var(--color-bg); padding-block: var(--s-7); border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.process { background: var(--color-bg); }
.benefits { background: var(--color-bg-warm); }
.comparison { background: var(--color-bg); }
.social-proof { background: var(--color-bg-warm); }
.faq { background: var(--color-bg); }
.cta-final { background: var(--color-bg-dark); color: var(--color-bg); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--r-pill);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--color-cta-hover); box-shadow: 0 8px 28px rgba(230,0,32,.35); }

.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ----------  CHIPS  ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ink-2);
  white-space: nowrap;
}

/* ----------  PRESS LOGO (real SVG/PNG)  ---------- */
.press-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  opacity: 0.9;
  transition: opacity .18s ease;
  flex: 0 0 auto;
}
.press-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.press-logo:hover { opacity: 1; }
.press-logo--big { height: clamp(22px, 1.8vw, 28px); }

/* ----------  ICON CHECK  ---------- */
.icon-check {
  width: 20px; height: 20px; flex: none;
  color: var(--color-brand-red);
  margin-top: 3px;
}

/* ============================================================
                       TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-brand-yellow);
  color: var(--color-ink);
  padding: 10px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.005em;
  position: relative;
}
.topbar__text { text-align: center; }
.topbar__full { display: inline; }
.topbar__short { display: none; }
.topbar__close {
  position: absolute;
  right: var(--container-px);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,.55);
  padding: 6px;
  border-radius: 4px;
  transition: color .15s ease;
}
.topbar__close:hover { color: var(--color-ink); }
.topbar[hidden] { display: none; }

/* ============================================================
                       SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,246,243,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding-block: 14px;
}
.site-header__logo { flex-shrink: 0; }
.site-header__logo img { height: 28px; width: auto; filter: brightness(0); }

.site-header__nav {
  display: none;
  flex: 1;
  justify-content: center;
  gap: clamp(var(--s-4), 2.5vw, var(--s-6));
}
.site-header__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-2);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-header__nav a:hover { color: var(--color-brand-red); border-bottom-color: var(--color-brand-red); }

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
}
.site-header__cta { flex-shrink: 0; margin-left: auto; }
@media (min-width: 900px) {
  .site-header__cta { margin-left: 0; }
}

/* smooth-scroll anchor offset under sticky header */
[id] { scroll-margin-top: 90px; }

/* ============================================================
                           HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s-6), 3.5vw, 3.5rem) clamp(var(--s-7), 4vw, 4.5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}

.hero__copy { max-width: 600px; }

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--s-4);
}

.hero__h1 {
  font-size: clamp(2.25rem, 1.2rem + 3.2vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  margin-bottom: var(--s-4);
}
.hero__h1 em {
  font-style: italic;
  font-weight: 500;
}
.underline-accent {
  position: relative;
  white-space: nowrap;
}
.underline-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.42em;
  background: var(--color-brand-yellow);
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 3px;
}

.hero__sub {
  font-size: clamp(15px, 1vw + 11px, 17px);
  line-height: 1.5;
  color: var(--color-ink-2);
  max-width: 52ch;
  margin-bottom: var(--s-5);
}

.hero__bullets {
  display: grid;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  font-size: 15px;
  color: var(--color-ink-2);
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  line-height: 1.4;
}
.hero__bullets strong { font-weight: 600; color: var(--color-ink); }

.hero__cta { margin-bottom: 0; }
.hero__cta-note {
  margin-top: var(--s-3);
  font-size: 13px;
  color: var(--color-ink-muted);
  line-height: 1.4;
  max-width: 42ch;
}

/* hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 5/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-inline: -4%;
}
.hero__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #FFE689 0%, var(--color-brand-yellow) 58%, #E5AE1B 100%);
  z-index: 0;
}
.hero__image {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 115%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.22));
}
.hero__price-tag {
  position: absolute;
  bottom: 6%;
  left: 2%;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hero__price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}
.hero__price-number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.hero__price-unit {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-ink-2);
}
.hero__price-foot {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-ink-muted);
  letter-spacing: 0.02em;
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1fr 1.1fr; gap: var(--s-8); align-items: center; }
  .hero__visual { aspect-ratio: 1/1; max-width: none; }
}

/* MOBILE hero: car first so it's visible in the first viewport + compact stack */
@media (max-width: 959px) {
  .hero { padding-block: var(--s-5) var(--s-5); }
  .hero .hero__grid { gap: var(--s-4); }
  .hero .hero__visual { order: -1; aspect-ratio: 4/3; margin-inline: 0; overflow: visible; }
  .hero .hero__visual::before { width: 72%; inset: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); aspect-ratio: 1/1; }
  .hero .hero__image { width: 100%; max-width: 100%; }
  .hero .hero__kicker { display: none; }
  .hero .hero__sub { display: none; }
  .hero .hero__h1 { font-size: clamp(26px, 6.5vw, 30px); margin-bottom: var(--s-3); line-height: 1.1; letter-spacing: -0.025em; }
  .hero .hero__bullets { margin-bottom: var(--s-4); font-size: 14.5px; gap: 6px; }
  .hero .hero__price-tag { bottom: 6%; left: 4%; padding: 8px 12px; border-radius: var(--r-sm); }
  .hero .hero__price-number { font-size: 24px; gap: 4px; }
  .hero .hero__price-unit { font-size: 11px; }
  .hero .hero__price-label, .hero .hero__price-foot { font-size: 9px; letter-spacing: 0.1em; }
  .hero .hero__cta-note { font-size: 12px; }
}

/* ============================================================
                      TRUST BAR
   ============================================================ */
.trust-bar__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--s-5);
}
.trust-bar__logos {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: clamp(var(--s-3), 2vw, var(--s-5));
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .trust-bar__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-5) var(--s-5);
  }
}

/* ============================================================
                      PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  counter-reset: step;
}
@media (min-width: 760px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.step {
  position: relative;
  padding: var(--s-7) var(--s-5) var(--s-6);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step__num {
  position: absolute;
  top: var(--s-4);
  right: var(--s-5);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  color: var(--color-line-strong);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.step__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  background: rgba(0,65,160,.08);
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.step__icon svg { width: 22px; height: 22px; }
.step__title {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.step__text {
  font-size: 15px;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.process__cta { text-align: center; }

/* ============================================================
                      FEATURE BLOCKS (3 sections)
   ============================================================ */
.feature-block {
  padding-block: clamp(var(--s-7), 5vw, var(--s-9));
  background: var(--color-bg);
}
.feature-block--soft { background: var(--color-bg-warm); }

.feature-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) {
  .feature-block__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

.feature-block--reverse .feature-block__media {
  order: 2;
}
@media (max-width: 959px) {
  .feature-block--reverse .feature-block__media { order: 0; }
}

.feature-block__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}
.feature-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.feature-block:hover .feature-block__media img { transform: scale(1.03); }

.feature-block__badge {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  display: inline-block;
  padding: 6px 12px;
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}

.feature-block__copy { max-width: 560px; }
.feature-block--reverse .feature-block__copy { justify-self: end; }
@media (max-width: 959px) {
  .feature-block--reverse .feature-block__copy { justify-self: start; }
}

.feature-block__lead {
  margin-top: var(--s-4);
  margin-bottom: var(--s-5);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-ink-2);
}

.feature-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line);
  margin-bottom: var(--s-5);
}
.feature-stat { display: grid; gap: 4px; }
.feature-stat dt {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.feature-stat dd {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin: 0;
}

.feature-block__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}

.feature-block__cta {
  margin-top: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}
.feature-block__cta-note {
  font-size: 13px;
  color: var(--color-ink-muted);
}

/* ============================================================
                      LEGACY FEATURE GROUPS (unused, kept for safety)
   ============================================================ */
.feature-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 960px) {
  .feature-groups { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}

.feature-group {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-red);
}

.feature-group__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--color-line);
}
.feature-group__num {
  font-size: 42px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--color-brand-red);
}
.feature-group__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 4px;
}
.feature-group__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.feature-group__list {
  display: grid;
  gap: var(--s-5);
}
.feature-group__list li {
  display: grid;
  gap: 4px;
  padding-bottom: var(--s-4);
  border-bottom: 1px dashed var(--color-line);
}
.feature-group__list li:last-child { border-bottom: 0; padding-bottom: 0; }

.feature-big {
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-ink);
}
.feature-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 6px;
}
.feature-copy {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

.benefits__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-line-strong);
  text-align: center;
}
.benefits__cta-q {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-ink);
}

/* Placeholder note — dev/review only, remove when real content arrives */
.placeholder-note {
  display: inline-block;
  margin-top: var(--s-5);
  padding: 10px 14px;
  background: rgba(255,200,44,.22);
  border-left: 3px solid var(--color-brand-yellow);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-ink-2);
  max-width: 620px;
}
.placeholder-note strong { color: var(--color-ink); font-weight: 700; }
.placeholder-note em { font-style: italic; }

/* ============================================================
                      COMPARISON
   ============================================================ */
.compare-table-wrap {
  margin-bottom: var(--s-8);
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  background: var(--color-bg-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: var(--s-4) var(--s-5);
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-ink-muted);
  background: #fff;
  padding-block: var(--s-5);
}
.compare-table tbody th {
  font-weight: 500;
  color: var(--color-ink-2);
  background: #fff;
  width: 28%;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table__winner {
  background: rgba(230,0,32,.06);
  color: var(--color-ink);
  position: relative;
}
.compare-table__winner strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.winner-badge {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cta);
  margin-bottom: 6px;
}
.compare-table thead th.compare-table__winner {
  font-size: 18px;
  color: var(--color-ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compare-footnote {
  max-width: 820px;
  margin: var(--s-5) auto var(--s-7);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  text-align: center;
  font-style: italic;
}

.compare-table__total th,
.compare-table__total td {
  background: var(--color-bg-warm);
  font-weight: 700;
}
.compare-table__total .compare-table__winner strong {
  font-size: 20px;
  color: var(--color-brand-red);
}

.comparison__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
}
.comparison__cta p {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.comparison__cta p em { font-style: italic; font-weight: 500; }

/* scroll table on mobile */
@media (max-width: 760px) {
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 620px; }
}

/* ============================================================
                      SOCIAL PROOF
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 760px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }

.press-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.press-card__logo {
  height: 32px;
  display: flex;
  align-items: center;
  opacity: 0.95;
  transition: opacity .25s ease;
}
.press-card:hover .press-card__logo { opacity: 1; }
.press-card__logo img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
}
.press-card__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-2);
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-left: var(--s-5);
  border-left: 2px solid var(--color-brand-red);
}
.press-card__source {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-red);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .15s ease;
}
.press-card__source:hover { border-bottom-color: var(--color-brand-red); }

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 760px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-ink) 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
.testimonial:nth-child(2) .testimonial__avatar { background: linear-gradient(135deg, var(--color-brand-red) 0%, #7a0011 100%); }
.testimonial:nth-child(3) .testimonial__avatar { background: linear-gradient(135deg, #2A2A2A 0%, #6A6A6A 100%); }
.testimonial__rating {
  font-size: 14px;
  color: var(--color-star);
  letter-spacing: 0.14em;
}
.testimonial__text {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--color-ink-2);
  flex: 1;
}
.testimonial__author {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink);
}
.testimonial__context {
  font-size: 13px;
  color: var(--color-ink-muted);
  font-style: italic;
}

.social-proof__stat {
  text-align: center;
  padding-top: var(--s-6);
  border-top: 1px solid var(--color-line-strong);
}
.stat-big {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}
.stat-big span {
  font-weight: 800;
  color: var(--color-brand-red);
}
.stat-small {
  font-size: 14px;
  color: var(--color-ink-muted);
}

/* ============================================================
                      FAQ
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: 1fr 1.4fr; gap: var(--s-9); align-items: start; }
  .faq__head { position: sticky; top: 100px; }
}

.faq__intro {
  margin-top: var(--s-5);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  max-width: 44ch;
}

.faq__list { border-top: 1px solid var(--color-line-strong); }
.faq-item { border-bottom: 1px solid var(--color-line-strong); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
  transition: color .15s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--color-brand-red); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: none;
  border-radius: var(--r-pill);
  border: 1px solid var(--color-line-strong);
  transition: background .2s ease, border-color .2s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.faq-item__icon::before { width: 10px; height: 1.5px; }
.faq-item__icon::after  { width: 1.5px; height: 10px; }
.faq-item[open] .faq-item__icon { background: var(--color-brand-red); border-color: var(--color-brand-red); color: #fff; }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__a {
  padding: 0 0 var(--s-5) 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  max-width: 64ch;
}
.faq-item__a strong { color: var(--color-ink-2); }

/* ============================================================
                      CTA FINAL (with car image)
   ============================================================ */
.cta-final {
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) {
  .cta-final__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.cta-final__visual {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-final__visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(230,0,32,.18) 0%, transparent 65%);
  filter: blur(30px);
  z-index: 0;
}
.cta-final__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.5));
}
.cta-final__copy { max-width: 560px; }
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(230,0,32,.08), transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(0,65,160,.1), transparent 70%);
  pointer-events: none;
}
.cta-final > .container { position: relative; z-index: 1; }
.cta-final__kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s-5);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
}
.cta-final__title {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.5rem);
  line-height: 1.05;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0 0 var(--s-5);
}
.cta-final__title em { font-style: italic; font-weight: 500; }
.cta-final__sub {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
  margin: 0 0 var(--s-6);
  max-width: 48ch;
}
.cta-final .btn--primary {
  box-shadow: 0 10px 40px rgba(230,0,32,.5);
}
.cta-final__stats {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.cta-final__stats strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-final__sep { color: rgba(255,255,255,.3); }

/* ============================================================
                      SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.5);
  padding-block: var(--s-6);
  font-size: 12px;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer__inner { display: flex; flex-direction: column; gap: var(--s-3); }
.site-footer__legal a { color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.2); }
.site-footer__finance { font-size: 12px; color: rgba(255,255,255,.62); max-width: 72ch; }

/* ============================================================
                      STICKY CTA (mobile)
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 40;
  background: var(--color-cta);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 2px 8px rgba(230,0,32,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.7,.3,1);
  align-items: center;
  gap: 8px;
}
.sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
@media (max-width: 759px) { .sticky-cta { display: inline-flex; } }

/* ============================================================
                      MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: var(--s-4); }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(6px);
  animation: fadeIn .18s ease;
}
.modal__content {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--r-lg);
  max-width: 460px;
  width: 100%;
  padding: var(--s-8) var(--s-7) var(--s-6);
  box-shadow: var(--shadow-lg);
  animation: modalIn .25s cubic-bezier(.2,.7,.3,1);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal__close {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-muted);
  transition: background .18s ease, color .18s ease;
}
.modal__close:hover { background: var(--color-bg-soft); color: var(--color-ink); }

.modal__title {
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.modal__title em { font-style: italic; font-weight: 400; }
.modal__sub {
  color: var(--color-ink-muted);
  margin-bottom: var(--s-6);
  font-size: 15px;
  line-height: 1.5;
}

/* ----------  FORM  ---------- */
.form { display: grid; gap: var(--s-4); }
.form--inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3);
}
.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink-2);
}
.field__optional {
  font-weight: 400;
  font-size: 12px;
  color: var(--color-ink-muted);
  margin-left: 4px;
}
.field input,
.form--inline input {
  padding: 14px 16px;
  font-size: 16px;  /* >=16px avoids iOS zoom */
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-sm);
  background: var(--color-bg);
  transition: border-color .18s ease, box-shadow .18s ease;
  font-family: var(--font-body);
}
.field input:focus,
.form--inline input:focus {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(230,0,32,.15);
}
.field input::placeholder,
.form--inline input::placeholder { color: #B5B1A8; }

.form__legal {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  text-align: center;
  margin-top: var(--s-2);
}
.form__legal a { color: var(--color-ink-2); border-bottom: 1px solid var(--color-line-strong); }

/* ----------  SUCCESS  ---------- */
.success { text-align: center; padding-block: var(--s-3); }
.success__icon {
  width: 64px; height: 64px;
  color: var(--color-cta);
  margin: 0 auto var(--s-5);
}
.success__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--s-4);
  letter-spacing: -0.01em;
}
.success__sub {
  font-size: 15px;
  color: var(--color-ink-muted);
  margin-bottom: var(--s-5);
  line-height: 1.5;
}

/* ============================================================
                      REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
                      RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 640px) {
  .topbar__full { display: none; }
  .topbar__short { display: inline; }
  .site-header__cta { display: none; } /* CTA lives in sticky on mobile */
}

@media (min-width: 760px) and (max-width: 960px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .benefits__media { max-width: 400px; margin: 0 auto; }
}

/* ════════════════════════════════════════════════════════════
   ███  TEMA VIGO  ███  (override sobre el sistema BOX)
   Identidad fría: periwinkle + verde oliva + CTA negro
   ════════════════════════════════════════════════════════════ */
:root {
  --color-bg-soft: #F2F4FC;
  --color-bg-warm: #E9EDF9;
  --color-bg-dark: #0E1230;
  --color-ink: #0B0E1A;
  --color-ink-2: #1B2036;
  /* todo el bloque realineado a MAGE (sobrescribe el periwinkle de VIGO) */
  --color-ink-muted: #6B6470;
  --color-line: #ECE3E2;
  --color-line-strong: #DCCBCA;

  --color-brand-blue: #B46A63;
  --color-olive: #B46A63;
  --color-olive-deep: #9E5A57;
  --color-peri: #C77F77;
  --color-peri-2: #E2A8A0;
  --color-peri-3: #F6E6E4;

  --color-cta: #15182B;
  --color-cta-hover: #000000;
  --color-accent: #B46A63;
  --shadow-cta: 0 8px 24px rgba(21,24,43,.22);
}

/* acentos que en BOX eran rojos → azul/oliva en VIGO */
.eyebrow { color: var(--color-brand-blue); }
.eyebrow::before { background: var(--color-brand-blue); }
.icon-check { color: var(--color-olive); }
.btn--primary:hover { background: var(--color-cta-hover); box-shadow: 0 10px 30px rgba(21,24,43,.32); }
.site-header__logo img { filter: brightness(0); }
.site-header__nav a:hover { color: var(--color-brand-blue); border-bottom-color: var(--color-brand-blue); }
.step__icon { color: var(--color-brand-blue); background: rgba(44,58,140,.09); }
.faq-item__q:hover { color: var(--color-brand-blue); }
.faq-item[open] .faq-item__icon { background: var(--color-brand-blue); border-color: var(--color-brand-blue); }
.field input:focus, .form--inline input:focus { border-color: var(--color-brand-blue); box-shadow: 0 0 0 3px rgba(180,106,99,.18); }
.success__icon { color: var(--color-olive); }
.sticky-cta { box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 2px 10px rgba(21,24,43,.4); }
.topbar { background: var(--color-brand-blue); color: #fff; }
.topbar__close { color: rgba(255,255,255,.7); }
.topbar__close:hover { color: #fff; }
.press-card__quote { border-left-color: var(--color-olive); }

/* ─────────  HERO VIGO — círculo con degradado fuerte + coche encima (asimétrico, estilo BOX)  ───────── */
.hero { background: #EDF0FA; }                 /* fondo claro frío, sin degradado a sangre */
.hero__h1 { color: var(--color-ink); }
.hero__h1 em { color: var(--color-brand-blue); }
.underline-accent::after { background: var(--color-olive); opacity: .85; transform: skewX(-6deg); }
.chip { background: #fff; border-color: var(--color-line-strong); color: var(--color-ink-2); }

.hero__visual { overflow: visible; }
/* círculo geométrico relleno con el degradado periwinkle→azul (mucha fuerza) */
.hero__visual::before {
  display: block;
  width: 84%;
  background: radial-gradient(circle at 33% 27%, #C6CEF6 0%, #8C9AE6 40%, #5564C8 76%, #36439E 100%);
  box-shadow: 0 44px 90px rgba(48,58,140,.30);
}
/* anillo sutil concéntrico para dar profundidad y diferenciar del círculo plano de BOX */
.hero__visual::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  z-index: 0;
  pointer-events: none;
}
.hero__wordmark { display: none; }            /* fuera el wordmark centrado (lo hacía simétrico) */
.hero__image {
  width: 116%; max-width: 116%;
  filter: drop-shadow(0 32px 44px rgba(25,32,80,.42));
}
.hero__price-tag { background: #fff; border-color: var(--color-line); }
.hero__price-number { color: var(--color-ink); }
@media (max-width: 959px) {
  .hero { background: #E9EDF9; }
  .hero .hero__kicker { display: flex; }       /* en VIGO sí mostramos chips en móvil */
  .hero__visual::before { width: 78%; }
  .hero__visual::after { display: none; }
}

/* ─────────  BLOQUE SECCIÓN OSCURA (reutilizable) — tema MAGE rosé/dorado  ───────── */
.section--ink {
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(180,106,99,.34), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(195,155,64,.22), transparent 60%),
    var(--color-bg-dark);
  color: #fff;
}
.section--ink .section-title, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .eyebrow { color: var(--color-peri-2); }
.section--ink .eyebrow::before { background: var(--color-peri-2); }
.section--ink .section-sub { color: rgba(255,255,255,.72); }

/* ═════════  1. V2L "ENCHUFA LA VIDA" (interactivo)  ═════════ */
.v2l__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) { .v2l__grid { grid-template-columns: 1.05fr 1fr; gap: var(--s-8); } }

.v2l__stage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse 85% 75% at 50% 62%, #1b2550 0%, #0A0D22 68%),
    #0A0D22;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.v2l__stage img { width: 90%; height: auto; object-fit: contain; transform: scaleX(-1); filter: drop-shadow(0 22px 34px rgba(0,0,0,.55)); }
.v2l__stage::after { content:""; position:absolute; left:50%; bottom:14%; width:62%; height:14px; transform:translateX(-50%); background:radial-gradient(ellipse,rgba(0,0,0,.45),transparent 70%); filter:blur(4px); }
.v2l__plug {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.v2l__plug .dot { width: 9px; height: 9px; border-radius: 50%; background: #7DF9A0; box-shadow: 0 0 0 0 rgba(125,249,160,.7); animation: v2lpulse 1.8s infinite; }
@keyframes v2lpulse { 0%{box-shadow:0 0 0 0 rgba(125,249,160,.6)} 70%{box-shadow:0 0 0 11px rgba(125,249,160,0)} 100%{box-shadow:0 0 0 0 rgba(125,249,160,0)} }
.v2l__readout {
  position: absolute; right: 16px; top: 16px;
  background: rgba(11,13,30,.62); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md);
  padding: 14px 18px; color: #fff; min-width: 168px; text-align: right;
}
.v2l__readout-dev { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.72); margin-bottom: 4px; }
.v2l__readout-num { font-family: var(--font-display); font-size: clamp(26px,3vw,34px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.v2l__readout-num span { font-size: 15px; font-weight: 600; color: var(--color-peri-2); }

.v2l__copy h2 em { font-style: italic; font-weight: 500; color: var(--color-peri-2); }
.v2l__intro { margin: var(--s-4) 0 var(--s-6); font-size: 17px; line-height: 1.55; color: rgba(255,255,255,.78); }
.v2l__devices { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: var(--s-6); }
.v2l__dev {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14);
  color: #fff; font-size: 14.5px; font-weight: 600; text-align: left;
  transition: border-color .18s, background .18s, transform .18s;
}
.v2l__dev:hover { transform: translateY(-2px); border-color: rgba(174,184,238,.6); }
.v2l__dev svg { width: 22px; height: 22px; flex: none; color: var(--color-peri-2); }
.v2l__dev.is-active { background: rgba(174,184,238,.18); border-color: var(--color-peri-2); }
.v2l__dev.is-active svg { color: #fff; }
.v2l__foot { font-size: 13px; color: rgba(255,255,255,.5); }
.v2l__chip-spec { display: inline-block; margin-bottom: var(--s-3); padding: 6px 14px; border-radius: var(--r-pill); background: rgba(174,184,238,.16); border: 1px solid rgba(174,184,238,.4); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 520px){ .v2l__devices { grid-template-columns: 1fr; } }

/* ═════════  2. TOUR INTERIOR (hotspots)  ═════════ */
.hotspots__stage { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; }
.hotspots__stage img { width: 100%; height: 100%; object-fit: cover; }
.hotspot {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 0; color: var(--color-ink);
  display: grid; place-items: center; transform: translate(-50%,-50%);
  box-shadow: 0 4px 16px rgba(0,0,0,.3); cursor: pointer;
  transition: transform .18s;
}
.hotspot::after { content:""; position:absolute; inset:-6px; border-radius:50%; border:2px solid rgba(255,255,255,.7); animation: hsring 2.2s infinite; }
@keyframes hsring { 0%{transform:scale(.7);opacity:.9} 100%{transform:scale(1.5);opacity:0} }
.hotspot span { width:11px; height:11px; border-radius:50%; background: var(--color-brand-blue); }
.hotspot:hover, .hotspot.is-active { transform: translate(-50%,-50%) scale(1.18); }
.hotspot.is-active span { background: var(--color-olive); }
.hotspots__panel {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-5); align-items: center;
  margin-top: var(--s-5); padding: var(--s-5) var(--s-6);
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); min-height: 132px;
}
.hotspots__thumb { width: 120px; height: 90px; border-radius: var(--r-md); object-fit: cover; }
.hotspots__panel h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.hotspots__panel p { font-size: 15px; color: var(--color-ink-muted); line-height: 1.5; }
.hotspots__nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s-5); }
.hotspots__nav button {
  padding: 8px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  background: #fff; border: 1.5px solid var(--color-line-strong); color: var(--color-ink-2);
  transition: all .15s;
}
.hotspots__nav button.is-active { background: var(--color-brand-blue); border-color: var(--color-brand-blue); color: #fff; }
@media (max-width:560px){ .hotspots__panel { grid-template-columns: 1fr; text-align:center } .hotspots__thumb{ width:100%; height:160px } }

/* ═════════  3. "18 MINUTOS" (timeline de carga)  ═════════ */
.charge__head { text-align: center; max-width: 640px; margin: 0 auto var(--s-7); }
.charge__bar-wrap { max-width: 760px; margin: 0 auto; }
.charge__labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--color-ink-muted); margin-bottom: 10px; }
.charge__track { position: relative; height: 56px; border-radius: var(--r-pill); background: var(--color-bg-warm); overflow: hidden; border: 1px solid var(--color-line); }
.charge__fill { position: absolute; inset: 0 auto 0 0; width: 30%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--color-brand-blue), var(--color-peri)); transition: width 1.4s cubic-bezier(.3,.8,.3,1); display: flex; align-items: center; justify-content: flex-end; padding-right: 16px; color: #fff; font-weight: 800; font-size: 15px; }
.charge__track.is-charged .charge__fill { width: 80%; }
.charge__scale { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--color-ink-muted); }
.charge__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); margin-top: var(--s-8); }
.charge__card { text-align: center; padding: var(--s-6) var(--s-4); background: #fff; border: 1px solid var(--color-line); border-radius: var(--r-lg); }
.charge__card svg { width: 32px; height: 32px; color: var(--color-brand-blue); margin: 0 auto var(--s-3); }
.charge__card dt { font-family: var(--font-display); font-size: clamp(24px,2.4vw,30px); font-weight: 800; letter-spacing: -.02em; }
.charge__card dd { font-size: 14px; color: var(--color-ink-muted); margin-top: 4px; }
@media (max-width:640px){ .charge__cards { grid-template-columns: 1fr; gap: var(--s-4) } }

/* ═════════  4. "CABE TU VIDA" (espacio SUV)  ═════════ */
.space__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-7); align-items: center; }
@media (min-width: 960px){ .space__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
.space__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--color-bg-soft); }
.space__media img { width: 100%; height: 100%; object-fit: cover; }
.space__tag { position: absolute; left: 16px; bottom: 16px; background: rgba(11,14,26,.78); backdrop-filter: blur(8px); color: #fff; padding: 10px 16px; border-radius: var(--r-md); font-size: 13px; font-weight: 600; max-width: 70%; }
.space__tag strong { color: var(--color-peri-2); }
.space__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin: var(--s-5) 0 var(--s-6); }
.space__stat { padding: var(--s-5) var(--s-4); background: #fff; border: 1px solid var(--color-line); border-radius: var(--r-md); }
.space__stat dt { font-family: var(--font-display); font-size: clamp(26px,2.6vw,34px); font-weight: 800; letter-spacing: -.03em; color: var(--color-ink); line-height: 1; }
.space__stat dd { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--color-ink-muted); margin-top: 6px; }
.space__list { display: grid; gap: 10px; }
.space__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--color-ink-2); }
.space__list svg { width: 20px; height: 20px; color: var(--color-olive); flex: none; margin-top: 2px; }

/* ═════════  GARANTÍA BANNER  ═════════ */
.warranty__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; text-align: center; }
.warranty__big { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; letter-spacing: -.04em; line-height: .95; color: #fff; }
.warranty__big em { font-style: normal; color: var(--color-peri-2); }
.warranty__sub { font-size: 18px; color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto; }
.warranty__row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-6); margin-top: var(--s-5); }
.warranty__row div { font-size: 13px; color: rgba(255,255,255,.6); }
.warranty__row strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.02em; }

/* ═════════  SELECTOR DE COLOR  ═════════ */
.colors__inner { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
@media (min-width: 860px){ .colors__inner { grid-template-columns: 1.4fr 1fr; } }
.colors__stage { position: relative; aspect-ratio: 16/10; border-radius: var(--r-lg); background: linear-gradient(165deg, var(--color-peri) 0%, var(--color-peri-2) 40%, var(--color-peri-3) 78%, #fff 100%); display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-md); }
.colors__stage::after { content:""; position:absolute; left:50%; bottom:13%; width:66%; height:16px; transform:translateX(-50%); background:radial-gradient(ellipse, rgba(30,40,90,.30), transparent 70%); filter:blur(5px); z-index:1; }
.colors__stage img { grid-area: 1 / 1; width: 100%; height: auto; z-index: 2; filter: drop-shadow(0 20px 26px rgba(30,40,90,.22)); }
.colors__stage img { display: none; }
.colors__stage img.is-active { display: block; }
.colors__name { position: absolute; left: 22px; top: 18px; z-index: 3; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; color: #fff; text-shadow: 0 2px 14px rgba(40,50,110,.45); }
.colors__swatches { display: flex; gap: 14px; }
.colors__swatch { width: 46px; height: 46px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.18), 0 0 0 1px var(--color-line-strong); cursor: pointer; transition: transform .15s; }
.colors__swatch:hover { transform: scale(1.08); }
.colors__swatch.is-active { box-shadow: 0 2px 8px rgba(0,0,0,.18), 0 0 0 2px var(--color-brand-blue); transform: scale(1.08); }
.colors__copy h2 em { font-style: italic; font-weight: 500; color: var(--color-brand-blue); }
.colors__copy p { font-size: 16px; color: var(--color-ink-muted); margin: var(--s-4) 0 var(--s-5); line-height: 1.55; }

/* CTA final VIGO: usa coche oliva sobre azul, glow azul no rojo */
.cta-final { background: var(--color-bg-dark); }
.cta-final::before { background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(44,58,140,.35), transparent 70%), radial-gradient(ellipse 40% 30% at 82% 100%, rgba(111,126,69,.28), transparent 70%); }
.cta-final__visual::before { background: radial-gradient(circle at 50% 50%, rgba(174,184,238,.22) 0%, transparent 65%); }
.cta-final .btn--primary { background: #fff; color: var(--color-ink); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.cta-final .btn--primary:hover { background: #fff; opacity: .92; }

/* ════════ Revisión Drawbridge (26-jun) ════════ */
/* #7 · V2L: imagen/escenario más grande */
.v2l__stage img { width: 98%; }
@media (min-width: 960px) { .v2l__grid { grid-template-columns: 1.28fr 0.9fr; } }
/* #6 · Portón "Cabe tu vida": imagen más grande */
.space__media { aspect-ratio: 5/4; }
@media (min-width: 960px) { .space__grid { grid-template-columns: 1.3fr 0.85fr; } }
/* #10 · CTA final: foto del coche más grande */
.cta-final__visual { aspect-ratio: 5/4; }
.cta-final__visual img { width: 108%; max-width: 108%; }
@media (min-width: 960px) { .cta-final__grid { grid-template-columns: 0.82fr 1.18fr; } }

/* #2 · Hotspots: popup SOBRE la imagen (no panel abajo) */
.hotspots__pop {
  position: absolute; z-index: 6; max-width: 262px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(6px);
  border: 1px solid var(--color-line); border-radius: var(--r-md);
  box-shadow: 0 14px 34px rgba(15,20,40,.26);
  padding: 13px 16px; opacity: 0; transform: translateY(6px) scale(.97);
  transition: opacity .2s ease, transform .2s ease; pointer-events: none;
}
.hotspots__pop.is-shown { opacity: 1; transform: translateY(0) scale(1); }
.hotspots__pop h3 { font-size: 16px; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
.hotspots__pop p { font-size: 13.5px; line-height: 1.45; color: var(--color-ink-muted); margin: 0; }
@media (max-width: 560px) {
  .hotspots__pop { left: 10px !important; right: 10px !important; top: auto !important; bottom: 10px !important; max-width: none; transform: translateY(0); }
}

/* #1 · V2L: barra de conexión coche → ⚡ → dispositivo */
.v2l__conn {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: flex; align-items: center; max-width: 94%;
  background: rgba(11,13,30,.58); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill); padding: 6px 8px;
}
.v2l__conn-end { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: 12.5px; font-weight: 700; white-space: nowrap; padding: 4px 9px; }
.v2l__conn-end svg { width: 18px; height: 18px; color: var(--color-peri-2); }
.v2l__conn-ico { display: inline-flex; }
.v2l__conn-ico svg { color: #fff; }
.v2l__conn-flow { position: relative; width: 50px; height: 2px; margin: 0 2px; flex: none;
  background-image: linear-gradient(90deg, rgba(174,184,238,.65) 50%, transparent 50%); background-size: 8px 2px; animation: v2lflow .6s linear infinite; }
@keyframes v2lflow { from { background-position: 0 0; } to { background-position: 8px 0; } }
.v2l__conn-flow .dot { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; border-radius: 50%; background: #7DF9A0; transform: translateY(-50%); box-shadow: 0 0 8px #7DF9A0; animation: v2lspark 1.5s linear infinite; }
@keyframes v2lspark { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@media (max-width: 560px) { .v2l__conn-end { font-size: 11.5px; padding: 4px 6px; } .v2l__conn-flow { width: 34px; } }

/* #4 · Carga: taza de café + animación más lenta para disfrutarla */
.charge__fill { transition: width 3.4s cubic-bezier(.25,.8,.3,1); padding-right: 12px; }
.charge__min { position: relative; }
.charge__cup { font-size: 22px; line-height: 1; margin-left: 7px; display: inline-block; animation: cupbob 1.7s ease-in-out infinite; }
@keyframes cupbob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@media (prefers-reduced-motion: reduce) { .charge__cup, .v2l__conn-flow, .v2l__conn-flow .dot { animation: none; } }

/* ════════ Revisión Drawbridge · ronda 2 (26-jun) ════════ */
/* ESPACIO: imagen grande y SIN recorte + cifras en una sola línea */
.space__media { aspect-ratio: auto; background: none; box-shadow: none; }
.space__media img { height: auto; object-fit: contain; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
@media (min-width: 960px) { .space__grid { grid-template-columns: 1.5fr 1fr; align-items: center; } }
.space__stats { grid-template-columns: repeat(3, auto); justify-content: start; gap: var(--s-6); }
.space__stat { padding: 0; background: none; border: 0; }
.space__stat dt { white-space: nowrap; font-size: clamp(26px, 2.5vw, 34px); }

/* COLORES: coche mucho más grande (stage 4/3 = mismo ratio que el render, sin recorte) */
.colors__stage { aspect-ratio: 4/3; }
.colors__stage img { width: 100%; }
@media (min-width: 860px) { .colors__inner { grid-template-columns: 1.65fr 0.9fr; } }

/* V2L: números de horas mucho más grandes (tipo hotspot/stat) */
.v2l__readout { min-width: 210px; padding: 16px 20px; }
.v2l__readout-dev { font-size: 14px; }
.v2l__readout-num { font-size: clamp(40px, 5.2vw, 58px); }
.v2l__readout-num span { font-size: 20px; }

/* V2L ahora usa FOTO en naturaleza: rellena el escenario (cover, sin flip ni sombra de recorte) */
.v2l__stage { background: #0A0D22; display: block; }
.v2l__stage img { width: 100%; height: 100%; object-fit: cover; transform: none; filter: none; }
.v2l__stage::after { display: none; }

/* V2L · icono junto a las horas + lectura que se mueve según el dispositivo */
.v2l__readout { transition: top .35s ease, bottom .35s ease, left .35s ease, right .35s ease; }
.v2l__readout-dev { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.v2l__readout-ico { display: inline-flex; }
.v2l__readout-ico svg { width: 17px; height: 17px; color: var(--color-peri-2); }

/* ============================================================
   ███  TEMA MAGE — blush rosé + champán + negro cálido  ███
   (overrides sobre el sistema base BOX/VIGO + componentes nuevos)
   ============================================================ */

/* ----- Tipografía: Montserrat (sistema BOX/VIGO), acentos rosé ----- */
.section-title em, .hero__h1 em { color: var(--rose-deep); }

/* ----- CTA pill negro (igual que VIGO) ----- */
:root { --shadow-cta: 0 8px 22px rgba(21,24,43,.26); }
.btn--primary { color: #fff; box-shadow: var(--shadow-cta); }
.btn--primary:hover { box-shadow: 0 10px 30px rgba(21,24,43,.34); }

/* ----- Acentos de marca: rosé ----- */
.eyebrow { color: var(--color-ink-2); }
.eyebrow::before { background: var(--rose-deep); }
.icon-check { color: var(--rose-deep); }
.site-header__nav a:hover { color: var(--rose-deep); border-bottom-color: var(--rose-deep); }
.site-header { background: rgba(255,253,252,.85); border-bottom-color: var(--color-line); }
.topbar { background: var(--color-bg-dark); color: #F3E7DD; }
.topbar__close { color: rgba(255,255,255,.55); }
.topbar__close:hover { color: #fff; }
::selection { background: var(--rose-deep); color: #fff; }

/* secciones oscuras: acentos en rosé claro */
.section--ink .section-title em { color: var(--rose); }
.section--ink .eyebrow { color: var(--rose); }
.section--ink .eyebrow::before { background: var(--rose); }

/* ============================================================
   HERO — partido con coche sobre círculo rosé (estilo BOX/VIGO)
   ============================================================ */
.hero { background: #FBF1F0; }
.hero__h1 { color: var(--color-ink); }
.hero__h1 em { color: var(--rose-deep); font-style: italic; font-weight: 500; }
.chip { background: #fff; border-color: var(--color-line-strong); color: var(--color-ink-2); }

.hero__visual { overflow: visible; }
/* círculo relleno con degradado rosé (mucha fuerza), igual planteamiento que VIGO */
.hero__visual::before {
  display: block;
  width: 84%;
  background: radial-gradient(circle at 33% 27%, #F8E0DD 0%, #E8ADA6 40%, #CE8079 76%, #A85F58 100%);
  box-shadow: 0 44px 90px rgba(150,80,75,.30);
}
.hero__visual::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.40);
  z-index: 0;
  pointer-events: none;
}
.hero__wordmark { display: none; }
.hero__image {
  width: 116%; max-width: 116%;
  filter: drop-shadow(0 32px 44px rgba(90,50,48,.40));
}
.hero__price-tag { background: #fff; border-color: var(--color-line); }
.hero__price-number { color: var(--color-ink); }
@media (max-width: 959px) {
  .hero { background: #FAEEEC; }
  .hero .hero__kicker { display: flex; }
  .hero__visual::before { width: 78%; }
  .hero__visual::after { display: none; }
}

/* ============================================================
   TWO-FACE — "Dos coches en uno": un coche, sección partida
   (izquierda eléctrico / derecha gasolina, ambos visibles a la vez)
   ============================================================ */
.twoface { background: var(--color-bg); }
.twoface__stage {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.twoface__side {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 500px; padding: clamp(1.75rem, 3.5vw, 3.25rem);
}
.twoface__side--ev {
  background: radial-gradient(130% 130% at 0% 10%, #F9E6E3 0%, #EFD2CE 60%, #E7C4BF 100%);
  color: var(--color-ink);
  align-items: flex-start; text-align: left;
  padding-right: clamp(1.5rem, 22%, 12rem);
}
.twoface__side--fuel {
  background: radial-gradient(130% 130% at 100% 90%, #261F2B 0%, #18141E 60%, #100D15 100%);
  color: #fff;
  align-items: flex-end; text-align: right;
  padding-left: clamp(1.5rem, 22%, 12rem);
}
.twoface__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.twoface__tag svg { width: 14px; height: 14px; }
.twoface__side--ev .twoface__tag { background: rgba(180,106,99,.15); color: var(--rose-deep); }
.twoface__side--fuel .twoface__tag { background: rgba(255,255,255,.12); color: var(--rose-soft); }
.twoface__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 1.8rem + 3vw, 4rem); line-height: .92; letter-spacing: -.03em; }
.twoface__side--fuel .twoface__big { color: #fff; }
.twoface__sub { font-weight: 600; font-size: clamp(14px,1.1vw,16px); margin: 8px 0 18px; }
.twoface__side--ev .twoface__sub { color: var(--rose-deep); }
.twoface__side--fuel .twoface__sub { color: var(--rose-soft); }
.twoface__list { display: grid; gap: 8px; max-width: 32ch; }
.twoface__list li { font-size: 13.5px; line-height: 1.4; }
.twoface__side--ev .twoface__list li { color: var(--color-ink-2); }
.twoface__side--fuel .twoface__list li { color: rgba(255,255,255,.82); }

/* coche central que une los dos mundos */
.twoface__car {
  position: absolute; left: 50%; top: 58%;
  transform: translate(-50%, -50%);
  width: clamp(230px, 34%, 460px);
  height: auto; z-index: 3; pointer-events: none;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,.45));
}
/* línea divisoria + badge ⇄ */
.twoface__divide {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  transform: translateX(-50%); z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.12) 30%, rgba(255,255,255,.12) 70%, rgba(255,255,255,.4));
}
.twoface__divide-badge {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.28);
  display: grid; place-items: center; color: var(--color-ink);
}
.twoface__divide-badge svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .twoface__stage { grid-template-columns: 1fr; }
  .twoface__divide { display: none; }
  .twoface__car { position: static; transform: none; width: min(78%, 360px); margin: clamp(1.5rem,5vw,2rem) auto -0.5rem; order: -1; }
  .twoface__side { min-height: auto; align-items: flex-start; text-align: left; padding: clamp(1.5rem,6vw,2rem); }
  .twoface__side--fuel { align-items: flex-start; text-align: left; padding-left: clamp(1.5rem,6vw,2rem); }
  .twoface__side--ev { padding-right: clamp(1.5rem,6vw,2rem); }
}

/* ============================================================
   RANGE — "+1.000 km sin repostar" (sección oscura)
   ============================================================ */
.range__head { max-width: 760px; margin: 0 auto var(--s-7); text-align: center; }

/* mapita del viaje */
.route { max-width: 720px; margin: 0 auto; }
.route__map { width: 100%; height: auto; display: block; }
.route__line { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.route__line--go { stroke: var(--gold-soft); stroke-dasharray: 880; stroke-dashoffset: 880; transition: stroke-dashoffset 1.6s cubic-bezier(.3,.8,.3,1); }
.route.is-in .route__line--go { stroke-dashoffset: 0; }
.route__line--back { stroke: rgba(255,255,255,.4); opacity: 0; transition: opacity .5s ease 1s; }
.route.is-in .route__line--back { opacity: 1; }
.route__dot { stroke: #fff; stroke-width: 3; }
.route__dot--start { fill: var(--rose-deep); }
.route__dot--end { fill: #fff; }
.route__pin text { fill: #fff; font-family: var(--font-body); font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.route__car { opacity: 0; transition: opacity .5s ease 1.1s; }
.route.is-in .route__car { opacity: 1; }
.route__foot { max-width: 600px; margin: var(--s-4) auto 0; text-align: center; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.5; }
.route__foot strong { color: #fff; font-weight: 700; }

.range__cards { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-8); }
.range__card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: var(--s-5) var(--s-6); }
.range__card dt { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,3.5vw,42px); color: #fff; letter-spacing: -.02em; }
.range__card dd { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 4px; }
.range__card--hl { background: linear-gradient(135deg, rgba(206,128,121,.26), rgba(180,106,99,.14)); border-color: rgba(226,168,160,.5); }
.range__card--hl dt { color: var(--rose); }
@media (min-width: 760px) { .range__cards { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   FAMILIA — "The car for what you care"
   ============================================================ */
.familia { background: var(--color-bg); }
.familia__grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
.familia__hero { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/2; }
.familia__hero img { width: 100%; height: 100%; object-fit: cover; }
.familia__hero figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: clamp(1.5rem,4vw,2.6rem);
  font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem,2.2vw,1.8rem); color: #fff;
  background: linear-gradient(0deg, rgba(23,20,27,.7), transparent);
}
.familia__card { background: var(--color-bg-soft); border: 1px solid var(--color-line); border-radius: var(--r-lg); overflow: hidden; }
.familia__media { aspect-ratio: 3/2; overflow: hidden; }
.familia__media img { width: 100%; height: 100%; object-fit: cover; }
.familia__card h3 { font-size: 20px; font-weight: 600; margin: var(--s-5) var(--s-5) 6px; }
.familia__card p { margin: 0 var(--s-5) var(--s-5); color: var(--color-ink-muted); font-size: 15px; }
@media (min-width: 860px) {
  .familia__grid { grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; }
  .familia__hero { grid-row: 1 / 3; aspect-ratio: auto; }
  .familia__card { display: flex; flex-direction: column; }
  .familia__media { flex: 1; aspect-ratio: auto; min-height: 150px; }
}

/* ============================================================
   Reajustes de componentes heredados al tema MAGE
   ============================================================ */
/* CTA final: glows cálidos en vez de azul/oliva */
.cta-final::before { background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(180,106,99,.32), transparent 70%), radial-gradient(ellipse 40% 30% at 82% 100%, rgba(206,128,121,.20), transparent 70%); }
.cta-final__visual::before { background: radial-gradient(circle at 50% 50%, rgba(235,203,199,.22) 0%, transparent 65%); }
.cta-final__title em { color: var(--rose); font-style: italic; }
.cta-final .btn--primary { background: #fff; color: var(--color-ink); }
.cta-final .btn--primary:hover { background: #f0eef2; }
.cta-final__stats strong { color: #fff; }

/* COLORES: escenario CLARO de estudio (coches recortados) — los colores oscuros (negro/azul) se distinguen */
.colors__stage { background: radial-gradient(120% 100% at 50% 18%, #FAF6F2 0%, #EFE7DF 52%, #DED2C8 100%); }
.colors__stage::after { background: radial-gradient(ellipse, rgba(60,40,38,.22), transparent 70%); }
.colors__stage img { filter: drop-shadow(0 18px 26px rgba(60,40,38,.20)); }
.colors__name { color: var(--color-ink); }

/* Garantía: símbolo infinito y números en dorado/rosé ya cubiertos por peri-2 */
.warranty__big em { color: var(--rose); }
