/* ═══════════════════════════════════════════════════════════
   IMPULSO MAQUINARIA — Multi-page site (v3)
   Header floating centered · Hero with Genie atmospheric bg
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }

:root {
  --color-bg: #0F131B;
  --color-bg-2: #161B25;
  --color-bg-3: #1D2430;
  --color-line: #2A313D;
  --color-line-2: #373F4D;
  --color-text: #F2F4F8;
  --color-text-muted: #8A8F99;
  --color-text-dim: #545862;

  --color-azul: #1E55AA;
  --color-azul-claro: #3B82F6;
  --color-azul-glow: rgba(59, 130, 246, 0.3);

  --color-wa: #25D366;

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --container-max: 1320px;
  --container-padding: clamp(20px, 4vw, 56px);
  --header-h-total: 92px;    /* solo pill nav + outer padding (logo arriba removido) */

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.text-blue { color: var(--color-azul-claro); }

/* ═══════════════════════════════════════════════
   FLOATING HEADER (centered, sticky at top)
   Logo circle + pill nav stacked, doesn't scroll
═══════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
  transition: top 0.3s var(--ease-out);
}
.header.scrolled { top: 12px; }

.header-logo {
  display: block;
  pointer-events: auto;
  transition: transform 0.3s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.6));
}
.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.4));
}
.header-logo img {
  width: 110px;
  height: auto;
  object-fit: contain;
  display: block;
}

.header-nav {
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--color-line);
  border-radius: 100px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.25s;
  position: relative;
  z-index: 2;
}
.nav-link:hover { color: var(--color-text); }
.nav-link.active {
  color: var(--color-text);
  background: var(--color-azul);
}

/* Cursor pill animado que sigue el hover (inyectado vía JS) */
.nav-cursor {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: calc(100% - 16px);
  transform: translateY(-50%);
  background: linear-gradient(135deg,
    rgba(91, 163, 255, 0.16) 0%,
    rgba(59, 130, 246, 0.20) 100%);
  border: 1px solid rgba(91, 163, 255, 0.35);
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition:
    left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  box-shadow:
    0 0 18px rgba(59, 130, 246, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav-cart {
  position: relative;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cart-badge {
  display: none;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--color-azul-claro);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cart:hover .cart-badge { background: #fff; color: var(--color-azul); }

@media (max-width: 768px) {
  :root { --header-h-total: 80px; }
  .header { top: 12px; gap: 10px; }
  .header-logo img { width: 80px; }
  .header-nav {
    padding: 6px 8px;
    overflow-x: auto;
    max-width: calc(100vw - 32px);
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .nav-link { padding: 6px 12px; font-size: 12px; white-space: nowrap; }
}

/* ═══════════════════════════════════════════════
   HOMEPAGE HERO V2 — Centered, logo dominant (no tablet)
═══════════════════════════════════════════════ */
.home-hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h-total) + 20px) 0 80px;
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════
   BACKGROUND GRADIENT ANIMATION (Aceternity)
   Adapted to vanilla — brighter colored blobs that
   blend with SVG goo filter. Brand-tuned to blues.
═══════════════════════════════════════════════ */
:root {
  --bga-bg-start: rgb(10, 30, 80);
  --bga-bg-end: rgb(3, 8, 24);
  --bga-color-1: 30, 85, 170;       /* Azul Impulso */
  --bga-color-2: 59, 130, 246;      /* Azul claro */
  --bga-color-3: 100, 200, 255;     /* Cyan electric */
  --bga-color-pointer: 80, 160, 255;
  --bga-size: 70%;
}

.bg-gradient-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(40deg, var(--bga-bg-start), var(--bga-bg-end));
  pointer-events: none;
  contain: layout paint;
}

.bg-gradient-anim-blobs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Solo blur (sin goo) — el SVG filter chain era muy pesado en CPU */
  filter: blur(50px);
  will-change: filter;
}

/* Pausa animaciones cuando no está visible (perf) */
.bg-gradient-anim.paused .bg-gradient-anim-blob {
  animation-play-state: paused;
}

.bg-gradient-anim-blob {
  position: absolute;
  width: var(--bga-size);
  height: var(--bga-size);
  top: calc(50% - var(--bga-size) / 2);
  left: calc(50% - var(--bga-size) / 2);
  /* GPU layer */
  will-change: transform;
  transform: translateZ(0);
}

.bg-gradient-anim-blob.b1 {
  background: radial-gradient(circle at center, rgba(var(--bga-color-1), 0.55) 0, rgba(var(--bga-color-1), 0) 60%) no-repeat;
  transform-origin: center center;
  animation: bgaMoveVertical 30s ease infinite;
  opacity: 0.95;
}
.bg-gradient-anim-blob.b2 {
  background: radial-gradient(circle at center, rgba(var(--bga-color-2), 0.5) 0, rgba(var(--bga-color-2), 0) 60%) no-repeat;
  transform-origin: calc(50% - 300px);
  animation: bgaMoveInCircle 26s linear infinite;
  opacity: 0.9;
}
.bg-gradient-anim-blob.b3 {
  background: radial-gradient(circle at center, rgba(var(--bga-color-3), 0.45) 0, rgba(var(--bga-color-3), 0) 60%) no-repeat;
  transform-origin: calc(50% + 300px);
  animation: bgaMoveHorizontal 36s ease infinite;
  opacity: 0.85;
}
/* b4, b5 reducidos a no-op para perf (los dejo en el HTML por compat pero invisibles) */
.bg-gradient-anim-blob.b4,
.bg-gradient-anim-blob.b5 {
  display: none;
}
.bg-gradient-anim-blob.bpointer {
  background: radial-gradient(circle at center, rgba(var(--bga-color-pointer), 0.4) 0, rgba(var(--bga-color-pointer), 0) 55%) no-repeat;
  width: 100%; height: 100%;
  top: -50%; left: -50%;
  opacity: 0.6;
  pointer-events: auto;
  will-change: transform;
}

@keyframes bgaMoveVertical {
  0%   { transform: translateY(-50%); }
  50%  { transform: translateY(50%); }
  100% { transform: translateY(-50%); }
}
@keyframes bgaMoveInCircle {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bgaMoveHorizontal {
  0%   { transform: translateX(-50%) translateY(-10%); }
  50%  { transform: translateX(50%)  translateY(10%); }
  100% { transform: translateX(-50%) translateY(-10%); }
}
.home-hero-v2-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home-hero-v2-glow::before {
  content: '';
  position: absolute;
  width: 90vw;
  height: 90vh;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--color-azul-glow) 0%, transparent 55%);
  filter: blur(80px);
}
.home-hero-v2-grid {
  display: none; /* clean hero — sin grid de cuadritos */
}
.hero-v2-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-v2-logo {
  width: clamp(380px, 56vw, 760px);
  height: auto;
  margin: 0 auto -70px;
  display: block;
  filter: drop-shadow(0 24px 80px rgba(59, 130, 246, 0.28));
  animation: logoFloat 5s ease-in-out infinite;
  pointer-events: none;
}
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-v2-title > span { display: block; }
.hero-v2-title .t-1 {
  font-size: 0.55em;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: -0.05em;
  opacity: 0.85;
}
.hero-v2-title .t-2 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.5em;
  color: var(--color-azul-claro);
  letter-spacing: -0.04em;
  text-transform: none;
  line-height: 0.95;
  margin: 4px 0 2px;
}
.hero-v2-title .t-3 {
  font-size: 0.6em;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  margin-top: -0.05em;
  opacity: 0.9;
}
.hero-v2-desc {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: #ffffff;
  font-weight: 700;
  max-width: 56ch;
  margin: 0 auto 18px;
}
/* Stack vertically: meta on its own line, buttons on theirs */
.hero-v2-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--color-text-dim);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-v2-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-azul-claro);
  opacity: 0.5;
}
.hero-v2-meta strong {
  color: var(--color-azul-claro);
  font-weight: 600;
}
.hero-v2-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ───── FloatingLines container ───── */
.home-hero-v2-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  overflow: hidden;
}
.home-hero-v2-lines canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.hero-v2-content {
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-v2-logo { width: 80vw; margin-bottom: -36px; }
}

/* ═══════════════════════════════════════════════
   HOMEPAGE HERO (V1: with tablet) — kept for backup
═══════════════════════════════════════════════ */
.home-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h-total) + 40px) 0 80px;
  overflow: hidden;
}
.home-hero-glow-bg {
  position: absolute;
  width: 80vw;
  height: 80vh;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--color-azul-glow) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* LEFT: text content */
.home-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-big-logo {
  width: clamp(360px, 46vw, 680px);
  height: auto;
  margin-bottom: -32px;
  margin-left: -24px;
  filter: drop-shadow(0 18px 60px rgba(59, 130, 246, 0.22));
  animation: logoFloat 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.home-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 32px;
}
.home-hero-title > span { display: block; }
.home-hero-title .t-1 {
  font-size: 0.62em;
  color: var(--color-text);
  letter-spacing: 0.04em;
  margin-bottom: -0.05em;
  opacity: 0.85;
}
/* "Impulso" — different font (italic Inter light) + blue */
.home-hero-title .t-2 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.55em;
  color: var(--color-azul-claro);
  letter-spacing: -0.04em;
  text-transform: none;
  line-height: 0.95;
  margin: 4px 0 2px -4px;
}
.home-hero-title .t-3 {
  font-size: 0.7em;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
  margin-top: -0.05em;
  opacity: 0.9;
}

.home-hero-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-bottom: 20px;
}
.home-hero-desc strong { color: var(--color-text); font-weight: 600; }

.home-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--color-text-dim);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.home-hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-azul-claro);
  opacity: 0.5;
}
.home-hero-meta strong {
  color: var(--color-azul-claro);
  font-weight: 600;
}

.home-hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* RIGHT: Tablet (landscape) showing the brochure, extending past right edge */
.home-hero-visual {
  position: relative;
  perspective: 1800px;
  perspective-origin: 30% 50%;
  height: 60vh;
  max-height: 540px;
}
.tablet {
  position: absolute;
  top: 50%;
  left: 0;
  width: 135%;            /* extends past right edge for cut-off effect */
  height: 100%;
  transform: translateY(-50%) rotateY(-14deg) rotateX(3deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
  background: linear-gradient(145deg, #1a1f2c 0%, #0f1218 50%, #0a0c10 100%);
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    -40px 50px 120px -30px rgba(0,0,0,0.85),
    0 25px 80px rgba(59, 130, 246, 0.2),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  display: flex;
}
/* Side camera detail (subtle) */
.tablet::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  z-index: 5;
}
.tablet::after {
  content: '';
  position: absolute;
  left: 16px; top: 16px;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 5;
}
.tablet-screen {
  position: relative;
  flex: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    linear-gradient(170deg, #0a0c10 0%, #050608 100%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.04);
}
.tablet-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent);
  z-index: 4;
}
.tablet-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 65%);
}
/* Brochure image inside tablet — fills the screen completely */
.tablet-folleto {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.tablet-label {
  position: absolute;
  top: 18px; right: 22px;
  z-index: 3;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(59, 130, 246, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(5, 6, 8, 0.65);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.tablet-label-val {
  position: absolute;
  bottom: 18px; right: 22px;
  z-index: 3;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  background: rgba(5, 6, 8, 0.65);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .home-hero-visual {
    order: -1;
    height: 38vh;
    max-height: 360px;
    margin: 0 auto;
    max-width: 600px;
    perspective-origin: center center;
  }
  .tablet {
    width: 100%;
    transform: translateY(-50%) rotateY(0) rotateX(2deg);
  }
  .home-hero-text { text-align: left; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary {
  background: var(--color-azul);
  color: #fff;
  box-shadow: 0 6px 24px rgba(30, 85, 170, 0.4);
}
.btn-primary:hover {
  background: var(--color-azul-claro);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(59, 130, 246, 0.5);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(59, 130, 246, 0.4);
}
.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-azul-claro);
  transform: translateY(-3px);
}
.btn-wa {
  background: var(--color-wa);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  background: #1FA851;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}
.btn-wa svg { width: 18px; height: 18px; }
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-line-2);
}
.btn-ghost:hover {
  border-color: var(--color-azul-claro);
  color: var(--color-azul-claro);
  background: rgba(59, 130, 246, 0.04);
  transform: translateY(-3px);
}
.btn-ghost:hover svg { transform: translateX(4px); }

@media (max-width: 768px) {
  .home-hero-genie { width: 80vw; opacity: 0.3; }
  .btn { padding: 14px 22px; font-size: 13px; }
}

/* ─── Quick links cards on home ─── */
.home-quick {
  padding: 100px 0 120px;
  border-top: 1px solid var(--color-line);
  position: relative;
  z-index: 2;
  background: var(--color-bg);
  overflow: hidden;
}
.home-quick > .container {
  position: relative;
  z-index: 2;
}
.home-quick-header h2,
.home-quick-header p {
  text-shadow: 0 2px 20px rgba(5, 6, 8, 0.7);
}

/* ───── AURORA CSS (Aceternity AuroraBackground adapted) ─────
   Pure CSS animated aurora using repeating linear gradients.
   Brand-tuned to blue (Impulso) instead of indigo/violet. */
@keyframes aurora-css {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}
.aurora-css-bg {
  --aurora-dark: repeating-linear-gradient(
    100deg,
    #000 0%, #000 7%, transparent 10%, transparent 12%, #000 16%
  );
  --aurora-colors: repeating-linear-gradient(
    100deg,
    #1E55AA 10%, #3B82F6 15%, #5BA3FF 20%, #B8D4FF 25%, #1E55AA 30%
  );
  position: absolute;
  inset: -10px;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(10px);
  z-index: 0;
  background-image: var(--aurora-dark), var(--aurora-colors);
  background-size: 300% 200%;
  background-position: 50% 50%, 50% 50%;
  will-change: background-position;
  overflow: hidden;
}
.aurora-css-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--aurora-dark), var(--aurora-colors);
  background-size: 200% 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  animation: aurora-css 60s linear infinite;
  pointer-events: none;
}
.aurora-css-bg.with-radial-mask {
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
}
.home-quick-header { margin-bottom: 56px; max-width: 800px; }
.home-quick-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 16px;
}
.home-quick-header h2 em {
  font-style: italic;
  color: var(--color-azul-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.home-quick-header p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 56ch;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-card {
  padding: 36px 28px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick-card:hover {
  background: var(--color-bg-3);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}
.quick-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--color-azul-claro);
}
.quick-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: 0;
}
.quick-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: auto;
}
.quick-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-azul-claro);
  letter-spacing: 0.05em;
}
.quick-arrow svg { width: 14px; height: 14px; transition: transform 0.3s; }
.quick-card:hover .quick-arrow svg { transform: translateX(4px); }

@media (max-width: 1024px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .quick-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PAGE HEADER (sub-pages)
═══════════════════════════════════════════════ */
.page-header {
  padding: calc(var(--header-h-total) + 60px) 0 60px;
  background: var(--color-bg);
  position: relative;
  border-bottom: 1px solid var(--color-line);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-azul-glow) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--color-text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.page-breadcrumb a:hover { color: var(--color-azul-claro); }
.page-breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.page-breadcrumb-current { color: var(--color-azul-claro); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.page-title em {
  font-style: italic;
  color: var(--color-azul-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.page-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 60ch;
  position: relative;
  z-index: 1;
}
.page-subtitle strong { color: var(--color-text); font-weight: 600; }

/* ═══════════════════════════════════════════════
   PAGE BODY (content sections)
═══════════════════════════════════════════════ */
.page-body { padding: 80px 0 120px; }
.section { padding: 60px 0; }
.section + .section { border-top: 1px solid var(--color-line); }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-azul-claro);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 32px;
}
.section-title em {
  font-style: italic;
  color: var(--color-azul-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.section-lead strong { color: var(--color-text); font-weight: 600; }

/* ─── Misión + Visión ─── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.mv-block { padding: 56px 0; }
.mv-block:first-child {
  padding-right: 60px;
  border-right: 1px solid var(--color-line);
}
.mv-block:last-child { padding-left: 60px; }
.mv-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-azul-claro);
  margin-bottom: 24px;
}
.mv-block h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--color-text);
  font-weight: 400;
}
.mv-block h3 em {
  font-style: italic;
  color: var(--color-azul-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.mv-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 48ch;
}

/* ─── Stats ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.stat {
  padding: 48px 24px;
  border-right: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 84px);
  line-height: 0.9;
  color: var(--color-text);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.stat-num small {
  font-size: 0.32em;
  color: var(--color-azul-claro);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-text-dim);
  font-weight: 700;
  text-transform: uppercase;
}

/* Section title variants */
.section-title-sm {
  font-size: clamp(32px, 4.5vw, 64px);
  margin-bottom: 16px;
}

/* Section header: eyebrow + title in a flex layout */
.section-head {
  display: flex;
  flex-end: end;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.section-head-text { max-width: 56ch; }
.section-head-side {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  font-weight: 600;
  text-transform: uppercase;
}

/* ─── Objetivos grid (2x2) ─── */
.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}
.obj-card {
  background: var(--color-bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease-out);
}
.obj-card:hover { background: var(--color-bg-2); }
.obj-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--color-azul-claro);
}
.obj-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.obj-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ─── Soluciones cards (2x2) ─── */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.sol-card {
  padding: 32px 28px;
  background:
    linear-gradient(165deg,
      rgba(15, 28, 54, 0.85) 0%,
      rgba(8, 14, 28, 0.92) 100%);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Border de luz superior (línea que crece al hover) */
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--color-azul), var(--color-azul-claro));
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px rgba(91, 163, 255, 0.6);
  z-index: 2;
}
/* Glow radial al hover detrás del icono */
.sol-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
  filter: blur(20px);
}
.sol-card:hover {
  border-color: rgba(91, 163, 255, 0.45);
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 32px rgba(59, 130, 246, 0.15);
}
.sol-card:hover::before { width: 100%; }
.sol-card:hover::after { opacity: 1; }

/* Esquinas decorativas tipo HUD */
.sol-card-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(91, 163, 255, 0.35);
  pointer-events: none;
  transition: border-color 0.4s, width 0.4s, height 0.4s;
}
.sol-card-corner-tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.sol-card-corner-tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.sol-card-corner-bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.sol-card-corner-br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.sol-card:hover .sol-card-corner {
  border-color: rgba(91, 163, 255, 0.9);
  width: 18px;
  height: 18px;
}

/* DEPRECATED — sol-icon ya no se usa, reemplazado por sol-card-head */
.sol-icon { display: none; }

/* Header del sol-card — solo el tag */
.sol-card-head {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(91, 163, 255, 0.18);
  position: relative;
  z-index: 2;
}
.sol-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #5BA3FF;
  text-transform: uppercase;
}
.sol-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(140, 230, 170, 0.85);
  text-transform: uppercase;
}
.sol-card-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
  animation: sol-status-pulse 2.2s ease-in-out infinite;
}
@keyframes sol-status-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* Número gigante de fondo (decorativo, semi-transparente) */
.sol-card[data-sol-num]::before {
  /* override del ::before original (la línea superior) */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-azul), var(--color-azul-claro));
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 12px rgba(91, 163, 255, 0.6);
  z-index: 3;
}

/* Número de fondo super grande — watermark */
.sol-card[data-sol-num]::after {
  /* override del ::after original (glow radial) — ahora es el número grande */
  content: attr(data-sol-num);
  position: absolute;
  bottom: -25px;
  right: -12px;
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(59, 130, 246, 0.06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
  transition: color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  opacity: 1;
  filter: none;
  background: none;
  width: auto;
  height: auto;
  left: auto;
  top: auto;
}
.sol-card:hover[data-sol-num]::after {
  color: rgba(91, 163, 255, 0.16);
  transform: scale(1.05);
}
.sol-icon svg { width: 22px; height: 22px; }
.sol-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1;
}
.sol-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ─── Servicios list ─── */
.servicios-list {
  margin-top: 40px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg,
    transparent 0%,
    rgba(91, 163, 255, 0.3) 30%,
    rgba(91, 163, 255, 0.3) 70%,
    transparent 100%) 1;
  position: relative;
}

.servicio-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 28px;
  padding: 30px 32px 30px 28px;
  position: relative;
  transition: padding 0.45s var(--ease-out);
  cursor: default;
  border-bottom: 1px solid rgba(91, 163, 255, 0.10);
  overflow: hidden;
  isolation: isolate;
}

/* Accent line vertical izquierdo con núcleo brillante */
.servicio-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(91, 163, 255, 0.9) 40%,
    rgba(91, 163, 255, 0.9) 60%,
    transparent 100%);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: all 0.5s var(--ease-out);
  box-shadow: 0 0 20px rgba(91, 163, 255, 0.6);
}

/* Background glow + grid sutil al hover */
.servicio-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(91, 163, 255, 0.10) 0%,
      rgba(91, 163, 255, 0.03) 30%,
      transparent 100%),
    radial-gradient(circle 200px at 0% 50%,
      rgba(91, 163, 255, 0.08),
      transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: -1;
}

.servicio-row:hover {
  padding-left: 42px;
  border-bottom-color: rgba(91, 163, 255, 0.3);
}
.servicio-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.servicio-row:hover::after {
  opacity: 1;
}

/* Number — tipografía display grande con accent inferior */
.servicio-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(91, 163, 255, 0.9);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  transition: color 0.45s, transform 0.45s var(--ease-out), text-shadow 0.45s;
  /* Gradient text sutil */
  background: linear-gradient(180deg,
    #5BA3FF 0%,
    #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Línea horizontal debajo del número (oculta por default, aparece al hover) */
.servicio-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5BA3FF, rgba(91, 163, 255, 0.3));
  border-radius: 2px;
  transition: width 0.55s var(--ease-out), box-shadow 0.4s;
}
.servicio-row:hover .servicio-num {
  transform: translateX(4px);
}
.servicio-row:hover .servicio-num::after {
  width: 64px;
  box-shadow: 0 0 14px rgba(91, 163, 255, 0.75);
}

.servicio-content {
  position: relative;
  padding-bottom: 4px;
}

.servicio-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.4s, transform 0.45s var(--ease-out);
  display: inline-block;
  position: relative;
}
/* Underline animado bajo el título */
.servicio-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(91, 163, 255, 0.9) 0%,
    rgba(91, 163, 255, 0.4) 70%,
    transparent 100%);
  transition: width 0.5s var(--ease-out);
  box-shadow: 0 0 8px rgba(91, 163, 255, 0.5);
}
.servicio-row:hover .servicio-title {
  color: #FFFFFF;
}
.servicio-row:hover .servicio-title::after {
  width: 100%;
}

.servicio-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  letter-spacing: 0.005em;
  transition: color 0.4s;
  max-width: 70ch;
}
.servicio-row:hover .servicio-desc {
  color: var(--color-text);
}

/* Pequeño dot pulsante junto al título al hover */
.servicio-content::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5BA3FF;
  box-shadow:
    0 0 10px rgba(91, 163, 255, 0.8),
    0 0 20px rgba(91, 163, 255, 0.4);
  opacity: 0;
  transform: scale(0);
  transition: all 0.45s var(--ease-out);
  pointer-events: none;
}
.servicio-row:hover .servicio-content::before {
  opacity: 1;
  transform: scale(1);
  animation: servicio-dot-pulse 1.8s ease-in-out infinite;
}
@keyframes servicio-dot-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(91, 163, 255, 0.8), 0 0 20px rgba(91, 163, 255, 0.4); }
  50%      { box-shadow: 0 0 14px rgba(91, 163, 255, 1),   0 0 28px rgba(91, 163, 255, 0.6); }
}

.servicio-row::before,
.servicio-row::after { pointer-events: none; }

/* Valores grid (5 items): explicit breakpoints to control card width */
.valores-grid {
  grid-template-columns: repeat(5, 1fr) !important;
}
.valores-grid .obj-card {
  padding: 32px 24px;
}
.valores-grid .obj-card h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  word-break: keep-all;
  hyphens: auto;
}
.valores-grid .obj-card p {
  font-size: 13px;
}

@media (max-width: 1100px) {
  .valores-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 700px) {
  .valores-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .valores-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .obj-grid, .sol-grid { grid-template-columns: 1fr; }
  .servicio-row { grid-template-columns: 60px 1fr 36px; gap: 16px; padding: 20px 0; }
}

/* ─── Catálogo cards ─── */
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  grid-template-areas: "featured cat2 cat3" "featured cat4 cat5";
  margin-top: 40px;
}
.cat-card {
  padding: 36px 32px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  background: var(--color-bg-3);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}
.cat-featured {
  grid-area: featured;
  background: linear-gradient(135deg, var(--color-azul) 0%, var(--color-azul-claro) 100%);
  border: none;
}
.cat-featured:hover { background: linear-gradient(135deg, var(--color-azul-claro) 0%, var(--color-azul) 100%); }
.cat-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--color-text);
  font-weight: 400;
}
.cat-featured h3 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  margin-bottom: 16px;
  color: #fff;
}
.cat-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.cat-featured p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.cat-card ul { list-style: none; margin-top: auto; }
.cat-card li {
  font-size: 12px;
  color: var(--color-text);
  padding: 4px 0;
  border-top: 1px solid var(--color-line-2);
}
.cat-card li:first-child { border-top: none; }
.cat-featured li {
  color: #fff;
  border-top-color: rgba(255,255,255,0.15);
  font-size: 14px;
  padding: 6px 0;
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — Secciones por categoría con cards de máquinas
═══════════════════════════════════════════════ */
.catalogo-cat {
  margin-bottom: 80px;
}
.catalogo-cat:last-child { margin-bottom: 0; }

.catalogo-cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}
.catalogo-cat-title-wrap { }
.catalogo-cat-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--color-azul-claro);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.catalogo-cat-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
}
.catalogo-cat-title em {
  font-style: italic;
  color: var(--color-azul-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.catalogo-cat-count {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-text-dim);
  font-weight: 600;
  text-transform: uppercase;
}
.catalogo-cat-count strong {
  color: var(--color-azul-claro);
  font-weight: 700;
}

/* Cards grid */
.maq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.maq-card {
  background: linear-gradient(180deg, var(--color-bg-2) 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out);
  max-width: 380px;
  width: 100%;
}
.maq-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 40px rgba(59, 130, 246, 0.1);
}
.maq-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.maq-card-img {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out);
  filter: drop-shadow(0 12px 28px rgba(0, 30, 80, 0.55));
}
.maq-card:hover .maq-card-img {
  transform: scale(1.06);
}

/* ─── Placeholder elegante para cards sin foto real ─── */
.maq-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(59, 130, 246, 0.45);
  text-align: center;
  padding: 24px;
  position: relative;
}
.maq-card-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.7;
  transition: transform 0.4s var(--ease-out);
}
.maq-card:hover .maq-card-placeholder svg {
  transform: scale(1.08);
  opacity: 0.95;
}
.maq-card-placeholder-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
}
.maq-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #fff;
  background: var(--color-azul);
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.maq-card-body {
  padding: 22px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.maq-card-marca {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--color-azul-claro);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.maq-card-modelo {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.maq-card-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  flex: 1;
}
.maq-card-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.maq-card-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  font-size: 11px;
  color: var(--color-azul-claro);
  font-weight: 600;
}
.maq-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.maq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
}
.maq-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.maq-btn-web {
  background: var(--color-azul);
  color: #fff;
}
.maq-btn-web:hover {
  background: var(--color-azul-claro);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 85, 170, 0.4);
}
.maq-btn-cart {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: var(--color-azul-claro);
}
.maq-btn-cart:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: var(--color-azul-claro);
  color: #fff;
  transform: translateY(-2px);
}
.maq-btn-cart.added {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.45);
  color: var(--color-wa);
}

@media (max-width: 640px) {
  .maq-grid { grid-template-columns: 1fr; }
}

/* ─── Cobertura cards ─── */
.cobertura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.cobertura-card {
  padding: 40px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-bg-2);
  transition: all 0.3s var(--ease-out);
}
.cobertura-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: var(--color-bg-3);
}
.cobertura-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-azul-claro);
  font-weight: 700;
  margin-bottom: 12px;
}
.cobertura-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.cobertura-addr { font-size: 14px; line-height: 1.6; color: var(--color-text-muted); }

/* ─── Contact form ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "form info"
    "submit info";
  gap: 32px 60px;
  align-items: start;
  margin-top: 40px;
}
.contact-form-wrapper { grid-area: form; }
.cotz-submit-wrap {
  grid-area: submit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.cotz-submit-wrap .cotz-disclaimer {
  text-align: center;
  max-width: 56ch;
  margin: 0;
}
.contact-info-list { grid-area: info; }
.contact-form-wrapper {
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 48px 48px 28px;
}
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-datetime { grid-template-columns: 1.4fr 1fr; margin-bottom: 12px; }
.form-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(59, 130, 246, 0.06);
  border-left: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 0 8px 8px 0;
}
@media (max-width: 640px) {
  .form-row-datetime { grid-template-columns: 1fr; gap: 8px; }
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--color-azul-claro);
  background: var(--color-bg-2);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 280px;
  max-width: 480px;
  padding: 18px 36px;
  background: var(--color-azul);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover { background: var(--color-azul-claro); transform: translateY(-2px); }
.form-submit svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════
   COTIZADOR — Bloques numerados + pills selectoras
═══════════════════════════════════════════════ */
.cotz-intro {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 56ch;
}
.cotz-form { display: flex; flex-direction: column; gap: 20px; }
.cotz-block {
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.25s, background 0.25s;
}
.cotz-block:hover { border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.06); }
.cotz-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(59, 130, 246, 0.2);
}
.cotz-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-azul);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.cotz-block-head h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
}
.cotz-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.cotz-pill {
  appearance: none;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-muted);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.cotz-pill:hover {
  border-color: rgba(59, 130, 246, 0.5);
  color: var(--color-text);
}
.cotz-pill.active {
  background: var(--color-azul);
  border-color: var(--color-azul);
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 85, 170, 0.3);
}
.cotz-disclaimer {
  color: var(--color-text-muted);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 14px;
  max-width: 60ch;
}
@media (max-width: 768px) {
  .cotz-block { padding: 18px; }
  .cotz-pill { font-size: 12px; padding: 8px 12px; }
  .cotz-step { width: 28px; height: 28px; font-size: 12px; }
  .cotz-block-head h4 { font-size: 17px; }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Caja unificada — mismo estilo que .contact-form-wrapper */
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 48px;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-text);
  font-weight: 400;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.contact-info-sub {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

/* ─── Bloque por sucursal en "¿Prefieres contacto directo?" ─── */
.contact-sucursal-card {
  padding: 24px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s, background 0.25s;
}
.contact-sucursal-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.06);
}
.contact-sucursal-head {
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(59, 130, 246, 0.2);
}
.contact-sucursal-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-azul-claro);
  margin-bottom: 6px;
}
.contact-sucursal-head h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}
.contact-sucursal-zona {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-azul-claro);
}
.contact-info-icon svg { width: 16px; height: 16px; }
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-val { font-size: 15px; color: var(--color-text); line-height: 1.5; }
.contact-info-item a:hover .contact-info-val { color: var(--color-azul-claro); }

@media (max-width: 1024px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-block:first-child { border-right: none; padding-right: 0; border-bottom: 1px solid var(--color-line); }
  .mv-block:last-child { padding-left: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; padding: 28px 0; border-bottom: 1px solid var(--color-line); }
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; grid-template-areas: "featured" "cat2" "cat3" "cat4" "cat5"; }
  .cobertura-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Contact grid: solo se apila en pantallas realmente angostas */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "submit"
      "info";
    /* row-gaps específicos: form↔submit = 24px, submit↔info = 56px */
    row-gap: 24px;
  }
  .contact-grid > .contact-info-list { margin-top: 32px; }
  .contact-form-wrapper { padding: 32px 32px 22px; }
  .contact-info-list { padding: 32px; }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--color-bg);
  padding: 60px 0 20px;
  border-top: 1px solid var(--color-line);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.site-footer-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
}
.site-footer-aurora canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.site-footer > .container {
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-line);
}
/* Contacto + horario fusionados: 2 cuadros largos (Cabos / Mexicali) */
.footer-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.footer-branches .footer-sucursal-block { margin-bottom: 0; }
@media (max-width: 760px) {
  .footer-branches { grid-template-columns: 1fr; }
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 12px;
  margin-left: -32px;
  filter: drop-shadow(0 12px 40px rgba(59, 130, 246, 0.18));
  transition: filter 0.3s, transform 0.3s var(--ease-out);
}
.footer-logo-link:hover {
  filter: drop-shadow(0 12px 40px rgba(59, 130, 246, 0.35));
  transform: translateY(-2px);
}
.footer-logo { width: 320px; height: auto; }
@media (max-width: 1024px) {
  .footer-logo { width: 240px; }
  .footer-logo-link { margin-left: -16px; }
}
.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 40ch;
  margin-bottom: 20px;
  margin-top: 4px;
}
.footer-social { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.25s var(--ease-out);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: var(--color-azul);
  color: #fff;
  border-color: var(--color-azul);
  transform: translateY(-3px);
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  padding-left: 12px;
  position: relative;
  text-transform: uppercase;
}
.footer-col-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, #5BA3FF, #1E55AA);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(91, 163, 255, 0.4);
}
/* ═══════════════════════════════════════════════
   FOOTER CARDS — Premium glassmorphism, brand blue
═══════════════════════════════════════════════ */

/* Cards de sucursal — sólidas con vidrio + borde luminoso */
.footer-sucursal-block {
  padding: 16px 20px;
  background: linear-gradient(165deg,
    rgba(11, 22, 44, 0.92) 0%,
    rgba(6, 12, 26, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 14px;
  margin-bottom: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.footer-sucursal-block::before {
  /* Línea acento azul brillante arriba */
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(91, 163, 255, 0.6),
    transparent);
  opacity: 0.7;
  transition: opacity 0.35s;
}
.footer-sucursal-block:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 163, 255, 0.4);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(59, 130, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-sucursal-block:hover::before { opacity: 1; }

/* Tag de sucursal — pill con pin */
.footer-sucursal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #BCD3FF;
  margin-bottom: 12px;
  padding: 4px 11px 4px 9px;
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.18) 0%,
    rgba(30, 85, 170, 0.18) 100%);
  border: 1px solid rgba(91, 163, 255, 0.3);
  border-radius: 999px;
  text-transform: uppercase;
  position: relative;
}
.footer-sucursal-tag::before {
  /* Punto verde "online/active" sutil */
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5BA3FF;
  box-shadow: 0 0 8px rgba(91, 163, 255, 0.8);
  margin-right: 2px;
}

/* Items dentro de la card — spacing más compacto */
.footer-sucursal-block .footer-link {
  margin-bottom: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-sucursal-block .footer-link:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.footer-sucursal-block .footer-link:first-of-type {
  padding-top: 0;
}

.footer-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
  transition: color 0.25s, transform 0.25s;
  border-radius: 8px;
}
.footer-link[href]:hover {
  color: var(--color-azul-claro);
}

/* Ícono dentro de wrapper circular azul */
.footer-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  padding: 8px;
  color: var(--color-azul-claro);
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 9px;
  margin-top: 0;
  transition: all 0.25s var(--ease-out);
  box-sizing: border-box;
}
.footer-link:hover .footer-icon {
  background: rgba(59, 130, 246, 0.20);
  border-color: rgba(91, 163, 255, 0.5);
  transform: scale(1.05);
}
.footer-icon-wa {
  color: var(--color-wa);
  background: rgba(37, 211, 102, 0.10);
  border-color: rgba(37, 211, 102, 0.25);
}
.footer-link:hover .footer-icon-wa {
  background: rgba(37, 211, 102, 0.20);
  border-color: rgba(37, 211, 102, 0.5);
}

.footer-link-label {
  font-size: 9px;
  letter-spacing: 0.20em;
  color: var(--color-text-dim);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-link-val {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.footer-link[href]:hover .footer-link-val { color: #B8D4FF; }

/* Badge "Garantía hasta 1 año" — más prominente con glow */
.footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  padding: 11px 16px;
  background: linear-gradient(135deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(30, 85, 170, 0.20) 100%);
  border: 1px solid rgba(91, 163, 255, 0.35);
  border-radius: 10px;
  color: #BCD3FF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.footer-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(91, 163, 255, 0.15),
    transparent);
  transition: left 0.6s var(--ease-out);
}
.footer-badge:hover::before { left: 100%; }
.footer-badge:hover {
  border-color: rgba(91, 163, 255, 0.6);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
  color: #FFFFFF;
}
.footer-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5BA3FF;
  filter: drop-shadow(0 0 6px rgba(91, 163, 255, 0.5));
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.02em;
}
.footer-bottom-right { display: flex; gap: 12px; }
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.footer-btn svg { width: 14px; height: 14px; }
.footer-btn:hover {
  border-color: var(--color-azul-claro);
  color: var(--color-azul-claro);
  background: rgba(59, 130, 246, 0.05);
}

/* OrNet credit (very small, subtle) */
.footer-ornet {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 10px;
  color: var(--color-text-faint, #333);
  letter-spacing: 0.05em;
}
.footer-ornet a {
  color: var(--color-text-dim);
  transition: color 0.2s;
}
.footer-ornet a:hover { color: var(--color-azul-claro); }
.footer-ornet-sep { color: #2A2F38; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   CARRITO — Lista de items + estado vacío
═══════════════════════════════════════════════ */
.cart-empty {
  text-align: center;
  padding: 80px 24px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px dashed rgba(59, 130, 246, 0.25);
  border-radius: 16px;
}
.cart-empty svg { margin-bottom: 16px; }
.cart-empty h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 6px;
}
.cart-empty p { color: var(--color-text-muted); font-size: 14px; }

.cart-list-wrap { margin-bottom: 0; }
.cart-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-list-head h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0;
}
.cart-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 100px;
  color: var(--color-text-muted);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-clear:hover {
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.4);
}

/* Layout: lista + aside con resumen */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

.cart-list { display: flex; flex-direction: column; gap: 14px; }

/* Item del carrito — estilo Amazon con thumbnail */
.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  padding: 18px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.cart-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
}
.cart-item-thumb {
  position: relative;
  width: 110px;
  height: 110px;
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
    rgba(255,255,255,0.02);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,30,80,0.4));
}
.cart-item-img-placeholder {
  color: rgba(59, 130, 246, 0.4);
}
.cart-item-img-placeholder svg { width: 40px; height: 40px; }

.cart-item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.cart-item-id {
  font-size: 10px;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cart-item-remove-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
  align-self: flex-start;
}
.cart-item-remove-link svg { width: 12px; height: 12px; }
.cart-item-remove-link:hover { color: #ff6b6b; }

.cart-item-qty-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
}
.cart-item-qty-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-line);
  border-radius: 100px;
  padding: 4px;
}
.cart-item-qty .qty-btn {
  width: 28px; height: 28px;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.cart-item-qty .qty-btn:hover { background: var(--color-azul); color: #fff; }
.cart-item-qty input {
  width: 36px;
  border: none;
  background: transparent;
  color: var(--color-text);
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  -moz-appearance: textfield;
}
.cart-item-qty input::-webkit-outer-spin-button,
.cart-item-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Aside resumen */
.cart-aside {
  position: sticky;
  top: 100px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(59,130,246,0.06), rgba(59,130,246,0.02));
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
}
.cart-aside h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 16px 0;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(59, 130, 246, 0.25);
}
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-summary-label {
  font-size: 13px;
  color: var(--color-text-muted);
}
.cart-summary-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}
.cart-aside-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.cart-aside-link {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.cart-aside-link:hover { color: var(--color-azul-claro); }

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "thumb info"
      "thumb qty";
    gap: 12px;
  }
  .cart-item-thumb { width: 80px; height: 80px; grid-area: thumb; }
  .cart-item-info { grid-area: info; }
  .cart-item-qty-block { grid-area: qty; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════
   CONTROL DEL CARRITO EN CADA CARD DEL CATÁLOGO
   - Estado 1: Botón "Agregar al carrito"
   - Estado 2: Selector − N + (cuando ya está agregado)
═══════════════════════════════════════════════ */
.maq-cart-control { width: 100%; }
.maq-cart-control .maq-btn-cart {
  width: 100%;
  justify-content: center;
}

.maq-qty-control {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(59,130,246,0.18), rgba(59,130,246,0.08));
  border: 1px solid var(--color-azul);
  border-radius: 100px;
  padding: 4px;
  height: 44px;
  box-shadow: 0 4px 16px rgba(30, 85, 170, 0.25);
}
.maq-qty-btn {
  appearance: none;
  border: none;
  background: var(--color-azul);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.maq-qty-btn:hover { background: var(--color-azul-claro); transform: scale(1.06); }
.maq-qty-btn:active { transform: scale(0.95); }
.maq-qty-btn svg { width: 14px; height: 14px; }
.maq-qty-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 8px;
}
.maq-qty-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.maq-qty-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-azul-claro);
  margin-top: 2px;
}

/* Animación pop del badge del header */
@keyframes cartBadgePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.cart-badge-pop { animation: cartBadgePop 0.35s var(--ease-out); }

/* ═══════════════════════════════════════════════
   VARIACIONES DE FONDO POR CUADRO
   Paleta: negro, azul oscuro, navy, gradiente sutil
   Body se mantiene negro plano como antes
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   FRANJAS DE SECCIÓN — variación a NIVEL DE BLOQUE, no de card
   Los cards individuales quedan en su negro/gris default.
   Lo que cambia son las "franjas" horizontales de cada página.
═══════════════════════════════════════════════ */

body { background: var(--color-bg); }

/* ─── HOME ─── */
.home-hero-v2 {
  /* La imagen YA tiene el contraste OLED procesado en PIL — overlay mínimo */
  background-image:
    /* Solo fade inferior para transición suave a la siguiente sección */
    linear-gradient(180deg,
      transparent 65%,
      rgba(0, 0, 0, 0.55) 88%,
      #000000 100%),
    url('../assets/fondos/home-hero-desktop.jpg?v=7');
  background-size: cover, cover;
  background-position: center center, center center;
  background-repeat: no-repeat;
  background-color: #000;
}
@media (max-width: 768px) {
  .home-hero-v2 {
    background-image:
      linear-gradient(180deg,
        transparent 60%,
        rgba(0, 0, 0, 0.65) 85%,
        #000000 100%),
      url('../assets/fondos/home-hero-mobile.jpg?v=7');
  }
}
.home-quick {
  /* franja "Explora la web" — starfield warp Canvas 2D */
  background:
    radial-gradient(ellipse 900px 300px at 50% 50%, rgba(30, 85, 170, 0.12) 0%, transparent 70%),
    #000000 !important;
  position: relative;
  overflow: hidden;
}

/* Canvas del starfield — cubre toda la sección detrás de las cards */
.home-quick-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* Asegurar que el contenido vaya por encima del canvas */
.home-quick > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .home-quick {
    /* En móvil sin imagen — solo gradiente azul (más ligero) */
    background:
      radial-gradient(ellipse 800px 400px at 15% 0%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 700px 350px at 85% 100%, rgba(91, 163, 255, 0.14) 0%, transparent 60%),
      linear-gradient(180deg, #0B1A38 0%, #0F2147 50%, #0B1A38 100%) !important;
  }
}

/* Línea brillante superior (acento) */
.home-quick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.6) 30%,
    rgba(91, 163, 255, 0.9) 50%,
    rgba(59, 130, 246, 0.6) 70%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.5);
  z-index: 3;
}
/* Línea brillante inferior + orbes luminosos */
.home-quick::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.5) 30%,
    rgba(91, 163, 255, 0.8) 50%,
    rgba(59, 130, 246, 0.5) 70%,
    transparent 100%);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
  z-index: 3;
}
/* Orbes flotantes brillantes dentro de la sección */
.home-quick > .container::before,
.home-quick > .container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.home-quick > .container::before {
  top: -40px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
  animation: hq-orb-1 14s ease-in-out infinite;
}
.home-quick > .container::after {
  bottom: -60px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(91, 163, 255, 0.28) 0%, transparent 70%);
  animation: hq-orb-2 18s ease-in-out infinite;
}
@keyframes hq-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.15); }
}
@keyframes hq-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.1); }
}
/* Grid sutil de fondo */
.home-quick > .container {
  position: relative;
}
.home-quick > .container > * {
  position: relative;
  z-index: 2;
}

/* ─── PÁGINAS INTERNAS ─── */
/* Header de página — gradiente sutil azul oscuro */
.page-header {
  background: linear-gradient(180deg, #0A1428 0%, var(--color-bg) 100%) !important;
}
.page-body { background: var(--color-bg); }

/* Secciones alternadas dentro de .page-body — franjas distintas */
.page-body > .section:nth-of-type(odd) {
  background: var(--color-bg);
}
.page-body > .section:nth-of-type(even) {
  background: linear-gradient(180deg, #080F1F 0%, #0A1428 100%);
  position: relative;
}
/* Líneas finas que separan franjas */
.page-body > .section:nth-of-type(even)::before,
.page-body > .section:nth-of-type(even)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.18), transparent);
}
.page-body > .section:nth-of-type(even)::before { top: 0; }
.page-body > .section:nth-of-type(even)::after { bottom: 0; }

/* ─── CATÁLOGO (catalogo.html) ─── alternancia entre categorías */
.page-body > .catalogo-cat:nth-of-type(even) {
  background: linear-gradient(180deg, #080F1F 0%, #0A1428 100%);
  position: relative;
}
.page-body > .catalogo-cat:nth-of-type(even)::before,
.page-body > .catalogo-cat:nth-of-type(even)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.18), transparent);
}
.page-body > .catalogo-cat:nth-of-type(even)::before { top: 0; }
.page-body > .catalogo-cat:nth-of-type(even)::after { bottom: 0; }

/* ─── FOOTER ─── Aurora brand + imagen OLED-style ─── */
.site-footer {
  background: #000 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Capa base: imagen con mix-blend-mode SCREEN → píxeles oscuros se vuelven transparentes (efecto OLED) */
.footer-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/fondos/footer-bg.jpg?v=7');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.7;
  filter: contrast(1.05) brightness(0.92) saturate(1.05);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Viñeta sutil — solo los bordes lejanos van a negro, sin ahogar el centro */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 110% 120% at 50% 50%,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.35) 90%,
    rgba(0, 0, 0, 0.55) 100%);
}

/* Contenedor del aurora */
.footer-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* Capa 1 — Gradientes radiales pulsantes muy sutiles */
.footer-aurora-grad {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, var(--aurora-color1, rgba(59, 130, 246, 0.10)) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, var(--aurora-color2, rgba(30, 85, 170, 0.10)) 0%, transparent 55%);
  background-size: 100% 100%;
  opacity: 0.3;
  animation: footer-aurora-pulse 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes footer-aurora-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.75; transform: scale(1.04); }
}

/* Capa 2 — Blobs azules muy sutiles */
.footer-aurora-blobs {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.45;
}
.footer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.footer-blob-1 {
  top: -20%;
  left: -15%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  animation: footer-blob-1 30s ease-in-out infinite alternate;
}
.footer-blob-2 {
  bottom: -25%;
  right: -15%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(91, 163, 255, 0.15) 0%, transparent 70%);
  animation: footer-blob-2 40s ease-in-out infinite alternate;
}
.footer-blob-3 {
  top: 25%;
  left: 35%;
  width: 35%;
  height: 50%;
  background: radial-gradient(circle, rgba(30, 85, 170, 0.13) 0%, transparent 70%);
  animation: footer-blob-3 50s ease-in-out infinite alternate;
}
@keyframes footer-blob-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.2); }
}
@keyframes footer-blob-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -30px) scale(1.3); }
}
@keyframes footer-blob-3 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(40px, -40px) rotate(360deg); }
}

/* Capa 3 — Estrellas titilando */
.footer-aurora-stars {
  position: absolute;
  inset: 0;
}
.footer-aurora-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
  animation: footer-star-twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes footer-star-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50%      { opacity: var(--peak, 0.7); transform: scale(1.1); }
}

/* Aseguramos que el contenido del footer quede por encima del aurora */
.site-footer > .container { position: relative; z-index: 2; }

/* Respeta reduce-motion */
@media (prefers-reduced-motion: reduce) {
  .footer-aurora-grad,
  .footer-blob,
  .footer-aurora-stars span {
    animation: none !important;
  }
}

/* ─── LEGALES ─── sutil acento por sección */
.legal-section:nth-of-type(even) {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.03) 0%, transparent 100%);
  padding-left: 16px;
  border-radius: 0 8px 8px 0;
  border-left: 2px solid rgba(59, 130, 246, 0.15);
}

/* ═══════════════════════════════════════════════
   DECORACIÓN — INFORMACIÓN: Números gigantes en MV
═══════════════════════════════════════════════ */
/* Más aire para los bloques (Visión más cerca del cuadro) */
.mv-grid { margin-top: 56px; }
.mv-block {
  position: relative;
  overflow: visible;
  padding: 56px 0;
  min-height: 0;
}
.mv-block:first-child { padding-right: 60px; }
.mv-block:last-child  { padding-left: 60px; }

.mv-block[data-bignum]::before {
  content: attr(data-bignum);
  position: absolute;
  top: 50px;
  font-family: var(--font-display);
  font-size: clamp(140px, 16vw, 220px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(59, 130, 246, 0.06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
  white-space: nowrap;
}
/* Misión — número arriba-izquierda */
.mv-block[data-bignum="01"]::before {
  left: -10px;
  top: 30px;
}
/* Visión — número arriba-derecha */
.mv-block[data-bignum="02"]::before {
  right: -10px;
  top: 30px;
}
.mv-block > * { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .mv-block { padding: 56px 0; min-height: 0; }
  .mv-block:first-child { padding-right: 0; }
  .mv-block:last-child { padding-left: 0; }
  .mv-block[data-bignum]::before {
    font-size: clamp(120px, 30vw, 180px);
    opacity: 0.6;
  }
}

/* ═══════════════════════════════════════════════
   DECORACIÓN — INFORMACIÓN: Timeline vertical en Objetivos
═══════════════════════════════════════════════ */
.obj-grid.obj-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 56px;
  padding-left: 52px;
  position: relative;
  max-width: 920px;
}

/* Línea principal — atraviesa toda la altura del grid; bordes en fade
   para que parezca empezar/terminar en el primer/último dot */
.obj-grid.obj-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;       /* center dot @ 24, line width 2 → 23-25 */
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(91, 163, 255, 0.10) 4%,
    rgba(91, 163, 255, 0.40) 12%,
    rgba(91, 163, 255, 0.40) 88%,
    rgba(91, 163, 255, 0.10) 96%,
    transparent 100%);
  border-radius: 2px;
  z-index: 0;
}

/* Beam de "energía" recorriendo la línea */
.obj-grid.obj-timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 21px;
  width: 6px;
  border-radius: 4px;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 35%,
    rgba(91, 163, 255, 0.6) 50%,
    transparent 65%,
    transparent 100%);
  background-size: 100% 220px;
  background-repeat: no-repeat;
  animation: timeline-energy-flow 5s linear infinite;
  filter: blur(2.5px);
  pointer-events: none;
  z-index: 0;
}
@keyframes timeline-energy-flow {
  0%   { background-position: 0 -220px; }
  100% { background-position: 0 calc(100% + 220px); }
}

/* CADA ITEM ES UN BLOQUE — la bolita marca el CENTRO del bloque */
.obj-grid.obj-timeline .obj-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(8, 14, 28, 0.78) 0%,
    rgba(5, 11, 22, 0.72) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(91, 163, 255, 0.14);
  border-radius: 10px;
  padding: 24px 28px;
  margin-top: 0;
  z-index: 1;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.obj-grid.obj-timeline .obj-card:hover {
  background: linear-gradient(135deg,
    rgba(12, 22, 42, 0.85) 0%,
    rgba(8, 16, 32, 0.80) 100%);
  border-color: rgba(91, 163, 255, 0.32);
  transform: translateX(4px);
}
.obj-grid.obj-timeline .obj-card + .obj-card {
  margin-top: 0;
  padding-top: 24px;
}

/* Dot — CENTRADO VERTICALMENTE en el bloque (señala el centro del card) */
.obj-grid.obj-timeline .obj-card::before {
  content: "";
  position: absolute;
  left: -34px;
  top: calc(50% - 6px);   /* centro vertical (height/2) */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #9FC5FF 0%, #5BA3FF 50%, #2E6AC8 100%);
  border: none;
  box-shadow:
    0 0 6px rgba(91, 163, 255, 0.40),
    0 0 14px rgba(59, 130, 246, 0.22);
  z-index: 3;
  animation: timeline-dot-pulse 2.8s ease-in-out infinite;
}
/* Conector horizontal: del dot hacia el card */
.obj-grid.obj-timeline .obj-card::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(91, 163, 255, 0.4) 0%,
    rgba(91, 163, 255, 0.15) 100%);
  z-index: 2;
}

.obj-grid.obj-timeline .obj-card:nth-child(2)::before { animation-delay: 0.65s; }
.obj-grid.obj-timeline .obj-card:nth-child(3)::before { animation-delay: 1.3s; }
.obj-grid.obj-timeline .obj-card:nth-child(4)::before { animation-delay: 1.95s; }

@keyframes timeline-dot-pulse {
  0%, 100% {
    box-shadow:
      0 0 5px rgba(91, 163, 255, 0.30),
      0 0 10px rgba(59, 130, 246, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 8px rgba(91, 163, 255, 0.45),
      0 0 16px rgba(59, 130, 246, 0.25);
    transform: scale(1.05);
  }
}
@keyframes timeline-halo-expand {
  0%   { transform: scale(0.7); opacity: 0.9; border-color: rgba(91, 163, 255, 0.6); }
  100% { transform: scale(1.6); opacity: 0;   border-color: rgba(91, 163, 255, 0); }
}
.obj-grid.obj-timeline .obj-num {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color-azul-claro);
  font-weight: 700;
}
.obj-grid.obj-timeline .obj-card h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  margin-top: 6px;
  margin-bottom: 8px;
}
.obj-grid.obj-timeline .obj-card p {
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════
   DECORACIÓN — INFORMACIÓN: Soluciones · BLUEPRINT FRAME
   Frame estilo plano técnico (sin shader genérico):
   grid CSS + scan azul + ejes + esquinas marcadas.
═══════════════════════════════════════════════ */
.section-blueprint {
  position: relative;
  padding: 84px 56px 76px;
  margin: 64px 0;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  background:
    /* viñeta interna */
    radial-gradient(ellipse 100% 70% at 50% 50%, transparent 0%, rgba(2, 6, 14, 0.55) 100%),
    /* base navy profundo */
    linear-gradient(180deg, #03080F 0%, #050C18 50%, #03080F 100%);
  border: 1px solid rgba(91, 163, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(91, 163, 255, 0.04),
    0 24px 90px -20px rgba(30, 85, 170, 0.45),
    inset 0 0 60px rgba(30, 85, 170, 0.08);
}

/* Capa 1 — Grid de planos (cuadrícula tipo CAD) */
.bp-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    /* mayor — cada 80px */
    linear-gradient(rgba(91, 163, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 163, 255, 0.10) 1px, transparent 1px),
    /* menor — cada 16px */
    linear-gradient(rgba(91, 163, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 163, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  background-position: 0 0;
  mask-image:
    radial-gradient(ellipse 90% 85% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse 90% 85% at 50% 50%, #000 30%, transparent 100%);
  opacity: 0.85;
}

/* Capa 2 — Scan removida a petición del usuario */
.bp-scan { display: none; }

/* Capa 3 — Ejes brand (cruz central tenue) */
.bp-axes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(156, 222, 255, 0.10), rgba(156, 222, 255, 0.10)),
    linear-gradient(rgba(156, 222, 255, 0.10), rgba(156, 222, 255, 0.10));
  background-size: 100% 1px, 1px 100%;
  background-position: 0 50%, 50% 0;
  background-repeat: no-repeat;
}

/* Capa 4 — Esquinas L removidas a petición del usuario */
.bp-corner { display: none; }

/* Capa 5 — Etiquetas técnicas */
.bp-label {
  position: absolute;
  z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(156, 222, 255, 0.55);
  pointer-events: none;
}
.bp-label-tl { top: 22px; left: 56px; }
.bp-label-br { bottom: 22px; right: 56px; }

/* Tipografía del bloque (encima de las capas 0–2) */
.section-blueprint > .section-eyebrow,
.section-blueprint > .section-title,
.section-blueprint > .sol-grid {
  position: relative;
  z-index: 3;
}
.section-blueprint .section-eyebrow { margin-bottom: 14px; }
.section-blueprint .section-title { margin-bottom: 28px; }

/* Grid de cards DENTRO del frame — sin corner brackets */
.section-blueprint .sol-grid {
  margin-top: 36px;
  gap: 22px;
}
.section-blueprint .sol-card {
  background: rgba(6, 12, 22, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(91, 163, 255, 0.22);
  padding: 36px 32px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 12px 40px -12px rgba(0, 0, 0, 0.6);
}
.section-blueprint .sol-card:hover {
  border-color: rgba(91, 163, 255, 0.45);
  background: rgba(10, 18, 36, 0.88);
}
/* Ocultar corner brackets internos de las cards (legado HTML) */
.section-blueprint .sol-card .sol-card-corner { display: none !important; }

@media (max-width: 768px) {
  .section-blueprint {
    padding: 72px 22px 64px;
    margin: 40px 0;
    border-radius: 6px;
  }
  .section-blueprint .sol-grid { margin-top: 28px; gap: 18px; }
  .section-blueprint .sol-card { padding: 26px 22px; }
  .bp-label { display: none; }
  .bp-corner { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════
   SECTION PANEL — wrapper oscuro para secciones que
   necesitan separarse del fondo de la página (ej. servicios)
   Capas (bottom→top):
     0. background  → navy MUY oscuro (casi negro con tinte azul)
     0. canvas LightRays  → shader interno
     1. content (eyebrow, title, list)
═══════════════════════════════════════════════ */
.section-panel {
  position: relative;
  padding: 72px 56px 64px;
  margin: 56px 0;
  border-radius: 8px;
  /* Azul mucho más oscuro — casi negro con tinte navy */
  background:
    radial-gradient(ellipse 100% 70% at 50% 50%, transparent 0%, rgba(0, 1, 4, 0.55) 100%),
    linear-gradient(180deg, #02050C 0%, #010308 100%);
  border: 1px solid rgba(91, 163, 255, 0.16);
  box-shadow:
    0 24px 80px -28px rgba(30, 85, 170, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  isolation: isolate;
  overflow: hidden;
}

/* Canvas LightRays como fondo INTERNO del panel */
.section-panel > .section-panel-rays {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.85;
  mix-blend-mode: screen;
}

/* Contenido del panel encima del shader */
.section-panel > .section-eyebrow,
.section-panel > .section-title,
.section-panel > .servicios-list,
.section-panel > .sol-grid,
.section-panel > .stats-grid,
.section-panel > .mv-grid,
.section-panel > .obj-grid {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-panel {
    padding: 56px 22px 52px;
    margin: 40px 0;
  }
}

/* ═══════════════════════════════════════════════
   DECORACIÓN — CATÁLOGO: Banda de marcas (marquee)
═══════════════════════════════════════════════ */
/* Cuando el page-header está seguido del brand-marquee, quitar su border-bottom */
.page-header:has(+ .brand-marquee) { border-bottom: none !important; }

/* ═══════════════════════════════════════════════
   INFORMACIÓN PAGE — Fondo de página completa
   Capas (bottom→top):
     0. page-body-bg-image  → 2.png en tamaño natural (100% auto)
     0. light-rays-canvas   → shader azul full-section
     1. page-body-veil      → velo oscuro para legibilidad
     2. .container          → contenido
═══════════════════════════════════════════════ */
body.page-info .page-body {
  position: relative;
  background-color: var(--color-bg);
  isolation: isolate;
  overflow: hidden;
}

/* Capa 0 — Imagen 2.png
   Solución: background-attachment FIXED + cover.
   El navegador dimensiona la imagen al VIEWPORT (no al alto del page-body),
   así nunca se "corta" aunque la sección mida 3700px de alto.
   La imagen queda anclada al viewport → efecto parallax sutil al scroll. */
.page-body-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/fondos/info-body-bg-2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.50;
  will-change: transform;
}

/* Capa 0 — Nubes ambient brand (radiales animadas, drift suave) */
.page-body-clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 12% 10%,  rgba(91, 163, 255, 0.14), transparent 65%),
    radial-gradient(ellipse 800px 600px at 88% 28%,  rgba(30, 85, 170, 0.16),  transparent 70%),
    radial-gradient(ellipse 1000px 550px at 25% 55%, rgba(59, 130, 246, 0.10), transparent 70%),
    radial-gradient(ellipse 750px 500px at 78% 78%,  rgba(91, 163, 255, 0.13), transparent 65%),
    radial-gradient(ellipse 850px 520px at 40% 92%,  rgba(30, 85, 170, 0.12),  transparent 70%);
  mix-blend-mode: screen;
  animation: page-body-clouds-drift 32s ease-in-out infinite alternate;
  filter: blur(40px);
  opacity: 0.85;
}
@keyframes page-body-clouds-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(28px, -18px) scale(1.04); }
  100% { transform: translate(-22px, 14px) scale(1.06); }
}

/* Capa 0 — Living Nebula (Three.js) full page-body */
.living-nebula-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
  overflow: hidden;
}
.living-nebula-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Capa 1 — Velo oscuro para legibilidad + OLED contrast boost */
.page-body-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, transparent 0%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg,
      rgba(1, 3, 8, 0.55) 0%,
      rgba(1, 3, 8, 0.20) 40%,
      rgba(1, 3, 8, 0.35) 80%,
      rgba(1, 3, 8, 0.70) 100%);
}

/* Capa 1 — Grain SVG (efecto OLED: micro-textura que rompe los blacks planos) */
.page-body-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* Mobile: fixed attachment no funciona bien en iOS → fallback */
@media (max-width: 768px) {
  .page-body-bg-image {
    background-attachment: scroll;
    background-size: cover;
    background-position: center top;
  }
  .page-body-clouds { filter: blur(28px); }
}

/* Respeta prefers-reduced-motion: detener drift de nubes */
@media (prefers-reduced-motion: reduce) {
  .page-body-clouds { animation: none; }
}

/* Container y secciones sobre las capas */
body.page-info .page-body > .container,
body.page-info .page-body > .section {
  position: relative;
  z-index: 2;
}

/* ───── Glowing dividers — líneas brillantes brand entre secciones ───── */
.brand-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0;
  border: none;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 10%,
    rgba(91, 163, 255, 0.45) 30%,
    rgba(91, 163, 255, 0.75) 50%,
    rgba(91, 163, 255, 0.45) 70%,
    transparent 90%,
    transparent 100%);
  box-shadow:
    0 0 12px rgba(91, 163, 255, 0.3),
    0 0 24px rgba(59, 130, 246, 0.15);
  pointer-events: none;
  z-index: 2;
}
/* Glow expandido encima y debajo */
.brand-divider::before,
.brand-divider::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  height: 1px;
  background: radial-gradient(ellipse 60% 100% at center,
    rgba(91, 163, 255, 0.35),
    transparent);
  pointer-events: none;
}
.brand-divider::before { top: -6px; height: 6px; }
.brand-divider::after  { bottom: -6px; height: 6px; }

/* Dot pulsante en el centro */
.brand-divider-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5BA3FF;
  box-shadow:
    0 0 8px rgba(91, 163, 255, 0.9),
    0 0 18px rgba(59, 130, 246, 0.5);
  animation: brand-divider-pulse 2.4s ease-in-out infinite;
}
@keyframes brand-divider-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.85); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}

/* Variante con margen vertical (más respiro) */
.brand-divider-spaced {
  margin: 80px 0 64px;
}
@media (max-width: 768px) {
  .brand-divider-spaced { margin: 56px 0 48px; }
}

/* ═══════════════════════════════════════════════
   PAGE HEADER con shader procedural + imagen (informacion.html)
═══════════════════════════════════════════════ */
.page-header-shader {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
  border-bottom: none !important;
  /* Más alto para que se vea bien el shader + imagen */
  min-height: 78vh;
  padding-top: calc(var(--header-h-total) + 80px);
  padding-bottom: 120px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-header-shader {
    min-height: 65vh;
    padding-top: calc(var(--header-h-total) + 40px);
    padding-bottom: 80px;
  }
}
/* Capa 1 — imagen de fondo con mix-blend-mode: screen (OLED) */
.page-header-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/fondos/info-header-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.92);
  mix-blend-mode: screen;
  pointer-events: none;
}
/* Capa 2 — shader procedural animado (más brillante/visible) */
.page-header-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.95;
  mix-blend-mode: screen;
  pointer-events: none;
}
/* Capa 3 — overlay oscuro radial para legibilidad del texto */
.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Spot oscuro central donde va el texto */
    radial-gradient(ellipse 70% 100% at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      transparent 100%),
    /* Fade inferior hacia la siguiente sección */
    linear-gradient(180deg,
      transparent 50%,
      rgba(0, 0, 0, 0.55) 90%,
      var(--color-bg) 100%);
}
/* Contenido por encima de todas las capas */
.page-header-shader > .container {
  position: relative;
  z-index: 3;
}

.brand-marquee {
  position: relative;
  padding: 16px 0;
  background:
    radial-gradient(ellipse 1200px 180px at 50% 50%, rgba(59, 130, 246, 0.10) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-bg) 0%, #060C1A 50%, var(--color-bg) 100%);
  overflow: hidden;
  box-sizing: border-box;
}

/* ───── BORDES DECORATIVOS — Líneas con corredores luminosos animados ───── */
.brand-marquee-border {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91, 163, 255, 0.15) 15%,
    rgba(91, 163, 255, 0.35) 50%,
    rgba(91, 163, 255, 0.15) 85%,
    transparent 100%);
  overflow: hidden;
}
.brand-marquee-border-top    { top: 0; }
.brand-marquee-border-bottom { bottom: 0; }

/* Línea de luz que recorre el borde (igual estilo en ambos lados pero direcciones opuestas) */
.brand-marquee-runner {
  position: absolute;
  top: -1px;
  left: -200px;
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg,
    transparent,
    rgba(91, 163, 255, 0.0) 5%,
    rgba(91, 163, 255, 0.9) 40%,
    rgba(255, 255, 255, 1) 50%,
    rgba(91, 163, 255, 0.9) 60%,
    transparent 100%);
  box-shadow:
    0 0 12px rgba(91, 163, 255, 0.8),
    0 0 24px rgba(91, 163, 255, 0.4);
  filter: blur(0.3px);
  animation: brand-runner-slide 7s linear infinite;
}
.brand-marquee-runner-reverse {
  animation: brand-runner-slide-reverse 7s linear infinite;
  animation-delay: 3.5s;
}
@keyframes brand-runner-slide {
  0%   { left: -220px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes brand-runner-slide-reverse {
  0%   { left: 100%; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: -220px; opacity: 0; }
}

/* Puntos de anclaje brillantes en las 4 esquinas */
.brand-marquee-border::before,
.brand-marquee-border::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5BA3FF;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 8px rgba(91, 163, 255, 0.9),
    0 0 16px rgba(91, 163, 255, 0.5);
  animation: brand-corner-pulse 2.6s ease-in-out infinite;
}
.brand-marquee-border::before { left: 8%; }
.brand-marquee-border::after  { right: 8%; transform: translate(50%, -50%); animation-delay: 1.3s; }
@keyframes brand-corner-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.7); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}
.brand-marquee-border-bottom::before,
.brand-marquee-border-bottom::after {
  animation-delay: 1.3s;
}
.brand-marquee-border-bottom::after { animation-delay: 0s; }

/* Sparkle particles sutiles distribuidos */
.brand-marquee-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.brand-marquee-sparkles::before,
.brand-marquee-sparkles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 28%, rgba(91, 163, 255, 0.9), transparent),
    radial-gradient(1px 1px at 28% 65%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 45% 22%, rgba(59, 130, 246, 0.85), transparent),
    radial-gradient(1px 1px at 62% 75%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 78% 35%, rgba(91, 163, 255, 0.95), transparent),
    radial-gradient(1px 1px at 92% 68%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 18% 80%, rgba(59, 130, 246, 0.75), transparent),
    radial-gradient(1px 1px at 38% 12%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 70% 18%, rgba(91, 163, 255, 0.75), transparent),
    radial-gradient(1px 1px at 88% 88%, rgba(255, 255, 255, 0.7), transparent);
  animation: brand-sparkle-twinkle 4s ease-in-out infinite;
}
.brand-marquee-sparkles::after {
  animation-delay: 2s;
  background-image:
    radial-gradient(1px 1px at 8% 55%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 25% 18%, rgba(91, 163, 255, 0.85), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 72% 85%, rgba(59, 130, 246, 0.8), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 35% 92%, rgba(91, 163, 255, 0.85), transparent),
    radial-gradient(1px 1px at 60% 35%, rgba(255, 255, 255, 0.6), transparent);
}
@keyframes brand-sparkle-twinkle {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.9; }
}

/* Líneas decorativas con glow arriba y abajo */
.brand-marquee {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-image:
    radial-gradient(ellipse 1200px 240px at 50% 50%, rgba(59, 130, 246, 0.09) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-bg) 0%, #060C1A 50%, var(--color-bg) 100%),
    linear-gradient(90deg, transparent, rgba(91, 163, 255, 0.45), transparent),
    linear-gradient(90deg, transparent, rgba(91, 163, 255, 0.45), transparent);
  background-position:
    center, center,
    center top, center bottom;
  background-size:
    100% 100%, 100% 100%,
    100% 1px, 100% 1px;
  background-repeat: no-repeat;
}

/* Orbes ambientales que flotan detrás del marquee */
.brand-marquee-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.brand-marquee-glow-1 {
  top: -50px;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  animation: brand-glow-1 14s ease-in-out infinite;
}
.brand-marquee-glow-2 {
  bottom: -50px;
  right: 15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(91, 163, 255, 0.3) 0%, transparent 70%);
  animation: brand-glow-2 18s ease-in-out infinite;
}
@keyframes brand-glow-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 30px) scale(1.15); }
}
@keyframes brand-glow-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, -20px) scale(1.1); }
}

/* Fades de los bordes ahora se manejan con mask-image en .brand-marquee-track-wrap */

/* Progressive Blur — removido, causaba apilamiento visual */

.brand-marquee-track-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Progressive blur effect — fade suave hacia los lados (igual que 21st dev) */
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%);
}
.brand-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: brand-marquee-scroll 70s linear infinite;
  align-items: center;
}
.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}
@keyframes brand-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.333%, 0, 0); }
}
.brand-marquee-set {
  display: flex;
  flex-wrap: nowrap;
  gap: 90px;
  padding-right: 90px;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  transition: color 0.4s ease, transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease, text-shadow 0.4s ease;
  filter: grayscale(100%);
  cursor: default;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  user-select: none;
  white-space: nowrap;
  opacity: 1;
  position: relative;
}
/* Halo de glow bajo cada marca al hover */
.brand-logo::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    currentColor,
    transparent);
  transform: translateX(-50%);
  transition: width 0.45s var(--ease-out), opacity 0.45s;
  opacity: 0;
  pointer-events: none;
  filter: blur(0.5px);
}
.brand-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 110%;
  height: 60px;
  background: radial-gradient(ellipse at center top, currentColor, transparent 70%);
  transform: translateX(-50%);
  transition: opacity 0.45s;
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
}
.brand-logo:hover::before {
  width: 105%;
  opacity: 0.85;
}
.brand-logo:hover::after {
  opacity: 0.22;
}
/* Hover: la marca activa brilla en SU color, las demás se difuminan */
.brand-marquee-track:hover .brand-logo { opacity: 0.2; }
.brand-marquee-track:hover .brand-logo:hover {
  /* color lo define cada brand específico vía data-brand selectors */
  filter: grayscale(0%);
  transform: scale(1.08);
  opacity: 1;
  text-shadow:
    0 0 16px currentColor,
    0 0 32px currentColor;
}

/* ─── Colores reales por marca (al hover) ─── */

/* GENIE — azul (es la marca azul/aqua icónica de plataformas) */
.brand-logo[data-brand="genie"] {
  letter-spacing: -0.04em;
  font-style: italic;
}
.brand-logo[data-brand="genie"]:hover { color: #4FB7FF; }
.brand-logo[data-brand="genie"] .brand-dot {
  color: #4FB7FF;
  font-size: 1.1em;
  margin-left: 2px;
}

/* LGMG — rojo */
.brand-logo[data-brand="lgmg"] {
  letter-spacing: 0.05em;
  font-weight: 800;
}
.brand-logo[data-brand="lgmg"]:hover { color: #E30613; }

/* ENAR — amarillo (marca española de equipo para concreto) */
.brand-logo[data-brand="enar"] {
  letter-spacing: 0.02em;
  font-style: italic;
  font-weight: 900;
}
.brand-logo[data-brand="enar"]:hover { color: #FFD100; }
.brand-logo[data-brand="enar"] .brand-bar {
  display: inline-block;
  width: 28px;
  height: 4px;
  background: currentColor;
  margin-left: 6px;
  align-self: center;
  transform: skewX(-15deg);
}

/* SHINDAIWA — blanco */
.brand-logo[data-brand="shindaiwa"] {
  text-transform: lowercase;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-style: italic;
}
.brand-logo[data-brand="shindaiwa"]:hover { color: #FFFFFF; }

/* SAKAI — naranja (marca japonesa de compactación) */
.brand-logo[data-brand="sakai"] {
  letter-spacing: 0.18em;
  font-weight: 800;
}
.brand-logo[data-brand="sakai"]:hover { color: #F39200; }

/* HONDA — gris plateado (no usar rojo Honda corporativo, prefirió gris) */
.brand-logo[data-brand="honda"] {
  letter-spacing: 0.08em;
  font-weight: 900;
  font-style: italic;
}
.brand-logo[data-brand="honda"]:hover { color: #C8CED4; }

/* BOSCH — rojo brand (Bosch corporate red) */
.brand-logo[data-brand="bosch"] {
  letter-spacing: 0.06em;
  font-weight: 900;
}
.brand-logo[data-brand="bosch"]:hover { color: #ED1C24; }

/* MPOWER — verde / azul brand */
.brand-logo[data-brand="mpower"] {
  letter-spacing: 0.05em;
  font-weight: 900;
}
.brand-logo[data-brand="mpower"]:hover { color: #00A859; }

/* AIRMAN — rojo brand japonés */
.brand-logo[data-brand="airman"] {
  letter-spacing: 0.06em;
  font-weight: 900;
  font-style: italic;
}
.brand-logo[data-brand="airman"]:hover { color: #DA1F26; }

/* HIMOINSA — naranja/rojo brand español */
.brand-logo[data-brand="himoinsa"] {
  letter-spacing: 0.04em;
  font-weight: 800;
}
.brand-logo[data-brand="himoinsa"]:hover { color: #FF5722; }

@media (max-width: 768px) {
  .brand-marquee { padding: 50px 0; }
  .brand-logo { font-size: 36px; }
  .brand-marquee-set { gap: 60px; padding-right: 60px; }
  .brand-marquee::before,
  .brand-marquee::after { width: 100px; }
  .brand-marquee-glow-1,
  .brand-marquee-glow-2 { width: 240px; height: 240px; }
}

/* ═══════════════════════════════════════════════
   PÁGINAS LEGALES (Aviso de Privacidad + T&C)
═══════════════════════════════════════════════ */
.legal-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 8px;
  color: var(--color-text);
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-line);
}
.legal-section:last-of-type {
  border-bottom: none;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.legal-section h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-azul-claro);
  margin-bottom: 10px;
  border-radius: 2px;
}
.legal-section p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 14px 0;
}
.legal-section p strong {
  color: var(--color-text);
  font-weight: 600;
}
.legal-section ul {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.legal-section li {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.legal-section li::marker {
  color: var(--color-azul-claro);
}
.legal-section a {
  color: var(--color-azul-claro);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-section a:hover {
  color: #fff;
}
.legal-meta {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 40px;
  padding: 16px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px dashed rgba(59, 130, 246, 0.25);
  border-radius: 10px;
}
@media (max-width: 640px) {
  .legal-section h2 { font-size: 20px; }
  .legal-section p, .legal-section li { font-size: 14px; }
}

/* ═══════════════════════════════════════════════
   SCROLL LEGEND — Navegación lateral fija
═══════════════════════════════════════════════ */
.scroll-legend {
  position: fixed;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  pointer-events: auto;
  /* Glassmorphism container — siempre visible con labels */
  padding: 18px 18px 18px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(11, 22, 44, 0.65) 0%,
    rgba(6, 12, 26, 0.55) 100%);
  border: 1px solid rgba(59, 130, 246, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  opacity: 0;
  visibility: hidden;
  transition: background 0.4s var(--ease-out),
              border-color 0.4s,
              box-shadow 0.4s,
              opacity 0.5s var(--ease-out),
              visibility 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}
.scroll-legend:hover {
  background: linear-gradient(135deg,
    rgba(11, 22, 44, 0.85) 0%,
    rgba(6, 12, 26, 0.78) 100%);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(59, 130, 246, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* Estado "reveal" — solo aparece cuando el usuario cruza el page-header */
.scroll-legend.is-revealed {
  opacity: 1;
  visibility: visible;
}
/* Pequeño slide-in cuando aparece */
.scroll-legend:not(.is-revealed) {
  transform: translateY(-50%) translateX(-16px);
}
.scroll-legend:hover {
  pointer-events: auto;
  background: linear-gradient(135deg,
    rgba(11, 22, 44, 0.88) 0%,
    rgba(6, 12, 26, 0.82) 100%);
  border-color: rgba(59, 130, 246, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(59, 130, 246, 0.08);
}

.scroll-legend-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.scroll-legend-list li {
  margin: 0;
  padding: 0;
}

.scroll-legend-item {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  padding: 4px 0;
}

/* Línea horizontal indicadora */
.scroll-legend-line {
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out),
              background 0.3s,
              box-shadow 0.3s;
}
.scroll-legend-item:hover .scroll-legend-line {
  width: 24px;
  background: rgba(255, 255, 255, 0.55);
}
.scroll-legend-item.is-active .scroll-legend-line {
  width: 34px;
  background: linear-gradient(90deg, #5BA3FF, #3B82F6);
  box-shadow: 0 0 10px rgba(91, 163, 255, 0.55);
}

/* Label de la sección — siempre visible */
.scroll-legend-label {
  margin-left: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  transition: color 0.3s var(--ease-out);
  pointer-events: none;
}
.scroll-legend-item:hover .scroll-legend-label {
  color: rgba(255, 255, 255, 0.95);
}
.scroll-legend-item.is-active .scroll-legend-label {
  color: #5BA3FF;
  text-shadow: 0 0 12px rgba(91, 163, 255, 0.35);
}

/* ─── Zoom / pantallas medianas (igual que el scrubber del catálogo) ───
   El legend es position:fixed a la izquierda; al hacer zoom el viewport
   efectivo se achica y se encima con el contenido. */

/* ~125% de zoom (y laptops medianas): un pelín más pequeño y pegado al borde */
@media (max-width: 1700px) {
  .scroll-legend { left: 12px; padding: 10px 10px 10px 8px; }
  .scroll-legend-list { gap: 11px; }
  .scroll-legend-label { font-size: 10px; letter-spacing: 0.02em; }
}

/* ~150% de zoom (y pantallas chicas): quitarlo para que no estorbe */
@media (max-width: 1450px) {
  .scroll-legend { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-legend,
  .scroll-legend-line,
  .scroll-legend-label {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════
   CATÁLOGO PAGE-HEADER — Celestial Sphere shader + 1.png
   Capas (bottom→top):
     0. page-header-bg-image  → 1.png absolute (scrollea con el banner)
     0. celestial-sphere-container → shader Three.js
     1. page-header-veil      → velo oscuro para legibilidad
     2. .container            → breadcrumb + título + subtítulo
═══════════════════════════════════════════════ */
/* Mismas dimensiones que .page-header-shader (informacion) */
.page-header-catalogo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
  min-height: 78vh;
  padding-top: calc(var(--header-h-total) + 80px);
  padding-bottom: 120px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
}

/* Imagen 1.png — mismo tratamiento que info-header-bg (screen + filter sutil) */
.page-header-catalogo > .page-header-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/fondos/catalogo-header-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0.55;
  filter: contrast(1.05) brightness(0.92);
  mix-blend-mode: screen;
  image-rendering: -webkit-optimize-contrast;
}

/* Shader Celestial Sphere — MUY visible (igual que el shader procedural de info) */
.page-header-catalogo > .celestial-sphere-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.95;
  overflow: hidden;
}
.page-header-catalogo > .celestial-sphere-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Velo — mismo patrón que page-header-overlay de info (spot central + fade inferior) */
.page-header-catalogo > .page-header-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Spot oscuro central donde va el texto */
    radial-gradient(ellipse 70% 100% at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      transparent 100%),
    /* Fade inferior hacia el marquee */
    linear-gradient(180deg,
      transparent 50%,
      rgba(0, 0, 0, 0.55) 90%,
      var(--color-bg) 100%);
}

/* Contenido encima de todas las capas */
.page-header-catalogo > .container {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .page-header-catalogo {
    min-height: 65vh;
    padding-top: calc(var(--header-h-total) + 40px);
    padding-bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — Watermark de marca por sección
   Texto gigante translúcido detrás de cada .catalogo-cat
═══════════════════════════════════════════════ */
body.page-catalogo .page-body { position: relative; isolation: isolate; }

body.page-catalogo .catalogo-cat {
  position: relative;
  overflow: visible;
}

body.page-catalogo .catalogo-cat[data-brand-watermark]::before {
  content: attr(data-brand-watermark);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  text-align: center;
  font-family: 'Anton', 'Inter', sans-serif;
  font-size: clamp(120px, 20vw, 340px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(91, 163, 255, 0.06);
  text-shadow:
    0 0 40px rgba(91, 163, 255, 0.05),
    0 0 120px rgba(30, 85, 170, 0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
}
/* Contenido siempre encima del watermark */
body.page-catalogo .catalogo-cat > * { position: relative; z-index: 1; }
/* En pantallas medianas, mantener watermark pero más chico */
@media (max-width: 1280px) {
  body.page-catalogo .catalogo-cat[data-brand-watermark]::before {
    font-size: clamp(90px, 15vw, 190px);
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  body.page-catalogo .catalogo-cat[data-brand-watermark]::before {
    font-size: clamp(70px, 18vw, 120px);
    opacity: 0.55;
  }
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — Scrubber FUSIONADO (legend + draggable, izquierda)
   Items equiespaciados con label visible + handle draggable.
═══════════════════════════════════════════════ */
.cat-scrubber {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  height: 64vh;
  max-height: 560px;
  min-height: 360px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
}
.cat-scrubber.is-revealed {
  opacity: 1;
  pointer-events: auto;
}

/* Track (contenedor de línea + items + handle) */
.cat-scrubber-track {
  position: relative;
  height: 100%;
  width: 200px;       /* ancho para acomodar labels a la derecha */
  outline: none;
}
.cat-scrubber-track:focus-visible {
  outline: 1px dashed rgba(156, 222, 255, 0.5);
  outline-offset: 6px;
  border-radius: 6px;
}

/* Línea base vertical (a la izquierda del track) */
.cat-scrubber-line {
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 2px;
  z-index: 0;          /* detrás de los dots */
  background: linear-gradient(180deg,
    rgba(91, 163, 255, 0.18) 0%,
    rgba(91, 163, 255, 0.30) 50%,
    rgba(91, 163, 255, 0.18) 100%);
  border-radius: 2px;
}

/* Fill — progreso desde arriba hasta el handle */
.cat-scrubber-fill {
  position: absolute;
  left: 4px;
  top: 0;
  width: 2px;
  height: 0%;
  z-index: 0;          /* detrás de los dots */
  background: linear-gradient(180deg,
    rgba(156, 222, 255, 0.9) 0%,
    rgba(91, 163, 255, 0.7) 100%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(91, 163, 255, 0.6);
  pointer-events: none;
  transition: height 0.1s linear;
}

/* Items — equiespaciados, cada uno dot + label (encima de la línea) */
.cat-scrubber-items { position: absolute; inset: 0; z-index: 2; }
.cat-scrubber-item {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.cat-scrubber-item-dot {
  position: relative;
  left: 0;
  margin-left: 0;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  /* fondo OPACO (sólido) para tapar la línea de atrás */
  background: #16243f;
  border: 1.5px solid rgba(156, 222, 255, 0.55);
  box-shadow: 0 0 0 3px var(--color-bg);   /* halo del color de fondo: oculta la línea */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}
.cat-scrubber-item-label {
  padding: 0;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease, letter-spacing 0.2s ease;
  text-align: left;
}
.cat-scrubber-item:hover .cat-scrubber-item-dot {
  background: #5BA3FF;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--color-bg), 0 0 10px rgba(91, 163, 255, 0.8);
  transform: scale(1.2);
}
.cat-scrubber-item:hover .cat-scrubber-item-label {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(2px);
}
.cat-scrubber-item.is-active .cat-scrubber-item-dot {
  background: #9CDEFF;
  border-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--color-bg), 0 0 10px rgba(91, 163, 255, 0.9);
  transform: scale(1.15);
}
.cat-scrubber-item.is-active .cat-scrubber-item-label {
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(91, 163, 255, 0.5);
}

/* Handle draggable — sobre la línea */
.cat-scrubber-handle {
  position: absolute;
  left: 6px;
  top: 0%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  cursor: grab;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.1s linear;
}
.cat-scrubber-handle:active,
.cat-scrubber.is-dragging .cat-scrubber-handle { cursor: grabbing; }

.cat-scrubber-handle-core {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FFFFFF 0%, #9CDEFF 35%, #1E55AA 100%);
  box-shadow:
    0 0 0 3px rgba(2, 5, 12, 0.9),
    0 0 12px rgba(91, 163, 255, 0.75),
    0 0 28px rgba(59, 130, 246, 0.45);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-scrubber-handle-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(91, 163, 255, 0.4) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cat-scrubber-handle:hover .cat-scrubber-handle-core,
.cat-scrubber.is-dragging .cat-scrubber-handle-core {
  transform: scale(1.2);
  box-shadow:
    0 0 0 3px rgba(2, 5, 12, 0.9),
    0 0 18px rgba(91, 163, 255, 0.95),
    0 0 40px rgba(59, 130, 246, 0.6);
}
.cat-scrubber-handle:hover .cat-scrubber-handle-glow,
.cat-scrubber.is-dragging .cat-scrubber-handle-glow { opacity: 1; }

/* ─── Zoom / pantallas medianas ───
   El scrubber es position:fixed a la izquierda. Solo hay margen suficiente
   cuando el viewport ≥ ~1700px (escritorio 1920 al 100%). Al hacer zoom el
   viewport efectivo se achica (125% ≈ 1536px, 150% ≈ 1280px) y el scrubber
   invade las tarjetas. Por eso lo encogemos primero y lo ocultamos después. */

/* ~125% de zoom (y laptops medianas): un pelín más pequeño y pegado al borde */
@media (max-width: 1700px) {
  .cat-scrubber { left: 14px; }
  .cat-scrubber-track { width: 168px; }
  .cat-scrubber-item { gap: 10px; }
  .cat-scrubber-item-dot { width: 8px; height: 8px; }
  .cat-scrubber-item-label { font-size: 11px; letter-spacing: 0.02em; }
}

/* ~150% de zoom (y pantallas chicas): quitarlo para que no estorbe */
@media (max-width: 1450px) {
  .cat-scrubber { display: none !important; }
}


/* ═══════════════════════════════════════════════
   CATÁLOGO — Floating particles ambient brand
   24 partículas posicionadas con nth-child
═══════════════════════════════════════════════ */
.cat-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.cat-particle {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(91, 163, 255, 0.65);
  box-shadow:
    0 0 6px rgba(91, 163, 255, 0.55),
    0 0 12px rgba(59, 130, 246, 0.30);
  animation: cat-particle-rise linear infinite;
  opacity: 0;
}
.cat-particle:nth-child(1)  { left: 4%;  width: 2px; height: 2px; animation-duration: 18s; animation-delay:  0s;   }
.cat-particle:nth-child(2)  { left: 9%;                            animation-duration: 26s; animation-delay:  6s;   }
.cat-particle:nth-child(3)  { left: 13%; width: 4px; height: 4px; animation-duration: 32s; animation-delay:  2s;   }
.cat-particle:nth-child(4)  { left: 17%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: 10s;   }
.cat-particle:nth-child(5)  { left: 22%;                            animation-duration: 28s; animation-delay:  4s;   }
.cat-particle:nth-child(6)  { left: 27%; width: 3px; height: 3px; animation-duration: 35s; animation-delay: 14s;   }
.cat-particle:nth-child(7)  { left: 33%; width: 2px; height: 2px; animation-duration: 20s; animation-delay:  7s;   }
.cat-particle:nth-child(8)  { left: 38%;                            animation-duration: 30s; animation-delay: 12s;   }
.cat-particle:nth-child(9)  { left: 43%; width: 4px; height: 4px; animation-duration: 38s; animation-delay:  1s;   }
.cat-particle:nth-child(10) { left: 48%; width: 2px; height: 2px; animation-duration: 24s; animation-delay:  9s;   }
.cat-particle:nth-child(11) { left: 53%;                            animation-duration: 27s; animation-delay: 16s;   }
.cat-particle:nth-child(12) { left: 58%; width: 3px; height: 3px; animation-duration: 33s; animation-delay:  3s;   }
.cat-particle:nth-child(13) { left: 63%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: 11s;   }
.cat-particle:nth-child(14) { left: 68%;                            animation-duration: 29s; animation-delay:  5s;   }
.cat-particle:nth-child(15) { left: 72%; width: 4px; height: 4px; animation-duration: 36s; animation-delay: 13s;   }
.cat-particle:nth-child(16) { left: 77%; width: 2px; height: 2px; animation-duration: 21s; animation-delay:  8s;   }
.cat-particle:nth-child(17) { left: 82%;                            animation-duration: 31s; animation-delay: 15s;   }
.cat-particle:nth-child(18) { left: 87%; width: 3px; height: 3px; animation-duration: 34s; animation-delay:  2s;   }
.cat-particle:nth-child(19) { left: 91%; width: 2px; height: 2px; animation-duration: 23s; animation-delay: 17s;   }
.cat-particle:nth-child(20) { left: 95%;                            animation-duration: 28s; animation-delay:  6s;   }
.cat-particle:nth-child(21) { left: 6%;  width: 3px; height: 3px; animation-duration: 40s; animation-delay: 20s;   }
.cat-particle:nth-child(22) { left: 30%; width: 4px; height: 4px; animation-duration: 42s; animation-delay: 18s;   }
.cat-particle:nth-child(23) { left: 60%; width: 3px; height: 3px; animation-duration: 38s; animation-delay: 21s;   }
.cat-particle:nth-child(24) { left: 85%; width: 4px; height: 4px; animation-duration: 44s; animation-delay: 19s;   }

@keyframes cat-particle-rise {
  0%   { transform: translateY(0) translateX(0);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(8px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-105vh) translateX(-6px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-particle { animation: none; opacity: 0.3; }
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — Floating particles ambient brand
   24 partículas posicionadas con nth-child
═══════════════════════════════════════════════ */
.cat-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.cat-particle {
  position: absolute;
  bottom: -20px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(91, 163, 255, 0.55);
  box-shadow:
    0 0 4px rgba(91, 163, 255, 0.45),
    0 0 8px rgba(59, 130, 246, 0.25);
  animation: cat-particle-rise linear infinite;
  opacity: 0;
}

/* Distribución horizontal + variación de tamaño/duración/delay */
.cat-particle:nth-child(1)  { left: 4%;  width: 2px; height: 2px; animation-duration: 18s; animation-delay:  0s;   }
.cat-particle:nth-child(2)  { left: 9%;                            animation-duration: 26s; animation-delay:  6s;   }
.cat-particle:nth-child(3)  { left: 13%; width: 4px; height: 4px; animation-duration: 32s; animation-delay:  2s;   }
.cat-particle:nth-child(4)  { left: 17%; width: 2px; height: 2px; animation-duration: 22s; animation-delay: 10s;   }
.cat-particle:nth-child(5)  { left: 22%;                            animation-duration: 28s; animation-delay:  4s;   }
.cat-particle:nth-child(6)  { left: 27%; width: 3px; height: 3px; animation-duration: 35s; animation-delay: 14s;   }
.cat-particle:nth-child(7)  { left: 33%; width: 2px; height: 2px; animation-duration: 20s; animation-delay:  7s;   }
.cat-particle:nth-child(8)  { left: 38%;                            animation-duration: 30s; animation-delay: 12s;   }
.cat-particle:nth-child(9)  { left: 43%; width: 4px; height: 4px; animation-duration: 38s; animation-delay:  1s;   }
.cat-particle:nth-child(10) { left: 48%; width: 2px; height: 2px; animation-duration: 24s; animation-delay:  9s;   }
.cat-particle:nth-child(11) { left: 53%;                            animation-duration: 27s; animation-delay: 16s;   }
.cat-particle:nth-child(12) { left: 58%; width: 3px; height: 3px; animation-duration: 33s; animation-delay:  3s;   }
.cat-particle:nth-child(13) { left: 63%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: 11s;   }
.cat-particle:nth-child(14) { left: 68%;                            animation-duration: 29s; animation-delay:  5s;   }
.cat-particle:nth-child(15) { left: 72%; width: 4px; height: 4px; animation-duration: 36s; animation-delay: 13s;   }
.cat-particle:nth-child(16) { left: 77%; width: 2px; height: 2px; animation-duration: 21s; animation-delay:  8s;   }
.cat-particle:nth-child(17) { left: 82%;                            animation-duration: 31s; animation-delay: 15s;   }
.cat-particle:nth-child(18) { left: 87%; width: 3px; height: 3px; animation-duration: 34s; animation-delay:  2s;   }
.cat-particle:nth-child(19) { left: 91%; width: 2px; height: 2px; animation-duration: 23s; animation-delay: 17s;   }
.cat-particle:nth-child(20) { left: 95%;                            animation-duration: 28s; animation-delay:  6s;   }
.cat-particle:nth-child(21) { left: 6%;  width: 3px; height: 3px; animation-duration: 40s; animation-delay: 20s;   }
.cat-particle:nth-child(22) { left: 30%; width: 4px; height: 4px; animation-duration: 42s; animation-delay: 18s;   }
.cat-particle:nth-child(23) { left: 60%; width: 3px; height: 3px; animation-duration: 38s; animation-delay: 21s;   }
.cat-particle:nth-child(24) { left: 85%; width: 4px; height: 4px; animation-duration: 44s; animation-delay: 19s;   }

@keyframes cat-particle-rise {
  0%   { transform: translateY(0) translateX(0);   opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(8px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-105vh) translateX(-6px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cat-particle { animation: none; opacity: 0.3; }
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — Override del scroll-legend
   Ajustes específicos para la página de catálogo
   (10 items, necesita un poco más de aire)
═══════════════════════════════════════════════ */
body.page-catalogo .scroll-legend {
  /* Ya tiene posicionamiento fijo desde estilos base.
     Solo asegurar que la fuente y altura del legend acomode 10 items. */
}
body.page-catalogo .scroll-legend-list { gap: 14px; }
body.page-catalogo .scroll-legend-label { font-size: 11px; }

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Header con imagen + ATC shader
═══════════════════════════════════════════════════════════════ */
.page-header-cobertura {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
  min-height: 82vh;
  padding-top: calc(var(--header-h-total) + 90px);
  padding-bottom: 130px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
}
.page-header-cobertura > .page-header-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/fondos/cobertura-header-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0.62;
  filter: contrast(1.08) brightness(0.95);
  mix-blend-mode: screen;
}
.page-header-cobertura > .warp-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: screen;
}
.page-header-cobertura > .page-header-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 100% at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.12) 50%, transparent 100%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 90%, var(--color-bg) 100%);
}
.page-header-cobertura > .container { position: relative; z-index: 3; }
@media (max-width: 768px) {
  .page-header-cobertura {
    min-height: 58vh;
    padding-top: calc(var(--header-h-total) + 40px);
    padding-bottom: 72px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Mapa interactivo de Baja California
═══════════════════════════════════════════════════════════════ */
.cob-map-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  margin-top: 48px;
}
.cob-map-svg-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Contenedor del mapa Leaflet ── */
.cob-leaflet {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(91, 163, 255, 0.28);
  box-shadow: 0 24px 70px -26px rgba(30, 85, 170, 0.65);
  background: #050B16;   /* color mientras cargan los tiles */
  z-index: 1;
}
.cob-leaflet-hint {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--color-text-dim);
  text-align: center;
}

/* Tema oscuro brand para controles/popups de Leaflet */
.cob-leaflet .leaflet-control-zoom a {
  background: rgba(8, 14, 28, 0.92);
  color: #9CDEFF;
  border-color: rgba(91, 163, 255, 0.25);
}
.cob-leaflet .leaflet-control-zoom a:hover {
  background: rgba(30, 85, 170, 0.5);
  color: #fff;
}
.cob-leaflet .leaflet-bar { border: none; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.cob-leaflet .leaflet-control-attribution {
  background: rgba(2, 6, 14, 0.7);
  color: rgba(220, 238, 255, 0.55);
}
.cob-leaflet .leaflet-control-attribution a { color: rgba(91, 163, 255, 0.8); }

/* Popup brand */
.cob-leaflet .leaflet-popup-content-wrapper {
  background: linear-gradient(135deg, rgba(12,22,42,0.98), rgba(6,12,24,0.98));
  color: #fff;
  border: 1px solid rgba(91, 163, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.cob-leaflet .leaflet-popup-content { margin: 14px 18px; }
.cob-leaflet .leaflet-popup-tip {
  background: rgba(10, 18, 34, 0.98);
  border: 1px solid rgba(91, 163, 255, 0.35);
}
.cob-leaflet .leaflet-popup-close-button { color: rgba(156,222,255,0.7); }
.cob-pop-tag {
  font-size: 10px; letter-spacing: 0.2em; font-weight: 700;
  color: var(--color-azul-claro); margin-bottom: 4px;
}
.cob-pop-name { font-family: 'Anton', sans-serif; font-size: 19px; line-height: 1.1; margin-bottom: 5px; }
.cob-pop-sub { font-size: 12.5px; color: var(--color-text-dim); }

/* ── Marcadores brand (divIcon) ── */
.cob-marker {
  position: relative;
  display: block;
}
.cob-marker .cob-marker-dot {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #BCD3FF 0%, #5BA3FF 45%, #1E55AA 95%);
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(91, 163, 255, 0.9), 0 0 22px rgba(59, 130, 246, 0.5);
}
.cob-marker.cob-marker-main .cob-marker-dot {
  width: 18px; height: 18px;
  background: radial-gradient(circle at 35% 30%, #FFFFFF 0%, #9CDEFF 45%, #1E55AA 95%);
}
.cob-marker .cob-marker-ping {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(91, 163, 255, 0.85);
  animation: cob-ping 2.6s ease-out infinite;
}
.cob-marker.cob-marker-main .cob-marker-ping { animation-delay: 0.6s; }
@keyframes cob-ping {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
  80%  { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}
.cob-map-info { display: flex; flex-direction: column; gap: 18px; }
.cob-map-info-card {
  position: relative;
  padding: 28px 30px;
  border-radius: 14px;
  border: 1px solid rgba(91, 163, 255, 0.16);
  background: linear-gradient(135deg, rgba(8,14,28,0.7) 0%, rgba(5,11,22,0.6) 100%);
  opacity: 0.45;
  transition: opacity 0.35s ease, border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
  cursor: default;
}
.cob-map-info-card.is-active {
  opacity: 1;
  border-color: rgba(91, 163, 255, 0.45);
  background: linear-gradient(135deg, rgba(12,22,42,0.85) 0%, rgba(8,16,32,0.75) 100%);
  transform: translateX(6px);
  box-shadow: 0 18px 50px -20px rgba(30, 85, 170, 0.55);
}
.cob-map-info-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--color-azul-claro);
  margin-bottom: 10px;
}
.cob-map-info-state {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 12px;
}
.cob-map-info-desc {
  font-size: 14.5px;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cob-map-info-desc strong { color: #fff; }
.cob-map-info-cities {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(156, 222, 255, 0.75);
  padding-top: 12px;
  border-top: 1px solid rgba(91, 163, 255, 0.14);
}
@media (max-width: 860px) {
  .cob-map-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cob-leaflet { height: 380px; }
}

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Cards de sucursal enriquecidas
═══════════════════════════════════════════════════════════════ */
.cob-branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}
.cob-branch {
  position: relative;
  padding: 32px 32px 28px;
  border-radius: 14px;
  border: 1px solid rgba(91, 163, 255, 0.16);
  background: linear-gradient(135deg, rgba(8,14,28,0.72) 0%, rgba(5,11,22,0.62) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.cob-branch.is-in { opacity: 1; transform: translateY(0); }
.cob-branch:hover { border-color: rgba(91, 163, 255, 0.4); }
.cob-branch-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cob-branch-badge {
  font-size: 10.5px; letter-spacing: 0.18em; font-weight: 700;
  padding: 5px 11px; border-radius: 100px;
  color: var(--color-azul-claro);
  background: rgba(91, 163, 255, 0.12);
  border: 1px solid rgba(91, 163, 255, 0.28);
}
.cob-branch-badge-main {
  color: #fff;
  background: linear-gradient(135deg, #1E55AA, #3B82F6);
  border-color: transparent;
}
.cob-branch-zone {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: rgba(91, 163, 255, 0.35);
  letter-spacing: 0.05em;
}
.cob-branch-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.05;
}
.cob-branch-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.cob-branch-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--color-text-dim); line-height: 1.5;
}
.cob-branch-row svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  color: var(--color-azul-claro);
}
.cob-branch-cover {
  font-size: 14px; color: #fff; font-weight: 600;
  padding: 12px 16px; margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(91, 163, 255, 0.08);
  border: 1px solid rgba(91, 163, 255, 0.16);
}
.cob-branch-cover span {
  display: block; font-size: 10px; letter-spacing: 0.2em;
  color: var(--color-azul-claro); margin-bottom: 4px; font-weight: 700;
}
.cob-branch-actions { display: flex; gap: 10px; }
.cob-branch-btn {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px; border-radius: 10px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: all 0.25s ease;
}
.cob-branch-btn svg { width: 16px; height: 16px; }
.cob-branch-btn-map {
  color: #fff;
  background: rgba(91, 163, 255, 0.14);
  border: 1px solid rgba(91, 163, 255, 0.3);
}
.cob-branch-btn-map:hover { background: rgba(91, 163, 255, 0.26); }
.cob-branch-btn-wa {
  color: #fff;
  background: linear-gradient(135deg, #1E55AA, #3B82F6);
}
.cob-branch-btn-wa:hover { filter: brightness(1.12); transform: translateY(-1px); }
@media (max-width: 768px) {
  .cob-branch-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Chips de ciudades
═══════════════════════════════════════════════════════════════ */
.cob-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 44px; }
.cob-cities-head {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 18px;
}
.cob-cities-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #5BA3FF; box-shadow: 0 0 10px rgba(91,163,255,0.8);
}
.cob-cities-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cob-chip {
  padding: 9px 16px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500; color: var(--color-text);
  background: rgba(91, 163, 255, 0.07);
  border: 1px solid rgba(91, 163, 255, 0.18);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1), background 0.25s ease, border-color 0.25s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.cob-chip.is-in { opacity: 1; transform: translateY(0) scale(1); }
.cob-chip:hover {
  background: rgba(91, 163, 255, 0.18);
  border-color: rgba(91, 163, 255, 0.45);
  color: #fff;
}
@media (max-width: 768px) {
  .cob-cities { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Timeline de proceso logístico
═══════════════════════════════════════════════════════════════ */
.cob-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.cob-process-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.cob-process-step.is-in { opacity: 1; transform: translateY(0); }
/* Conector horizontal: del borde de este icono al borde del siguiente.
   left = centro(50%) + radio(32) + 6 = 50% + 38px
   width = distancia entre centros (100% + gap 24) - 2*38 = 100% - 52px */
.cob-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% + 38px);
  width: calc(100% - 52px);
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(91,163,255,0.15), rgba(91,163,255,0.5) 50%, rgba(91,163,255,0.15));
  border-radius: 2px;
  z-index: 0;
}
.cob-process-icon {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,85,170,0.45), rgba(8,14,28,0.98));
  border: 1px solid rgba(91, 163, 255, 0.35);
  box-shadow: 0 0 24px -8px rgba(91, 163, 255, 0.5);
}
.cob-process-icon svg { width: 28px; height: 28px; color: var(--color-azul-claro); }
.cob-process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(91, 163, 255, 0.6);
  margin-bottom: 8px;
}
.cob-process-step h3 {
  font-size: 18px; color: #fff; margin: 0 0 8px;
}
.cob-process-step p {
  font-size: 13.5px; color: var(--color-text-dim); line-height: 1.55; margin: 0;
}
@media (max-width: 860px) {
  .cob-process { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .cob-process-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .cob-process { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   COBERTURA — Fondo decorativo del page-body
   Grid técnico + glows azules animados + partículas tenues
═══════════════════════════════════════════════════════════════ */
body.page-cobertura .page-body {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(20, 55, 120, 0.06), transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #05090F 0%, #02040A 100%);
}
body.page-cobertura .page-body > .container { position: relative; z-index: 2; }

/* Capa líneas topográficas (curvas de nivel — temático de mapa) */
.cob-bg-topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 14% 22%,
      transparent 0, transparent 46px,
      rgba(91, 163, 255, 0.05) 47px, rgba(91, 163, 255, 0.05) 48px, transparent 49px),
    repeating-radial-gradient(circle at 86% 40%,
      transparent 0, transparent 54px,
      rgba(59, 130, 246, 0.045) 55px, rgba(59, 130, 246, 0.045) 56px, transparent 57px),
    repeating-radial-gradient(circle at 30% 82%,
      transparent 0, transparent 50px,
      rgba(91, 163, 255, 0.04) 51px, rgba(91, 163, 255, 0.04) 52px, transparent 53px);
  mask-image: radial-gradient(ellipse 90% 75% at 50% 35%, #000 25%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 35%, #000 25%, transparent 90%);
  animation: cob-topo-drift 40s ease-in-out infinite alternate;
}
@keyframes cob-topo-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-18px, -14px); }
}

/* Capa de glows azules animados (muy sutil — OLED) */
.cob-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 460px at 8% 12%,  rgba(20, 60, 130, 0.09), transparent 74%),
    radial-gradient(ellipse 640px 520px at 92% 32%, rgba(30, 80, 170, 0.07), transparent 76%),
    radial-gradient(ellipse 760px 500px at 18% 62%, rgba(40, 95, 190, 0.05), transparent 74%),
    radial-gradient(ellipse 680px 480px at 88% 85%, rgba(20, 60, 130, 0.08), transparent 74%);
  filter: blur(34px);
  animation: cob-bg-drift 30s ease-in-out infinite alternate;
}
@keyframes cob-bg-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(24px, -16px) scale(1.04); }
  100% { transform: translate(-20px, 12px) scale(1.06); }
}

/* Capa de estrellas / puntitos brillantes (twinkle) */
.cob-bg-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cob-star {
  position: absolute;
  border-radius: 50%;
  background: #DCEBFF;
  box-shadow: 0 0 4px rgba(156, 222, 255, 0.85), 0 0 8px rgba(91, 163, 255, 0.4);
  animation: cob-star-twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
@keyframes cob-star-twinkle {
  0%, 100% { opacity: 0.12; transform: scale(0.7); }
  50%      { opacity: var(--max, 0.9); transform: scale(1.15); }
}

/* Capa de partículas flotantes tenues */
.cob-bg-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cob-bg-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(91, 163, 255, 0.5);
  box-shadow: 0 0 5px rgba(91, 163, 255, 0.5), 0 0 10px rgba(59, 130, 246, 0.25);
  animation: cob-particle-rise linear infinite;
  opacity: 0;
}
.cob-bg-particles span:nth-child(1)  { left: 5%;  width: 2px; height: 2px; animation-duration: 26s; animation-delay: 0s;  }
.cob-bg-particles span:nth-child(2)  { left: 13%;                           animation-duration: 32s; animation-delay: 5s;  }
.cob-bg-particles span:nth-child(3)  { left: 21%; width: 4px; height: 4px; animation-duration: 38s; animation-delay: 2s;  }
.cob-bg-particles span:nth-child(4)  { left: 29%;                           animation-duration: 28s; animation-delay: 9s;  }
.cob-bg-particles span:nth-child(5)  { left: 37%; width: 2px; height: 2px; animation-duration: 34s; animation-delay: 13s; }
.cob-bg-particles span:nth-child(6)  { left: 45%;                           animation-duration: 30s; animation-delay: 4s;  }
.cob-bg-particles span:nth-child(7)  { left: 52%; width: 4px; height: 4px; animation-duration: 40s; animation-delay: 16s; }
.cob-bg-particles span:nth-child(8)  { left: 59%;                           animation-duration: 27s; animation-delay: 7s;  }
.cob-bg-particles span:nth-child(9)  { left: 66%; width: 2px; height: 2px; animation-duration: 36s; animation-delay: 11s; }
.cob-bg-particles span:nth-child(10) { left: 72%;                           animation-duration: 29s; animation-delay: 18s; }
.cob-bg-particles span:nth-child(11) { left: 78%; width: 3px; height: 3px; animation-duration: 33s; animation-delay: 3s;  }
.cob-bg-particles span:nth-child(12) { left: 84%;                           animation-duration: 31s; animation-delay: 14s; }
.cob-bg-particles span:nth-child(13) { left: 90%; width: 4px; height: 4px; animation-duration: 42s; animation-delay: 8s;  }
.cob-bg-particles span:nth-child(14) { left: 95%; width: 2px; height: 2px; animation-duration: 25s; animation-delay: 20s; }
.cob-bg-particles span:nth-child(15) { left: 33%; width: 3px; height: 3px; animation-duration: 44s; animation-delay: 22s; }
.cob-bg-particles span:nth-child(16) { left: 48%;                           animation-duration: 37s; animation-delay: 17s; }
.cob-bg-particles span:nth-child(17) { left: 63%; width: 3px; height: 3px; animation-duration: 39s; animation-delay: 10s; }
.cob-bg-particles span:nth-child(18) { left: 88%;                           animation-duration: 35s; animation-delay: 24s; }
@keyframes cob-particle-rise {
  0%   { transform: translateY(0) translateX(0);     opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-46vh) translateX(7px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-96vh) translateX(-5px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cob-bg-glow, .cob-bg-topo { animation: none; }
  .cob-bg-particles span { animation: none; opacity: 0.3; }
  .cob-star { animation: none; opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════
   COTIZADOR WIZARD — multi-paso con ticket en vivo
═══════════════════════════════════════════════════════════════ */
/* En el cotizador: el grid se apila (wizard full-width, sucursales abajo) */
body.page-cotizador .contact-grid {
  display: block;
  grid-template-areas: none;
}
body.page-cotizador .contact-info-list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
body.page-cotizador .contact-info-title,
body.page-cotizador .contact-info-sub { grid-column: 1 / -1; }
@media (max-width: 760px) {
  body.page-cotizador .contact-info-list { grid-template-columns: 1fr; }
}

.cotzw {
  position: relative;
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

/* ── Barra de progreso ── */
.cotzw-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  max-width: 620px;
}
.cotzw-prog-step {
  display: flex;
  align-items: center;
  gap: 11px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-text-dim);
  transition: color 0.3s ease;
}
.cotzw-prog-num {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700;
  border: 1.5px solid var(--color-line-2);
  background: var(--color-bg-2);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.cotzw-prog-label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.cotzw-prog-step.is-active { color: #fff; }
.cotzw-prog-step.is-active .cotzw-prog-num {
  border-color: var(--color-azul-claro);
  background: linear-gradient(135deg, var(--color-azul), var(--color-azul-claro));
  color: #fff;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.15), 0 6px 18px -6px rgba(59,130,246,0.6);
}
.cotzw-prog-step.is-done { color: var(--color-azul-claro); }
.cotzw-prog-step.is-done .cotzw-prog-num {
  border-color: var(--color-azul-claro);
  background: rgba(59,130,246,0.12);
  color: var(--color-azul-claro);
}
.cotzw-prog-line {
  flex: 1;
  height: 2px;
  background: var(--color-line-2);
  border-radius: 2px;
  overflow: hidden;
  min-width: 16px;
}
.cotzw-prog-line i {
  display: block; width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--color-azul), var(--color-azul-claro));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cotzw-prog-line.is-filled i { width: 100%; }

/* ── Layout: pasos + ticket ── */
.cotzw-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── Pasos ── */
.cotzw-form { position: relative; }
.cotzw-step { display: none; animation: cotzw-fade 0.4s cubic-bezier(0.16,1,0.3,1); }
.cotzw-step.is-active { display: block; }
@keyframes cotzw-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cotzw-step-head { margin-bottom: 24px; }
.cotzw-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--color-azul-claro);
  margin-bottom: 10px;
}
.cotzw-step-head h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
  color: #fff;
}
.cotzw-step-head h3 em {
  font-style: normal;
  color: var(--color-azul-claro);
}
.cotzw-step-head p {
  font-size: 14.5px; color: var(--color-text-muted); line-height: 1.55; margin: 0; max-width: 52ch;
}

/* ── Picker (agregar equipo) ── */
.cotzw-picker {
  display: grid;
  grid-template-columns: 1fr 84px auto;
  gap: 10px;
}
.cotzw-picker-select, .cotzw-picker-qty {
  height: 50px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line-2);
  border-radius: 12px;
  color: var(--color-text);
  font-size: 14px;
  padding: 0 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.cotzw-picker-select:focus, .cotzw-picker-qty:focus {
  outline: none;
  border-color: var(--color-azul-claro);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.cotzw-picker-qty { text-align: center; padding: 0 8px; }
.cotzw-picker-add {
  display: inline-flex; align-items: center; gap: 7px;
  height: 50px; padding: 0 20px;
  border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-azul), var(--color-azul-claro));
  color: #fff; font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 22px -10px rgba(59,130,246,0.7);
}
.cotzw-picker-add svg { width: 17px; height: 17px; }
.cotzw-picker-add:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(59,130,246,0.8); }
.cotzw-flash { animation: cotzw-flash 0.6s ease; }
@keyframes cotzw-flash {
  0%, 100% { border-color: var(--color-line-2); }
  30%, 70% { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.2); }
}

/* ── Lista de equipos agregados ── */
.cotzw-eqlist-wrap { margin-top: 22px; }
.cotzw-eqlist-head {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--color-text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-line);
}
.cotzw-eqlist { display: flex; flex-direction: column; gap: 10px; }
.cotzw-eq {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  animation: cotzw-fade 0.3s ease;
  transition: border-color 0.25s ease;
}
.cotzw-eq:hover { border-color: rgba(59,130,246,0.3); }
.cotzw-eq-info { flex: 1; min-width: 0; }
.cotzw-eq-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.cotzw-eq-meta { font-size: 12px; color: var(--color-text-dim); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cotzw-eq-cat { color: var(--color-azul-claro); font-weight: 600; }
.cotzw-eq-qty {
  display: flex; align-items: center; gap: 2px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-line-2);
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}
.cotzw-eq-step {
  width: 30px; height: 30px;
  border: none; background: transparent;
  color: var(--color-azul-claro); font-size: 18px; font-weight: 700;
  cursor: pointer; border-radius: 8px; line-height: 1;
  transition: background 0.2s ease;
}
.cotzw-eq-step:hover { background: rgba(59,130,246,0.15); }
.cotzw-eq-num { min-width: 26px; text-align: center; font-weight: 700; font-size: 14px; color: #fff; font-family: 'JetBrains Mono', monospace; }
.cotzw-eq-remove {
  width: 34px; height: 34px;
  border: 1px solid var(--color-line-2); border-radius: 9px;
  background: transparent; color: var(--color-text-dim);
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.cotzw-eq-remove svg { width: 16px; height: 16px; }
.cotzw-eq-remove:hover { border-color: #f87171; color: #f87171; background: rgba(248,113,113,0.08); }
.cotzw-eq-empty {
  font-size: 13.5px; color: var(--color-text-dim);
  padding: 24px; text-align: center;
  border: 1px dashed var(--color-line-2); border-radius: 12px;
  background: rgba(255,255,255,0.01);
}

/* ── Badge de días ── */
.cotzw-dias {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 14px 0 6px;
  padding: 11px 16px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 10px;
  font-size: 13.5px; color: var(--color-text);
}
.cotzw-dias svg { width: 17px; height: 17px; color: var(--color-azul-claro); }
.cotzw-dias strong { color: #fff; font-weight: 700; }

/* ── Error + navegación ── */
.cotzw-error {
  margin: 18px 0 0;
  padding: 12px 16px;
  font-size: 13.5px; color: #fecaca;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.35);
  border-radius: 10px;
  animation: cotzw-fade 0.25s ease;
}
.cotzw-nav {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.cotzw-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 52px; padding: 0 26px;
  border-radius: 12px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.cotzw-btn svg { width: 18px; height: 18px; }
.cotzw-btn-back {
  background: transparent; border-color: var(--color-line-2); color: var(--color-text-muted);
}
.cotzw-btn-back:hover { border-color: var(--color-text-muted); color: #fff; }
.cotzw-btn-next {
  margin-left: auto;
  background: linear-gradient(135deg, var(--color-azul), var(--color-azul-claro));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(59,130,246,0.7);
}
.cotzw-btn-next:hover { filter: brightness(1.1); transform: translateY(-1px); }
.cotzw-btn-submit {
  margin-left: auto;
  background: linear-gradient(135deg, #1faa52, var(--color-wa));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(37,211,102,0.7);
}
.cotzw-btn-submit svg { width: 19px; height: 19px; }
.cotzw-btn-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── Ticket resumen en vivo ── */
.cotzw-summary { position: sticky; top: 100px; }
.cotzw-ticket {
  position: relative;
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(30,85,170,0.16), transparent 70%),
    linear-gradient(180deg, var(--color-bg-2), var(--color-bg-3));
  border: 1px solid var(--color-line-2);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 24px 70px -28px rgba(0,0,0,0.7);
  overflow: hidden;
}
.cotzw-ticket::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-azul), var(--color-azul-claro), #9CDEFF);
}
.cotzw-ticket-head { margin-bottom: 16px; }
.cotzw-ticket-brand {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--color-azul-claro);
}
.cotzw-ticket-title {
  display: block;
  font-family: 'Anton', sans-serif; font-size: 22px;
  text-transform: uppercase; color: #fff; margin-top: 4px; line-height: 1;
}
.cotzw-ticket-perf {
  height: 1px; margin: 16px 0;
  background-image: linear-gradient(90deg, var(--color-line-2) 50%, transparent 50%);
  background-size: 8px 1px; background-repeat: repeat-x;
}
.cotzw-ticket-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 7px 0;
}
.cotzw-ticket-k {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-dim); font-weight: 600; flex-shrink: 0;
}
.cotzw-ticket-v {
  font-size: 14px; font-weight: 600; color: #fff; text-align: right;
  overflow: hidden; text-overflow: ellipsis;
}
.cotzw-ticket-block { padding: 9px 0; }
.cotzw-ticket-block .cotzw-ticket-k { display: block; margin-bottom: 8px; }
.cotzw-ticket-count {
  display: inline-block; margin-left: 4px;
  min-width: 20px; padding: 1px 7px;
  background: var(--color-azul); color: #fff;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0;
}
.cotzw-ticket-eq { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.cotzw-ticket-eq li {
  font-size: 13px; color: var(--color-text); line-height: 1.4;
  padding-left: 2px;
}
.cotzw-sum-q { color: var(--color-azul-claro); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.cotzw-sum-empty { color: var(--color-text-dim) !important; font-style: italic; }
.cotzw-sum-dim { color: var(--color-text-dim); font-style: italic; font-size: 13px; }
.cotzw-ticket-periodo { font-size: 13.5px; color: var(--color-text); line-height: 1.5; }
.cotzw-sum-days {
  display: inline-block; margin-left: 8px;
  padding: 2px 9px; border-radius: 100px;
  background: rgba(59,130,246,0.15); color: var(--color-azul-claro);
  font-size: 12px; font-weight: 700;
}
.cotzw-ticket-contacto { font-size: 13.5px; color: var(--color-text); line-height: 1.5; }
.cotzw-sum-name { font-weight: 700; color: #fff; }
.cotzw-ticket-foot {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--color-text-dim); line-height: 1.4;
}
.cotzw-ticket-foot svg { width: 16px; height: 16px; color: var(--color-wa); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .cotzw-body { grid-template-columns: 1fr; }
  .cotzw-summary { position: relative; top: 0; order: -1; }
  .cotzw-ticket { padding: 20px 18px; }
}
@media (max-width: 560px) {
  .cotzw-progress { gap: 6px; }
  .cotzw-prog-num { width: 32px; height: 32px; font-size: 12px; }
  .cotzw-prog-label { display: none; }
  .cotzw-prog-step.is-active .cotzw-prog-label { display: inline; }
  .cotzw-picker { grid-template-columns: 1fr auto; }
  .cotzw-picker-qty { grid-column: 1; width: 84px; }
  .cotzw-picker-add { grid-column: 2; grid-row: 2; }
  .cotzw-nav { flex-wrap: wrap; }
  .cotzw-btn { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   COTIZADOR — Header con imagen + shader Liquid Crystal (OLED)
═══════════════════════════════════════════════════════════════ */
.page-header-cotizador {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
  /* Más grande para que se vea bien el fondo */
  min-height: 86vh;
  padding-top: calc(var(--header-h-total) + 96px);
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
}
.page-header-cotizador > .page-header-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/fondos/cotizador-header-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0.82;
  filter: contrast(1.08) brightness(0.98);
  mix-blend-mode: screen;
}
.page-header-cotizador > .gradient-mesh-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.30;          /* transparente → predomina el fondo (OLED) */
  mix-blend-mode: screen;
}
.page-header-cotizador > .page-header-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 100% at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.12) 50%, transparent 100%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 90%, var(--color-bg) 100%);
}
.page-header-cotizador > .container { position: relative; z-index: 3; }
@media (max-width: 768px) {
  .page-header-cotizador {
    min-height: 66vh;
    padding-top: calc(var(--header-h-total) + 40px);
    padding-bottom: 84px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COTIZADOR — CTA: explora catálogo + carrito
═══════════════════════════════════════════════════════════════ */
.cotz-catalog-cta {
  position: relative;
  overflow: hidden;
  margin: 8px 0 44px;
  padding: 40px 44px;
  border-radius: 20px;
  border: 1px solid rgba(91, 163, 255, 0.22);
  background:
    radial-gradient(ellipse 90% 120% at 100% 0%, rgba(30, 85, 170, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(10, 18, 36, 0.9), rgba(6, 10, 20, 0.92));
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}
.cotz-cta-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.cotz-cta-content { position: relative; z-index: 1; }
.cotz-cta-kicker {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--color-azul-claro);
  margin-bottom: 12px;
}
.cotz-cta-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.cotz-cta-title em { font-style: normal; color: var(--color-azul-claro); }
.cotz-cta-text {
  font-size: 14.5px; color: var(--color-text-muted);
  line-height: 1.6; margin: 0 0 24px; max-width: 52ch;
}
.cotz-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cotz-cta-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 50px; padding: 0 22px;
  border-radius: 12px;
  font-size: 14.5px; font-weight: 700; text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.cotz-cta-btn svg { width: 18px; height: 18px; }
.cotz-cta-btn-primary {
  background: linear-gradient(135deg, var(--color-azul), var(--color-azul-claro));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(59,130,246,0.7);
}
.cotz-cta-btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.cotz-cta-btn-ghost {
  background: rgba(91, 163, 255, 0.08);
  border-color: rgba(91, 163, 255, 0.3);
  color: #fff;
}
.cotz-cta-btn-ghost:hover { background: rgba(91, 163, 255, 0.16); border-color: rgba(91, 163, 255, 0.5); }
.cotz-cta-badge {
  display: none;
  align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  margin-left: 2px;
  background: var(--color-azul-claro); color: #fff;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
/* Pasos 01-02-03 */
.cotz-cta-steps {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 28px;
  border-left: 1px solid rgba(91, 163, 255, 0.18);
}
.cotz-cta-step {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--color-text); font-weight: 500;
}
.cotz-cta-step span {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(91,163,255,0.3);
  color: var(--color-azul-claro);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 700;
}
@media (max-width: 820px) {
  .cotz-catalog-cta { grid-template-columns: 1fr; gap: 28px; padding: 32px 26px; }
  .cotz-cta-steps { padding-left: 0; padding-top: 24px; border-left: none; border-top: 1px solid rgba(91,163,255,0.18); }
}

/* ═══════════════════════════════════════════════════════════════
   COTIZADOR — Decoración de fondo del page-body (OLED)
   glows azules + mesh de puntos + partículas tenues
═══════════════════════════════════════════════════════════════ */
body.page-cotizador .page-body {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    /* funde a negro puro abajo → sin seam con el footer (#000) */
    linear-gradient(180deg, transparent 86%, #000000 100%),
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(28, 78, 160, 0.10), transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 55%, #050A14 0%, #02050C 100%);
}
body.page-cotizador .page-body > .container { position: relative; z-index: 2; }

/* Glows azules animados — sutiles (OLED) */
.cotz-bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 660px 500px at 4% 10%,  rgba(24, 70, 150, 0.12), transparent 72%),
    radial-gradient(ellipse 640px 540px at 96% 28%, rgba(30, 85, 175, 0.10), transparent 74%),
    radial-gradient(ellipse 740px 520px at 14% 70%, rgba(34, 90, 185, 0.08), transparent 72%),
    radial-gradient(ellipse 660px 480px at 92% 90%, rgba(24, 70, 150, 0.10), transparent 72%);
  filter: blur(32px);
  animation: cotz-bg-drift 32s ease-in-out infinite alternate;
}
@keyframes cotz-bg-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-22px, 14px) scale(1.05); }
}

/* Aurora ribbons — bandas de luz diagonales suaves */
.cotz-bg-aurora {
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 28%, rgba(45, 105, 200, 0.12) 41%, transparent 50%),
    linear-gradient(118deg, transparent 52%, rgba(60, 125, 220, 0.09) 64%, transparent 74%),
    linear-gradient(118deg, transparent 76%, rgba(30, 85, 170, 0.10) 86%, transparent 94%);
  filter: blur(42px);
  opacity: 0.9;
  animation: cotz-aurora-move 28s ease-in-out infinite alternate;
}

/* Grano OLED — micro textura que rompe el negro plano */
.cotz-bg-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 92%, transparent 100%);
}
@keyframes cotz-aurora-move {
  0%   { transform: translate3d(-3%, -2%, 0) rotate(0deg) scale(1.05); }
  100% { transform: translate3d(4%, 3%, 0) rotate(4deg) scale(1.12); }
}

/* Partículas flotantes */
.cotz-bg-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.cotz-bg-particles span {
  position: absolute;
  bottom: -10px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(140, 195, 255, 0.85);
  box-shadow: 0 0 6px rgba(91, 163, 255, 0.8), 0 0 14px rgba(59, 130, 246, 0.45);
  animation: cotz-particle-rise linear infinite;
  opacity: 0;
}
.cotz-bg-particles span:nth-child(1)  { left: 7%;  width: 2px; height: 2px; animation-duration: 26s; animation-delay: 0s; }
.cotz-bg-particles span:nth-child(2)  { left: 15%;                           animation-duration: 32s; animation-delay: 6s; }
.cotz-bg-particles span:nth-child(3)  { left: 23%; width: 4px; height: 4px; animation-duration: 38s; animation-delay: 2s; }
.cotz-bg-particles span:nth-child(4)  { left: 31%;                           animation-duration: 28s; animation-delay: 10s; }
.cotz-bg-particles span:nth-child(5)  { left: 39%; width: 2px; height: 2px; animation-duration: 34s; animation-delay: 13s; }
.cotz-bg-particles span:nth-child(6)  { left: 47%;                           animation-duration: 30s; animation-delay: 4s; }
.cotz-bg-particles span:nth-child(7)  { left: 54%; width: 4px; height: 4px; animation-duration: 40s; animation-delay: 16s; }
.cotz-bg-particles span:nth-child(8)  { left: 61%;                           animation-duration: 27s; animation-delay: 7s; }
.cotz-bg-particles span:nth-child(9)  { left: 68%; width: 2px; height: 2px; animation-duration: 36s; animation-delay: 11s; }
.cotz-bg-particles span:nth-child(10) { left: 74%;                           animation-duration: 29s; animation-delay: 18s; }
.cotz-bg-particles span:nth-child(11) { left: 80%; width: 3px; height: 3px; animation-duration: 33s; animation-delay: 3s; }
.cotz-bg-particles span:nth-child(12) { left: 86%;                           animation-duration: 31s; animation-delay: 14s; }
.cotz-bg-particles span:nth-child(13) { left: 92%; width: 4px; height: 4px; animation-duration: 42s; animation-delay: 8s; }
.cotz-bg-particles span:nth-child(14) { left: 35%; width: 3px; height: 3px; animation-duration: 44s; animation-delay: 22s; }
.cotz-bg-particles span:nth-child(15) { left: 58%;                           animation-duration: 37s; animation-delay: 17s; }
.cotz-bg-particles span:nth-child(16) { left: 88%; width: 3px; height: 3px; animation-duration: 39s; animation-delay: 10s; }
@keyframes cotz-particle-rise {
  0%   { transform: translateY(0) translateX(0);      opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-46vh) translateX(7px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-94vh) translateX(-5px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cotz-bg-glow, .cotz-bg-aurora { animation: none; }
  .cotz-bg-particles span { animation: none; opacity: 0.3; }
}

/* ═══════════════════════════════════════════════════════════════
   CARRITO — Header con imagen de fondo
═══════════════════════════════════════════════════════════════ */
.page-header-carrito {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #000 !important;
  min-height: 84vh;
  padding-top: calc(var(--header-h-total) + 96px);
  padding-bottom: 130px;
  display: flex;
  align-items: center;
  border-bottom: none !important;
}
.page-header-carrito > .page-header-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/fondos/carrito-header-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  opacity: 0.72;
  filter: contrast(1.06) brightness(0.96);
}
.page-header-carrito > .cathedral-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.32;          /* transparente → se ve el fondo (OLED) */
  mix-blend-mode: screen;
}
.page-header-carrito > .page-header-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 100% at 30% 50%, rgba(0,0,0,0.4) 0%, transparent 70%),
    linear-gradient(180deg, rgba(2,5,12,0.45) 0%, rgba(2,5,12,0.18) 45%, rgba(2,5,12,0.55) 100%),
    linear-gradient(180deg, transparent 60%, var(--color-bg) 100%);
}
.page-header-carrito > .container { position: relative; z-index: 3; }
@media (max-width: 768px) {
  .page-header-carrito {
    min-height: 64vh;
    padding-top: calc(var(--header-h-total) + 40px);
    padding-bottom: 80px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CARRITO — mejoras: toast, badge categoría, sugerencias, barra móvil
═══════════════════════════════════════════════════════════════ */

/* Toast global */
.imp-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 24px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, #1faa52, var(--color-wa));
  color: #fff;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 16px 40px -12px rgba(37, 211, 102, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  max-width: calc(100vw - 32px);
}
.imp-toast svg { width: 18px; height: 18px; flex-shrink: 0; }
.imp-toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* Badge de categoría en cart items */
.cart-item-cat {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.14em; font-weight: 700;
  text-transform: uppercase;
  color: var(--color-azul-claro);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 3px 9px; border-radius: 100px;
  margin-bottom: 8px;
}

/* Sugerencias en estado vacío */
.cart-suggest { margin-top: 44px; width: 100%; max-width: 720px; }
.cart-suggest-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--color-azul-claro); margin-bottom: 18px;
}
.cart-suggest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.cart-suggest-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 16px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cart-suggest-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-2px); }
.cart-suggest-img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 4px; }
.cart-suggest-cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-azul-claro); font-weight: 700; }
.cart-suggest-name { font-size: 13.5px; font-weight: 600; color: #fff; text-align: center; }
.cart-suggest-btn {
  margin-top: 6px;
  padding: 9px 18px; border-radius: 10px;
  border: 1px solid rgba(91,163,255,0.35);
  background: rgba(59,130,246,0.1);
  color: #fff; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease;
}
.cart-suggest-btn:hover { background: var(--color-azul); border-color: transparent; }
@media (max-width: 620px) {
  .cart-suggest-grid { grid-template-columns: 1fr; }
}

/* Barra fija móvil de checkout */
.cart-mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;            /* solo móvil (se activa en media query) */
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(8,12,20,0.96), rgba(4,6,12,0.99));
  border-top: 1px solid rgba(91, 163, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.6);
}
.cart-mobile-info { display: flex; flex-direction: column; line-height: 1.3; }
.cart-mobile-count { font-size: 15px; color: #fff; }
.cart-mobile-count strong { color: var(--color-azul-claro); font-size: 17px; }
.cart-mobile-sub { font-size: 12px; color: var(--color-text-muted); }
.cart-mobile-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--color-azul), var(--color-azul-claro));
  color: #fff; font-size: 14.5px; font-weight: 700; text-decoration: none;
  white-space: nowrap;
}
.cart-mobile-btn svg { width: 17px; height: 17px; }
@media (max-width: 900px) {
  body.page-carrito .page-body { padding-bottom: 90px; }
  .cart-mobile-bar { display: flex; }
  /* el aside de escritorio ya no necesita ser sticky en móvil */
  .cart-aside { position: static; }
}

/* Decoración de fondo del carrito (reusa capas cotz-bg) */
body.page-carrito .page-body {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 86%, #000000 100%),
    radial-gradient(ellipse 120% 70% at 50% 0%, rgba(28, 78, 160, 0.10), transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 55%, #050A14 0%, #02050C 100%);
}
body.page-carrito .page-body > .container { position: relative; z-index: 2; }

/* Equipos relacionados */
.cart-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
}
.cart-related-head { margin-bottom: 24px; }
.cart-related-head h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 400; color: #fff; margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cart-related-head p { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.cart-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.cart-rel-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 22px 18px;
  background: var(--color-bg-2);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cart-rel-card:hover { border-color: rgba(59,130,246,0.4); transform: translateY(-3px); }
.cart-rel-thumb {
  position: relative;
  width: 100%; height: 96px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.cart-rel-img { max-width: 100%; max-height: 96px; object-fit: contain; }
.cart-rel-ph { width: 40px; height: 40px; color: var(--color-text-dim); display: none; }
.cart-rel-thumb.is-noimg .cart-rel-ph { display: block; }
.cart-rel-cat {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-azul-claro); font-weight: 700;
}
.cart-rel-name { font-size: 14.5px; font-weight: 700; color: #fff; }
.cart-rel-desc { font-size: 12.5px; color: var(--color-text-muted); margin-bottom: 6px; }
.cart-rel-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 10px;
  border: 1px solid rgba(91,163,255,0.3);
  background: rgba(59,130,246,0.1);
  color: #fff; font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease;
}
.cart-rel-btn svg { width: 15px; height: 15px; }
.cart-rel-btn:hover { background: var(--color-azul); border-color: transparent; }
@media (max-width: 760px) {
  .cart-related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   CATÁLOGO — Badge de disponibilidad (arriba-izquierda de la tarjeta)
═══════════════════════════════════════════════════════════════ */
.maq-card-avail-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #8ef0b4;
  background: rgba(6, 16, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(37, 211, 102, 0.4);
  line-height: 1;
}
.maq-card-avail-badge svg { width: 11px; height: 11px; flex-shrink: 0; }
@media (max-width: 480px) {
  .maq-card-avail-badge { font-size: 9.5px; padding: 4px 8px; top: 10px; left: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES MÓVIL — barra que quepa + cuadrículas más densas
   (NO se tocan tamaños de títulos/logo — quedan como en PC)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Barra de navegación: que SIEMPRE quepa */
  .header-nav { padding: 5px 6px; gap: 1px; max-width: calc(100vw - 20px); }
  .nav-link { padding: 5px 9px; font-size: 11px; }
  .nav-cart { padding: 5px 8px; }
  .header { top: 10px; }
}

/* ── Cuadrículas: caben varios por fila en móvil (como en PC) ── */
@media (max-width: 768px) {
  /* Cuadros del home (Información, Catálogo, Cobertura, Contacto) → 2x2 */
  .quick-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .quick-card { padding: 18px 16px; }
  .quick-card h3 { font-size: 17px; }
  .quick-card p { font-size: 12.5px; }

  /* Valores / Objetivos / Soluciones → 2 columnas */
  .valores-grid { grid-template-columns: 1fr 1fr !important; }
  .obj-grid:not(.obj-timeline), .sol-grid { grid-template-columns: 1fr 1fr; }
  /* Si queda un cuadro impar al final, que ocupe el ancho completo (sin celda gris) */
  .valores-grid .obj-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .sol-grid .sol-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  /* Catálogo de máquinas → 2 columnas */
  .maq-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .maq-card-img-wrap { height: 160px; }
  .maq-card-body { padding: 16px 14px; }
  .maq-card-modelo { font-size: 20px; }
  .maq-card-desc { font-size: 12.5px; }
  .maq-card-specs { gap: 6px; }
  .maq-card-spec { font-size: 11px; padding: 4px 9px; }
}

@media (max-width: 360px) {
  /* Solo en pantallas muy chicas, máquinas a 1 col */
  .maq-grid { grid-template-columns: 1fr; }
  .maq-card-img-wrap { height: 200px; }
}

/* ── Compactar cuadros: Información · Cobertura · Catálogo (móvil) ── */
@media (max-width: 768px) {
  /* ─── INFORMACIÓN ─── */
  /* Misión / Visión */
  .mv-block { padding: 28px 0; }
  .mv-block[data-bignum]::before,
  .mv-block::before { font-size: clamp(80px, 24vw, 130px) !important; }
  .mv-block h3 { font-size: clamp(20px, 5.5vw, 28px); }
  .mv-block p { font-size: 13.5px; }

  /* Valores / Objetivos (cuadros) */
  .obj-card { padding: 20px 18px; gap: 10px; }
  .obj-card h3 { font-size: 18px; }
  .obj-card p { font-size: 13px; }
  .obj-num { font-size: 12px; }

  /* Soluciones (blueprint) */
  .section-blueprint { padding: 48px 18px 44px; }
  .section-blueprint .sol-grid { margin-top: 22px; gap: 14px; }
  .sol-card { padding: 20px 16px; }
  .sol-card h3 { font-size: 18px; }
  .sol-card p { font-size: 12.5px; }

  /* Servicios (filas) */
  .servicio-row { padding: 18px 16px; gap: 14px; }
  .servicio-title { font-size: 16px; }
  .servicio-desc { font-size: 12.5px; }
  .servicio-num { font-size: 30px; }

  /* En Cifras */
  .stat { padding: 24px 12px; }
  .stat-num { font-size: clamp(32px, 9vw, 48px); }
  .stat-label { font-size: 10px; }

  /* Panel servicios (wrapper oscuro) */
  .section-panel { padding: 44px 18px 40px; }

  /* ─── COBERTURA ─── */
  .cob-branch { padding: 22px 20px; }
  .cob-branch-name { font-size: clamp(22px, 6vw, 28px); }
  .cob-branch-row { font-size: 13px; }
  .cob-chip { padding: 7px 13px; font-size: 12px; }
  .cob-map-info-card { padding: 20px 18px; }
  .cob-map-info-state { font-size: clamp(22px, 6vw, 30px); }
  .cob-map-info-desc { font-size: 13.5px; }
  .cob-process-icon { width: 54px; height: 54px; }
  .cob-process-icon svg { width: 24px; height: 24px; }
  .cob-process-step h3 { font-size: 16px; }
  .cob-process-step p { font-size: 12.5px; }
  .cob-leaflet { height: 320px; }

  /* ─── CATÁLOGO (más compacto) ─── */
  .maq-card-img-wrap { height: 150px; }
  .maq-card-body { padding: 14px 12px; }
  .maq-card-marca { font-size: 10px; }
  .maq-card-modelo { font-size: 18px; }
  .maq-card-desc { font-size: 12px; line-height: 1.4; }
  .maq-card-spec { font-size: 10.5px; padding: 3px 8px; }
  .maq-btn { font-size: 12.5px; padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════
   RENDIMIENTO — Nota: se retiró `content-visibility: auto` del catálogo.
   En algunos navegadores, al hacer scroll rápido, dejaba sin pintar el
   contenido que va DESPUÉS de las categorías (el footer aparecía en blanco).
   El catálogo conserva lazy-load de imágenes y el shader aligerado, que dan
   el rendimiento necesario sin ese efecto secundario.
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   COBERTURA — fusión: chips de ciudades dentro de cada tarjeta de sucursal
═══════════════════════════════════════════════ */
.cob-branch-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;   /* aire antes de los botones Cómo llegar / WhatsApp */
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}
/* Nota de logística — centrada debajo de "Dónde nos encuentras" */
#cob-ciudades .section-lead {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cob-branch-cities-label {
  width: 100%;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-azul-claro);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════
   CATÁLOGO — subgrupos dentro de una categoría (ej. tijera / articuladas)
═══════════════════════════════════════════════ */
.maq-subgroup-label {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--color-azul-claro);
  letter-spacing: 0.01em;
  margin: 6px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.maq-subgroup-label span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}
.maq-subgroup-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,163,255,0.40), transparent);
  margin: 44px 0 0;
}

/* Botón "Ficha técnica" (secundario, debajo de Cotizar ahora) */
.maq-btn-ficha {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: var(--color-text);
}
.maq-btn-ficha:hover {
  background: rgba(59, 130, 246, 0.16);
  border-color: var(--color-azul-claro);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   INICIO — fondo en degradado azul oscuro → celeste (solo page-home).
   El HERO mantiene su propia imagen/fondo; el degradado arranca casi
   negro para que la unión hero→cuerpo no tenga costura y baja a celeste.
════════════════════════════════════════════════════════════════ */
body.page-home { background: #0A0F1A; }
/* Mesh en capa fija (GPU) en vez de background-attachment:fixed → scroll fluido,
   se ve idéntico pero ya no repinta toda la pantalla en cada frame. */
body.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 82% 58%, rgba(104, 186, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 65% 50% at 16% 74%, rgba(38, 120, 214, 0.30),  transparent 62%),
    radial-gradient(ellipse 80% 55% at 60% 92%, rgba(128, 210, 255, 0.20), transparent 60%),
    linear-gradient(180deg, #0A0F1A 0%, #0E2138 30%, #154A84 70%, #1E5C9E 100%);
}
/* Footer del inicio: cierra el degradado en celeste (en vez de negro) */
body.page-home .site-footer {
  background: linear-gradient(180deg, #1A4D86 0%, #123A66 100%) !important;
}

/* ════════════════════════════════════════════════════════════════
   TEMA CONTENIDO BLANCO en subpáginas (info / catálogo / cotizador).
   El BANNER de arriba (foto + shader azul) se queda como está; solo el
   CONTENIDO pasa a blanco con detalles azules (burbujas celestes) y
   texto navy. El inicio NO se toca.
════════════════════════════════════════════════════════════════ */
body.page-info,
body.page-catalogo,
body.page-cotizador { background: #FFFFFF; }

/* Tokens del contenido: texto navy sobre superficies blancas */
body.page-info .page-body,
body.page-catalogo .page-body,
body.page-cotizador .page-body {
  --color-bg: #FFFFFF;
  --color-bg-2: #F4F8FD;
  --color-bg-3: #E9F1FB;
  --color-line: rgba(30, 85, 170, 0.30);
  --color-line-2: rgba(30, 85, 170, 0.48);
  --color-text: #10294B;
  --color-text-muted: #3D5A82;
  --color-text-dim: #7189A9;
  background: transparent !important;
  color: #10294B;
}

/* Fondo fijo (capa GPU): blanco con "burbujas" celestes suaves */
body.page-info::before,
body.page-catalogo::before,
body.page-cotizador::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 420px at 12% 18%, rgba(120, 185, 250, 0.16), transparent 70%),
    radial-gradient(circle 340px at 88% 12%, rgba(59, 130, 246, 0.12),  transparent 70%),
    radial-gradient(circle 500px at 82% 62%, rgba(120, 185, 250, 0.14), transparent 70%),
    radial-gradient(circle 380px at 10% 78%, rgba(59, 130, 246, 0.10),  transparent 70%),
    radial-gradient(circle 300px at 50% 95%, rgba(120, 185, 250, 0.12), transparent 70%),
    #FFFFFF;
}

/* INFO — decoraciones reajustadas al blanco: las nubes azules animadas se
   quedan (dan vida); las capas afinadas para fondo negro se apagan. */
body.page-info .page-body-veil { background: none !important; }
body.page-info .page-body-bg-image { display: none !important; }
body.page-info .page-body-noise { display: none !important; }
body.page-info .page-body-clouds {
  mix-blend-mode: normal !important;
  opacity: 0.55 !important;
  filter: blur(42px) saturate(1.1) !important;
  will-change: transform;
}
/* COTIZADOR — glow/aurora azules se leen celestes sobre blanco (se quedan);
   el grano ensuciaría el blanco (se apaga); partículas tintadas de azul. */
body.page-cotizador .cotz-bg-grain { display: none !important; }
body.page-cotizador .cotz-bg-glow,
body.page-cotizador .cotz-bg-aurora { will-change: transform; }
body.page-cotizador .cotz-bg-particles span {
  background: rgba(30, 100, 210, 0.65) !important;
  box-shadow: 0 0 5px rgba(30, 100, 210, 0.32) !important;
}

/* Puntitos/estrellitas flotantes en las 3 páginas blancas: eran celeste-claro
   (invisibles sobre blanco) → azul firme y por encima del contenido. */
body.page-info .cat-particles,
body.page-catalogo .cat-particles,
body.page-cotizador .cat-particles { z-index: 3 !important; }
body.page-info .cat-particle,
body.page-catalogo .cat-particle,
body.page-cotizador .cat-particle {
  background: rgba(30, 100, 210, 0.7) !important;
  box-shadow:
    0 0 5px rgba(30, 100, 210, 0.40),
    0 0 11px rgba(59, 130, 246, 0.22) !important;
}

/* Servicios (info): el título en hover era BLANCO (invisible sobre blanco) → azul */
body.page-info .servicio-row:hover .servicio-title { color: var(--color-azul) !important; }

/* Footer celeste en las tres (conserva su imagen/aurora encima) */
body.page-info .site-footer,
body.page-catalogo .site-footer,
body.page-cotizador .site-footer {
  background: linear-gradient(180deg, #1A4D86 0%, #123A66 100%) !important;
}

/* ── Footer celeste (inicio + las 3): textos claros para que se lean sobre el
   azul; antes heredaban grises del tema oscuro y casi no se veían. ── */
body.page-home .site-footer,
body.page-info .site-footer,
body.page-catalogo .site-footer,
body.page-cotizador .site-footer {
  --color-text: #FFFFFF;
  --color-text-muted: rgba(255, 255, 255, 0.82);
  --color-text-dim: rgba(255, 255, 255, 0.68);
}
body.page-home .footer-desc,   body.page-info .footer-desc,
body.page-catalogo .footer-desc, body.page-cotizador .footer-desc,
body.page-home .footer-link-label,   body.page-info .footer-link-label,
body.page-catalogo .footer-link-label, body.page-cotizador .footer-link-label,
body.page-home .footer-bottom-left,   body.page-info .footer-bottom-left,
body.page-catalogo .footer-bottom-left, body.page-cotizador .footer-bottom-left,
body.page-home .footer-btn,   body.page-info .footer-btn,
body.page-catalogo .footer-btn, body.page-cotizador .footer-btn {
  color: rgba(255, 255, 255, 0.85) !important;
}
body.page-home .footer-ornet,   body.page-info .footer-ornet,
body.page-catalogo .footer-ornet, body.page-cotizador .footer-ornet,
body.page-home .footer-ornet a,   body.page-info .footer-ornet a,
body.page-catalogo .footer-ornet a, body.page-cotizador .footer-ornet a {
  color: rgba(255, 255, 255, 0.78) !important;
}
body.page-home .footer-ornet a:hover,   body.page-info .footer-ornet a:hover,
body.page-catalogo .footer-ornet a:hover, body.page-cotizador .footer-ornet a:hover,
body.page-home .footer-btn:hover,   body.page-info .footer-btn:hover,
body.page-catalogo .footer-btn:hover, body.page-cotizador .footer-btn:hover {
  color: #FFFFFF !important;
}

/* ── Subtítulos sobre azul: el texto normal era gris → blanco. Los <strong>/<em>
   (detalles claros/azules) conservan su propio color, no se tocan. ── */
body.page-info .page-subtitle,
body.page-catalogo .page-subtitle,
body.page-cotizador .page-subtitle,
body.page-home .home-map-section .section-lead {
  color: rgba(255, 255, 255, 0.90) !important;
}

/* ── Servicios (.section-panel): tarjeta blanca con acentos azules ── */
body.page-info .section-panel {
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    #FFFFFF !important;
  border: 1px solid rgba(30, 85, 170, 0.18) !important;
  box-shadow: 0 24px 60px -30px rgba(16, 42, 90, 0.25) !important;
}

/* ── Franjas internas: blanco con tinte azul muy suave en las pares ── */
body.page-info .page-body > .section:nth-of-type(odd),
body.page-cotizador .page-body > .section:nth-of-type(odd),
body.page-catalogo .page-body > .catalogo-cat:nth-of-type(odd) {
  background: transparent !important;
}
body.page-info .page-body > .section:nth-of-type(even),
body.page-cotizador .page-body > .section:nth-of-type(even),
body.page-catalogo .page-body > .catalogo-cat:nth-of-type(even) {
  background: rgba(30, 85, 170, 0.045) !important;
}

/* ── Banners (arriba): se quedan azules como están; solo su parte BAJA hace
   fade a blanco para que el azul del banner fluya hacia el contenido. ── */
body.page-info .page-header,
body.page-catalogo .page-header,
body.page-cotizador .page-header {
  background: linear-gradient(180deg, #1D4A7E 0%, #15396B 100%) !important;
}
body.page-info .page-header-overlay,
body.page-catalogo .page-header-veil,
body.page-cotizador .page-header-veil {
  opacity: 1 !important;
  background:
    radial-gradient(ellipse 70% 100% at center, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 50%, transparent 100%),
    linear-gradient(180deg, transparent 58%, rgba(255,255,255,0.55) 86%, #FFFFFF 100%) !important;
}

/* ── Tarjetas y chips sobre blanco ── */
body.page-catalogo .maq-card {
  box-shadow: 0 14px 34px -22px rgba(16, 42, 90, 0.25);
}
body.page-catalogo .maq-card-spec {
  background: rgba(30, 85, 170, 0.07) !important;
  border: 1px solid rgba(30, 85, 170, 0.14) !important;
  color: #2A4E7E !important;
}
body.page-catalogo .maq-btn-ficha {
  background: rgba(30, 85, 170, 0.06);
  border: 1px solid rgba(30, 85, 170, 0.30);
  color: var(--color-text);
}
body.page-catalogo .maq-btn-ficha:hover {
  background: var(--color-azul);
  border-color: var(--color-azul);
  color: #FFFFFF;
}

/* ── Scrubber lateral del catálogo sobre blanco: etiquetas navy, halos blancos ── */
body.page-catalogo .cat-scrubber-item-label { color: rgba(16, 41, 75, 0.55); }
body.page-catalogo .cat-scrubber-item:hover .cat-scrubber-item-label { color: rgba(16, 41, 75, 0.95); }
body.page-catalogo .cat-scrubber-item.is-active .cat-scrubber-item-label {
  color: #1E55AA;
  text-shadow: none;
}
body.page-catalogo .cat-scrubber-item-dot {
  background: #FFFFFF;
  border-color: rgba(30, 85, 170, 0.55);
  box-shadow: 0 0 0 3px #FFFFFF;
}
body.page-catalogo .cat-scrubber-item:hover .cat-scrubber-item-dot {
  background: #5BA3FF;
  border-color: #1E55AA;
  box-shadow: 0 0 0 3px #FFFFFF, 0 0 10px rgba(91, 163, 255, 0.6);
}
body.page-catalogo .cat-scrubber-item.is-active .cat-scrubber-item-dot {
  background: #1E55AA;
  border-color: #1E55AA;
  box-shadow: 0 0 0 3px #FFFFFF, 0 0 10px rgba(91, 163, 255, 0.6);
}
body.page-catalogo .cat-scrubber-handle-core {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95),
              0 0 12px rgba(91, 163, 255, 0.55);
}

/* ── Cotizador sobre blanco: textos del wizard que eran blancos → navy ── */
body.page-cotizador .cotzw-prog-label { color: var(--color-text-muted); }
body.page-cotizador .cotzw-prog-step.is-active { color: var(--color-text) !important; }
body.page-cotizador .cotzw-step h3,
body.page-cotizador .cotzw-ticket-title,
body.page-cotizador .cotzw-ticket-v,
body.page-cotizador .cotzw-ticket-count,
body.page-cotizador .cotzw-eq-name,
body.page-cotizador .cotzw-eq-num,
body.page-cotizador .cotzw-dias strong,
body.page-cotizador .cotzw-sum-name { color: var(--color-text) !important; }
body.page-cotizador .cotzw-btn-back:hover { color: var(--color-text) !important; }

/* ════════════════════════════════════════════════════════════════
   TEMA BLANCO — cuadros que seguían oscuros + líneas más visibles
════════════════════════════════════════════════════════════════ */

/* Timeline de Objetivos (info): tarjetas de vidrio oscuro → blancas */
body.page-info .obj-grid.obj-timeline .obj-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(30, 85, 170, 0.26);
  box-shadow: 0 12px 30px -18px rgba(16, 42, 90, 0.28);
}
body.page-info .obj-grid.obj-timeline .obj-card:hover {
  background: #F4F8FD;
  border-color: rgba(30, 85, 170, 0.50);
}
/* Línea vertical de la timeline: más gruesa y con azul más firme */
body.page-info .obj-grid.obj-timeline::before {
  width: 3px;
  left: 22.5px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(30, 110, 220, 0.20) 4%,
    rgba(30, 110, 220, 0.60) 12%,
    rgba(30, 110, 220, 0.60) 88%,
    rgba(30, 110, 220, 0.20) 96%,
    transparent 100%);
}
/* Conector horizontal dot → tarjeta: 2px y más visible */
body.page-info .obj-grid.obj-timeline .obj-card::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 110, 220, 0.60) 0%, rgba(30, 110, 220, 0.22) 100%);
}

/* Soluciones (si se reactiva): tarjetas blancas, no vidrio oscuro */
body.page-info .sol-card {
  background: #FFFFFF;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(30, 85, 170, 0.24);
  box-shadow: 0 12px 30px -18px rgba(16, 42, 90, 0.22);
}

/* Divisor de subgrupos del catálogo: 2px y azul más firme */
body.page-catalogo .maq-subgroup-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(30, 110, 220, 0.48), transparent);
}

/* Líneas separadoras de franjas (secciones pares): 2px y más visibles */
body.page-info .page-body > .section:nth-of-type(even)::before,
body.page-info .page-body > .section:nth-of-type(even)::after,
body.page-cotizador .page-body > .section:nth-of-type(even)::before,
body.page-cotizador .page-body > .section:nth-of-type(even)::after,
body.page-catalogo .page-body > .catalogo-cat:nth-of-type(even)::before,
body.page-catalogo .page-body > .catalogo-cat:nth-of-type(even)::after {
  height: 2px !important;
  background: linear-gradient(90deg, transparent, rgba(30, 110, 220, 0.38), transparent) !important;
}

/* Líneas punteadas (ticket, listas) más marcadas sobre blanco */
body.page-info .page-body [style*="dashed"],
body.page-cotizador .cotzw-ticket-row,
body.page-cotizador .cotzw-sum-row { border-color: rgba(30, 110, 220, 0.35); }

/* ── Banda de marcas (catálogo): de franja oscura → banda clara integrada,
   con textura diagonal fina (estilo plano técnico) para que no se vea plana ── */
body.page-catalogo .brand-marquee {
  background:
    repeating-linear-gradient(115deg,
      rgba(30, 110, 220, 0.05) 0px, rgba(30, 110, 220, 0.05) 2px,
      transparent 2px, transparent 26px),
    radial-gradient(ellipse 1200px 180px at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #E6F0FA 50%, #FFFFFF 100%);
}
/* Nombres de marca: de blanco translúcido → navy suave (legible sobre claro) */
body.page-catalogo .brand-logo { color: rgba(16, 41, 75, 0.42); }
body.page-catalogo .brand-marquee-track:hover .brand-logo { opacity: 0.3; }
/* Bordes de la banda un punto más firmes sobre blanco */
body.page-catalogo .brand-marquee-border {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(30, 110, 220, 0.22) 15%,
    rgba(30, 110, 220, 0.45) 50%,
    rgba(30, 110, 220, 0.22) 85%,
    transparent 100%);
}
/* Chispas re-tintadas: las blancas eran invisibles sobre claro → todas azules */
body.page-catalogo .brand-marquee-sparkles::before {
  background-image:
    radial-gradient(2px 2px at 12% 28%, rgba(30, 110, 220, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 28% 65%, rgba(91, 163, 255, 0.85), transparent),
    radial-gradient(2px 2px at 45% 22%, rgba(59, 130, 246, 0.70), transparent),
    radial-gradient(1.5px 1.5px at 62% 75%, rgba(30, 110, 220, 0.65), transparent),
    radial-gradient(2px 2px at 78% 35%, rgba(91, 163, 255, 0.80), transparent),
    radial-gradient(1.5px 1.5px at 92% 68%, rgba(59, 130, 246, 0.70), transparent),
    radial-gradient(2px 2px at 18% 80%, rgba(59, 130, 246, 0.65), transparent),
    radial-gradient(1.5px 1.5px at 38% 12%, rgba(30, 110, 220, 0.60), transparent),
    radial-gradient(2px 2px at 70% 18%, rgba(91, 163, 255, 0.70), transparent),
    radial-gradient(1.5px 1.5px at 88% 88%, rgba(30, 110, 220, 0.65), transparent);
}
body.page-catalogo .brand-marquee-sparkles::after {
  background-image:
    radial-gradient(1.5px 1.5px at 8% 55%, rgba(30, 110, 220, 0.65), transparent),
    radial-gradient(2px 2px at 25% 18%, rgba(91, 163, 255, 0.80), transparent),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(59, 130, 246, 0.60), transparent),
    radial-gradient(2px 2px at 72% 85%, rgba(59, 130, 246, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 85% 15%, rgba(30, 110, 220, 0.65), transparent),
    radial-gradient(2px 2px at 35% 92%, rgba(91, 163, 255, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 60% 35%, rgba(59, 130, 246, 0.60), transparent);
}
/* Glows celestes de las esquinas: más presentes sobre blanco */
body.page-catalogo .brand-marquee-glow-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.30) 0%, transparent 70%);
  opacity: 0.9;
}
body.page-catalogo .brand-marquee-glow-2 {
  background: radial-gradient(circle, rgba(120, 185, 250, 0.34) 0%, transparent 70%);
  opacity: 0.9;
}

