* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

:root {
  --design-width: 1440px;
  --design-height: 6889px;
  --scale: calc(100vw / var(--design-width));
}

body {
  margin: 0;
  background: #ffffff;
  color: #050b26;
  overflow-x: hidden;
  min-height: calc(var(--design-height) * var(--scale));
}

body.parking-body {
  min-height: calc(3660px * var(--scale));
}

body.services-body {
  min-height: calc(2750px * var(--scale));
}

body.meters-body {
  min-height: calc(4210px * var(--scale));
}

body.polizas-body {
  min-height: calc(4210px * var(--scale));
}

body.recaudacion-body {
  min-height: calc(4210px * var(--scale));
}

body.boton-link-body {
  min-height: calc(4210px * var(--scale));
}

body.software-dev-body {
  min-height: calc(3660px * var(--scale));
}

body.boleteria-body {
  min-height: calc(3660px * var(--scale));
}

.main-frame {
  position: relative;
  width: var(--design-width);
  height: var(--design-height);
  margin: 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  transform: scale(var(--scale));
  transform-origin: top left;
}

/* ===================== */
/* Header — liquid glass floating pill */
/* ===================== */
.site-header {
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
  background: transparent;
  transition: top 280ms ease;
}

.site-header > * {
  pointer-events: auto;
}

body.parking-body .site-header {
  will-change: top;
  backface-visibility: hidden;
}

.header-inner {
  width: max-content;
  max-width: calc(100vw - 32px);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 12px 0 26px;
  position: relative;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(4, 10, 40, 0.42),
    rgba(8, 18, 64, 0.5),
    rgba(4, 10, 40, 0.42)
  );
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 14px 38px rgba(4, 10, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease, height 280ms ease, padding 280ms ease;
}

.site-header.is-visible .header-inner {
  height: 66px;
  background: linear-gradient(
    to right,
    rgba(4, 10, 40, 0.62),
    rgba(8, 18, 64, 0.7),
    rgba(4, 10, 40, 0.62)
  );
  box-shadow:
    0 20px 50px rgba(4, 10, 40, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header-inner:hover,
.header-inner:focus-within {
  background: linear-gradient(
    to right,
    rgba(4, 10, 40, 0.72),
    rgba(8, 18, 64, 0.8),
    rgba(4, 10, 40, 0.72)
  );
  box-shadow:
    0 24px 56px rgba(4, 10, 40, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.site-logo-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 6px;
}

.site-logo {
  width: 158px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: width 280ms ease;
}

.site-header.is-visible .site-logo {
  width: 140px;
}

.menu-inline {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font: 500 14.5px/16px "Outfit", sans-serif;
  letter-spacing: 0.1px;
}

.menu-link {
  transition: background 200ms ease, color 200ms ease;
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  white-space: nowrap;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
}

.menu-link:hover,
.menu-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.menu-inline:hover .menu-link:not(:hover):not(:focus-within) {
  opacity: 0.6;
}

.menu-link.dropdown {
  position: relative;
  cursor: pointer;
}

.menu-link.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  background: transparent;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-trigger::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms ease;
  opacity: 0.7;
}

.menu-link.dropdown:hover .dropdown-trigger::after,
.menu-link.dropdown:focus-within .dropdown-trigger::after {
  transform: rotate(225deg) translateY(0);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 310px;
  padding: 16px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(4, 10, 40, 0.18);
  display: grid;
  gap: 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms cubic-bezier(.2,.9,.3,1.2), visibility 200ms ease;
  z-index: 60;
}

.menu-link.dropdown:hover .dropdown-panel,
.menu-link.dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-empresas .dropdown-panel {
  width: 360px;
  padding: 24px 22px;
  gap: 12px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px;
  border-radius: 16px;
  color: #262626;
  font: 500 14px/18px "Outfit", sans-serif;
  background: transparent;
  transition: background 150ms ease, box-shadow 150ms ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(243, 243, 244, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.dropdown-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f1f7fe;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 150ms ease;
}

.dropdown-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  transition: filter 150ms ease;
}

/* Dropdown icon swap (inactive/active) — aplica a Personas y Empresas */
.menu-link.dropdown .dropdown-item .dropdown-icon-inactive,
.menu-link.dropdown .dropdown-item .dropdown-icon-active {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.menu-link.dropdown .dropdown-item .dropdown-icon-inactive {
  opacity: 1;
}

.menu-link.dropdown .dropdown-item .dropdown-icon-active {
  opacity: 0;
}

.menu-link.dropdown .dropdown-item:hover .dropdown-icon-inactive,
.menu-link.dropdown .dropdown-item.is-current .dropdown-icon-inactive {
  opacity: 0;
}

.menu-link.dropdown .dropdown-item:hover .dropdown-icon-active,
.menu-link.dropdown .dropdown-item.is-current .dropdown-icon-active {
  opacity: 1;
}

.menu-link.active,
.dropdown-trigger.active {
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.menu-link .dropdown-trigger.active {
  background: transparent;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ff0060;
  color: #ffffff;
  font: 600 14.5px/1 "Outfit", sans-serif;
  text-decoration: none;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.32);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  flex-shrink: 0;
}

.header-cta:hover {
  background: #ffffff;
  color: #050b26;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.28);
}

.site-header.is-visible .header-cta {
  height: 44px;
  padding: 0 20px;
  font-size: 13.5px;
}

.shimmer-button {
  --spread: 90deg;
  --shimmer-color: #ffffff;
  --radius: 100px;
  --speed: 3s;
  --cut: 0.05em;
  --bg: #ff4da1;
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  background: var(--bg);
  color: #ffffff;
  transition: transform 300ms ease-in-out;
}

.shimmer-button:active {
  transform: translateY(1px);
}

.shimmer-spark {
  position: absolute;
  inset: 0;
  z-index: -30;
  filter: blur(2px);
  overflow: visible;
  container-type: size;
}

.shimmer-spark-core {
  position: absolute;
  inset: 0;
  aspect-ratio: 1;
  height: 100cqh;
  border-radius: 0;
  animation: shimmer-slide var(--speed) ease-in-out infinite alternate;
}

.shimmer-spark-inner {
  position: absolute;
  inset: -200%;
  background: conic-gradient(
    from calc(270deg - (var(--spread) * 0.5)),
    transparent 0,
    var(--shimmer-color) var(--spread),
    transparent var(--spread)
  );
  animation: spin-around calc(var(--speed) * 2) infinite linear;
}

.shimmer-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.shimmer-highlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
  box-shadow: inset 0 -8px 10px rgba(255, 255, 255, 0.12);
  transition: box-shadow 300ms ease-in-out;
}

.shimmer-button:hover .shimmer-highlight {
  box-shadow: inset 0 -6px 10px rgba(255, 255, 255, 0.25);
}

.shimmer-button:active .shimmer-highlight {
  box-shadow: inset 0 -10px 10px rgba(255, 255, 255, 0.25);
}

.shimmer-backdrop {
  position: absolute;
  inset: var(--cut);
  z-index: -20;
  border-radius: var(--radius);
  background: var(--bg);
}

@keyframes shimmer-slide {
  to {
    transform: translate(calc(100cqw - 100%), 0);
  }
}

@keyframes spin-around {
  0% {
    transform: translateZ(0) rotate(0);
  }
  15%,
  35% {
    transform: translateZ(0) rotate(90deg);
  }
  65%,
  85% {
    transform: translateZ(0) rotate(270deg);
  }
  100% {
    transform: translateZ(0) rotate(360deg);
  }
}

.reveal,
.reveal-zoom {
  --base-transform: translate3d(0, 0, 0);
  animation: hero-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity, filter;
}

.reveal-zoom {
  animation-name: hero-zoom;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: var(--base-transform) translateY(24px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: var(--base-transform) translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-zoom {
  from {
    opacity: 0;
    transform: var(--base-transform) translateY(16px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: var(--base-transform) translateY(0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-zoom {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}

.abs {
  position: absolute;
}

.fill {
  width: 100%;
  height: auto;
  display: block;
}

.fill-watermark {
  width: 100%;
  height: 800px;
  display: block;
}

.fill-cover {
  width: 100%;
  height: 100%;
  display: block;
}

.fill-cover-shifted {
  width: 100%;
  height: 100%;
  display: block;
  padding-left: 410px;
}

.fill-band {
  width: 100%;
  height: 485px;
  display: block;
  position: relative;
  z-index: 1;
}

.watermark-bg {
  /* left: -148.805px; */
  top: 2682px;
  width: 1569.2px;
  height: 800px;
  z-index: 1;
}

.parking-swoosh {
  left: -400px;
  top: 2942px;
  width: 2154.419px;
  height: 2105.973px;
  transform-origin: center;
  z-index: 3;
}

.parking-gradient {
  left: 60.2px;
  top: 3588px;
  width: 1300px;
  height: 1080px;
  border-radius: 30px;
  background: linear-gradient(141.572deg, #fcfdff 1.6104%, #dee1f0 100%);
}

.parking-cta {
  position: absolute;
  left: 946px;
  top: 4420px;
  width: 204px;
  height: 65px;
  background: #ff0060;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 400 20px/25px "Outfit", sans-serif;
  color: #ffffff;
  box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
  z-index: 4;
}

.parking-cta .play-icon {
  width: 24px;
  height: 24px;
}

.parking-shot {
  z-index: 4;
  --shot-offset: 0px;
  --shot-zoom: 1;
  transform: translateY(var(--shot-offset)) scale(var(--shot-zoom));
  transform-origin: center;
  will-change: transform;
  position: absolute; /* refuerza posicionamiento para el botón overlay */
}

.parking-shot-poster {
  cursor: pointer;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.parking-shot:hover .parking-shot-poster {
  transform: scale(1.02);
}

/* Botón de play en la esquina inferior derecha (fuera de la silueta del poster) */
.parking-shot-play {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(255, 0, 96, 0.45), 0 0 0 0 rgba(255, 0, 96, 0.45);
  animation: parkingShotPulse 2.2s ease-out infinite;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.parking-shot-play:hover {
  transform: scale(1.08);
}

.parking-shot-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px; /* ajuste óptico del triángulo */
}

@keyframes parkingShotPulse {
  0% { box-shadow: 0 18px 40px rgba(255, 0, 96, 0.45), 0 0 0 0 rgba(255, 0, 96, 0.55); }
  70% { box-shadow: 0 18px 40px rgba(255, 0, 96, 0.45), 0 0 0 24px rgba(255, 0, 96, 0); }
  100% { box-shadow: 0 18px 40px rgba(255, 0, 96, 0.45), 0 0 0 0 rgba(255, 0, 96, 0); }
}

/* Iframe del video YouTube embebido */
.parking-shot iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.parking-shot.is-playing .parking-shot-poster,
.parking-shot.is-playing .parking-shot-play {
  display: none;
}

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

/* <picture> wrapper que contiene <img class="cover"> hereda dimensiones del padre */
picture {
  display: block;
  width: 100%;
  height: 100%;
}

.menu {
  display: none;
}

.hero-subtitle {
  position: static;
  transform: none;
  width: auto;
  text-align: left;
  font: 400 18px/26px "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.18px;
  margin: 0;
}

.hero-title {
  position: static;
  transform: none;
  width: auto;
  text-align: left;
  font: 700 64px/68px "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

.hero-callout {
  position: static;
  transform: none;
  width: 260px;
  text-align: right;
  font: 400 18px/26px "DM Sans", sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

.hero-pill {
  position: static;
  transform: none;
  width: auto;
  text-transform: uppercase;
  letter-spacing: 2.1921px;
  font: 300 18px/normal "Outfit", sans-serif;
  color: #ffffff;
  margin-bottom: 4px;
}

.download-button {
  position: absolute;
  width: 217.67px;
  height: 72.557px;
  padding: 9.07px 18.139px;
  border-radius: 14.511px;
  border: 1.814px solid #a6a6a6;
  background: #000000;
  display: flex;
  align-items: center;
  gap: 10.883px;
}

.download-button.app-store {
  gap: 10.883px;
  padding: 9.07px 18.139px;
}

.download-button.google-play {
  width: 217.4px;
  height: 65.383px;
  padding: 6.538px 11.442px;
  border-radius: 13.077px;
  border: 1.635px solid #a6a6a6;
  gap: 11.442px;
}

.download-logo {
  width: 39.23px;
  height: 42.499px;
  position: relative;
  display: grid;
  place-items: center;
}

.download-logo.apple {
  width: 32.136px;
  height: 39.5px;
}

.download-logo.google {
  width: 39.23px;
  height: 42.499px;
}

.download-logo img {
  max-width: 100%;
  max-height: 30px;
}

.apple-mark {
  position: absolute;
  inset: 22% 0 0 0;
  width: 100%;
  height: auto;
}

.apple-leaf {
  position: absolute;
  top: 0px;
  right: 6px;
  width: 10px;
  height: 9px;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3.628px;
  font: 300 16.325px/normal "Outfit", sans-serif;
  color: #ffffff;
  width: 136.153px;
}

.download-text.align-start {
  align-items: flex-start;
  font: 300 14.711px/normal "Outfit", sans-serif;
  width: 140.21px;
}

.download-text span {
  display: block;
  line-height: 19.953px;
}

.download-button.app-store .download-text img {
  width: 136.154px;
  height: 28.334px;
}

.download-button.google-play .download-text {
  gap: 3.269px;
}

.download-button.google-play .download-text span {
  line-height: 17.98px;
}

.download-button.google-play .download-text img {
  width: 138.575px;
  height: 27.834px;
}

.download-button.google-play .download-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-button.google-play .download-logo img {
  width: 39.23px;
  height: 42.499px;
  display: block;
}

.download-button.google-play .download-logo img {
  max-width: 100%;
  max-height: 40px;
}

.uppercase {
  text-transform: uppercase;
}

.cta-pill {
  position: absolute;
  height: 47px;
  padding: 10.769px;
  border-radius: 32.308px;
  background: #ff0060;
  color: #ffffff;
  font: 400 18px/normal "Outfit", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-pill.secondary {
  background: #f1f2f2;
  color: #040a28;
  border: 1.077px solid rgba(30, 30, 30, 0.3);
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
}

.section-title {
  position: absolute;
  left: 50%;
  top: 1331px;
  transform: translateX(-50%);
  width: 537px;
  text-align: center;
  font: 500 60px/70px "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.6px;
}

.section-copy {
  position: absolute;
  left: 50%;
  top: 1592px;
  transform: translateX(-50%);
  width: 543px;
  text-align: center;
  font: 400 25px/34px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.8);
  letter-spacing: -0.25px;
}

.icon-arc {
  left: 299.195px;
  top: 1009px;
  width: 859.225px;
  height: 290.56px;
  pointer-events: none;
}

.icon-arc-item {
  position: absolute;
  width: 101.316px;
  height: 101.119px;
  opacity: 0;
  --from-x: 0px;
  --from-y: 0px;
  --scroll-x: 0px;
  --scroll-y: 0px;
  --rotate: 0deg;
  --delay: 0s;
  transform: translate(calc(var(--from-x) + var(--scroll-x)), calc(var(--from-y) + var(--scroll-y))) scale(0.7)
    rotate(var(--rotate));
  transform-origin: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1.2s ease;
  transition-delay: var(--delay);
  will-change: transform, opacity;
}

.icon-arc.icon-arc--in .icon-arc-item {
  opacity: 1;
  transform: translate(var(--scroll-x), var(--scroll-y)) scale(1) rotate(var(--rotate));
}


.icon-arc-top {
  left: 378.95px;
  top: 6px;
  --from-x: 0px;
  --from-y: 88.72px;
  --delay: 0s;
}

.icon-arc-right {
  left: 690.91px;
  top: 194px;
  --from-x: -311.96px;
  --from-y: -99.28px;
  --rotate: 60deg;
  --delay: 0.36s;
}

.icon-arc-left {
  left: 57px;
  top: 195px;
  --from-x: 321.95px;
  --from-y: -100.28px;
  --rotate: -60deg;
  --delay: 0.48s;
}

.icon-arc-right-mid {
  left: 570px;
  top: 50px;
  --from-x: -191.05px;
  --from-y: 44.72px;
  --rotate: 30deg;
  --delay: 0.12s;
}

.icon-arc-left-mid {
  left: 185px;
  top: 50px;
  --from-x: 193.95px;
  --from-y: 44.72px;
  --rotate: -30deg;
  --delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .icon-arc-item {
    opacity: 1;
    transform: rotate(var(--rotate));
    transition: none;
  }

}

.chip {
  position: absolute;
  width: 170px;
  height: 73px;
  border-radius: 70px;
  background: #eaedf8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  font: 500 14px/22px "Outfit", sans-serif;
  color: #262626;
  --chip-offset: 0px;
  transform: translateY(var(--chip-offset));
  will-change: transform;
  clip-path: inset(0 round 70px);
}

.chip-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.chip-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.chip-icon.accounts {
  position: relative;
  width: 28px;
  height: 28px;
}

.chip-icon.accounts img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chip-depositar {
  left: 150px;
  top: 1500px;
}

.chip-enviar {
  left: 1110px;
  top: 1500px;
}

.chip-cuentas {
  left: 308.195px;
  top: 1796px;
}

.chip-cobrar {
  left: 1030px;
  top: 1920px;
}

.accent {
  color: #ff0060;
}

.chip-label {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  font: 500 14px/22px "Outfit", sans-serif;
  color: #262626;
}

.section-title-2 {
  position: absolute;
  left: 50%;
  top: 2045px;
  transform: translateX(-50%);
  width: 570px;
  text-align: center;
  font: 500 54px/64px "Outfit", sans-serif;
  color: #050b26;
}

.section-copy-2 {
  position: absolute;
  left: 50%;
  top: 2170px;
  transform: translateX(-50%);
  width: 620px;
  text-align: center;
  font: 400 22px/32px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.8);
}

.text-reveal {
  display: inline-block;
}

.text-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: calc(var(--i) * 0.06s);
  will-change: transform, opacity;
}

.text-reveal.is-in .word {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .text-reveal .word {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.icon-row {
  display: flex;
  gap: 39.249px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.icon-row[data-stair] .icon-card {
  opacity: 0;
  transform: translateY(26px);
  transition: transform 0.7s ease, opacity 0.7s ease;
  transition-delay: calc(var(--i) * 0.12s);
  will-change: transform, opacity;
}

.icon-row[data-stair].is-in .icon-card {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .icon-row[data-stair] .icon-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.icon-card {
  width: 129.262px;
  height: 129.021px;
  position: relative;
  background: #ffffff;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  box-shadow: none;
  transition: background 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.icon-card img {
  display: block;
}

.icon-swap {
  position: relative;
  width: 100%;
  height: 100%;
}

.icon-card .icon-base,
.icon-card .icon-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 400ms ease, transform 400ms ease;
}

.icon-card .icon-base {
  opacity: 1;
  filter: grayscale(1) brightness(0.6);
}

.icon-card .icon-hover {
  opacity: 0;
  transform: scale(0.98);
}

.icon-label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  font: 500 13px/16px "Outfit", sans-serif;
  color: #050b26;
  white-space: nowrap;
  transition: opacity 400ms ease, transform 400ms ease;
}

.icon-card:hover,
.icon-card.auto-hover {
  background: var(--icon-color, rgba(0, 0, 0, 0.06));
  box-shadow: 0 16px 24px rgba(5, 11, 38, 0.12);
  border-color: transparent;
}

.icon-card:hover {
  --icon-color: var(--card-color, rgba(0, 0, 0, 0.06));
}

.icon-card.auto-hover {
  --icon-color: var(--card-color, rgba(0, 0, 0, 0.06));
}

.icon-card:hover .icon-base,
.icon-card.auto-hover .icon-base {
  opacity: 0;
  transform: scale(0.98);
}

.icon-card:hover .icon-hover,
.icon-card.auto-hover .icon-hover {
  opacity: 1;
  transform: scale(1);
}

.icon-card:hover .icon-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.icon-card .icon-overlay {
  position: absolute;
  inset: 28% 24%;
  width: auto;
  height: auto;
}

.icon-card .icon-overlay-large {
  position: absolute;
  inset: 30% 27%;
  width: 60px;
  height: 50px;
}

.icon-card .icon-overlay-square {
  position: absolute;
  inset: 30% 29%;
  width: 60px;
  height: 60px;
}

.icon-card .icon-overlay-tall {
  position: absolute;
  inset: 24% 30%;
  width: 50px;
  height: 70px;
}

.icon-card .icon-overlay-rect {
  position: absolute;
  inset: 28% 30%;
  width: 55px;
  height: 66px;
}

.icon-card .icon-overlay-wide {
  position: absolute;
  inset: 35% 26%;
  width: 60px;
  height: 40px;
}

.watermark {
  position: absolute;
  font: 700 120px/120px "Outfit", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(153, 153, 153, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 2;
}

.watermark-row {
  position: absolute;
  left: 0;
  right: 0;
  top: 2970px;
  height: 140px;
  pointer-events: none;
}

.watermark.left {
  left: 120px;
  top: -100px;
  --wm-offset: 0px;
  transform: translateX(calc(-1 * var(--wm-offset)));
}

.watermark.right {
  left: 900px;
  top: 0;
  --wm-offset: 0px;
  transform: translateX(var(--wm-offset));
}

.section-title-3 {
  position: absolute;
  left: 353.195px;
  top: 3660px;
  transform: none;
  width: 700px;
  text-align: center;
  font: 500 60px/70px "Outfit", sans-serif;
  color: #050b26;
}

.section-copy-3 {
  position: absolute;
  left: 422.195px;
  top: 3870px;
  transform: none;
  width: 580px;
  text-align: center;
  font: 400 24px/32px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.8);
}

.section-title-4 {
  position: absolute;
  left: 50%;
  top: 4930px;
  transform: translateX(-50%);
  width: 512px;
  text-align: center;
  font: 500 60px / 70px "Outfit", sans-serif;
  color: #ffffff;
}

.section-copy-4 {
  position: absolute;
  left: 50%;
  top: 5070px;
  transform: translateX(-50%);
  width: 580px;
  text-align: center;
  font: 400 24px / 32px "Outfit", sans-serif;
  color: #ffffff;
}

.bank-strip {
  position: absolute;
  left: 227.2px;
  top: 5200px;
  width: 988px;
  height: 410px;
  background: #f9faff;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 48px 70px;
  box-sizing: border-box;
}

.bank-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  width: 100%;
  flex-direction: column;
}

.bank-hero-copy {
  margin: 0;
  font: 400 24px/1.3 "Outfit", sans-serif;
  color: #050b26;
  text-align: right;
  letter-spacing: -0.2px;
}

.bank-hero-copy strong {
  font-weight: 700;
  font-size: 28px;
  display: inline-block;
  margin-top: 2px;
}

.bank-hero-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.bank-divider {
  width: 84%;
  height: 1px;
  background: rgba(5, 11, 38, 0.1);
}

.bank-strip-label {
  margin: 0;
  font: 500 14px/1 "Outfit", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(5, 11, 38, 0.6);
}

.bank-strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  flex-wrap: nowrap;
}

.bank-strip-row img {
  max-height: 48px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  flex: 1 1 0;
}


.banking-bg {
  left: -268px;
  top: 4808px;
  width: 1975px;
  height: 645px;
  background: linear-gradient(180deg, #050b26 7.91%, #123084 73.19%);
}

.section-banking {
  text-align: center;
}

/* About page — sin responsive, tamaño fijo 1440px */
.about-page {
  margin: 0;
  background: #ffffff;
  color: #050b26;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  min-height: 4550px;
}


.about-main {
  position: relative;
  width: 1440px;
  height: 4550px;
  margin: 0 auto;
  padding: 0;
}

.about-page [data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: transform, opacity;
}

.about-page [data-anim="fade"] {
  transform: none;
}

.about-page [data-anim="zoom"] {
  transform: translateY(16px) scale(0.96);
}

.about-page [data-anim].is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .about-page [data-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.about-hero {
  position: absolute;
  left: 50%;
  top: -3px;
  width: 100vw;
  height: 980px;
  border-radius: 0;
  overflow: hidden;
  color: #ffffff;
  transform: translateX(-50%);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-stroke {
  position: absolute;
  top: -345px;
  width: 1965px;
  height: 1470px;
  pointer-events: none;
}

.about-hero-content {
  position: absolute;
  left: 50%;
  top: 190px;
  width: 900px;
  text-align: center;
  transform: translateX(-50%);
}

.about-hero-line {
  margin: 0 0 12px;
  font: 500 20px/26px "Outfit", sans-serif;
  color: #ffffff;
}

.about-hero-title {
  margin: 0 0 12px;
  font: 700 64px/72px "Outfit", sans-serif;
  color: #ffffff;
}

.about-hero-accent {
  color: #ff0060;
}

.about-frame5 {
  position: absolute;
  left: 0;
  top: 470px;
  width: 100%;
  height: 440px;
  overflow: hidden;
  filter: drop-shadow(0 13px 15px rgba(0, 0, 0, 0.15));
  transform: none;
  cursor: default;
  z-index: 10;
}

.about-frame5.is-dragging {
  cursor: grabbing;
}

.about-frame5-track {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  width: max-content;
  will-change: transform;
  user-select: none;
}

.about-frame5-track.about-frame5-marquee {
  animation: aboutFrameMarquee 14s linear infinite;
  will-change: transform;
}

@keyframes aboutFrameMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 0px)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-frame5-track.about-frame5-marquee {
    animation: none;
  }
}

.about-frame-item {
  width: 327px;
  border-radius: 52px;
  overflow: hidden;
  background: #ffffff;
  flex: 0 0 auto;
}

.about-frame-item.tall {
  height: 440px;
}

.about-frame-item.mid {
  height: 340px;
}

.about-frame-item.offset-1 {
  margin-top: 50px;
}

.about-frame-item.offset-2 {
  margin-top: 57px;
}

.about-frame-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Team variant: fotos del equipo (cuadradas con fondo navy circular) */
.about-frame-item.team {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #050b26;
}

.about-frame-item.team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-pill {
  position: absolute;
  height: 49.44px;
  border-radius: 31.8956px;
  border: 1.4176px solid #c4c7da;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font: 500 14px/14px "Outfit", sans-serif;
  color: #050b26;
  background: #ffffff;
}

.about-pill-mission {
  left: 618px;
  top: 1080px;
  width: 166.44px;
}

.about-mission-text {
  position: absolute;
  left: 362px;
  top: 1180px;
  width: 716px;
  margin: 0;
  text-align: center;
  font: 500 40px / 48px "Outfit", sans-serif;
  color: #050b26;
}

.about-video-shell {
  position: absolute;
  left: 15%;
  top: 1407px;
  width: 994px;
  height: 583px;
  border-radius: 30px;
  background: linear-gradient(140deg, #fcfdff 0%, #b7bdd6 100%);
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.about-video-card {
  position: relative;
  width: 938px;
  height: 528px;
  border-radius: 27px;
  overflow: hidden;
}

.about-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-overlay {
  display: none;
}

.about-vision-fade {
  position: absolute;
  left: 0;
  width: 1440px;
  height: 419px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-vision-fade-top {
  top: 2074px;
}

.about-vision-fade-bottom {
  top: 2960px;
  height: 353px;
  transform: scaleY(-1);
}

.about-vision-stroke {
  position: absolute;
  left: -199px;
  top: 2057px;
  width: 1837.815px;
  height: 1029.024px;
}

.about-pill-vision {
  left: 151px;
  top: 2250px;
  width: 163.44px;
}

.about-vision-title {
  position: absolute;
  left: 151px;
  top: 2337px;
  width: 495px;
  margin: 0;
  font: 500 32px/42px "Outfit", sans-serif;
  color: #050b26;
}

.about-vision-copy {
  position: absolute;
  left: 151px;
  top: 2472px;
  width: 449px;
  margin: 0;
  font: 400 16px/26px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.8);
}

.about-gallery {
  position: absolute;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
  isolation: isolate;
}

.about-gallery::before,
.about-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  pointer-events: none;
  z-index: 2;
}

.about-gallery::before {
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 30%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.about-gallery::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 30%,
    rgba(255, 255, 255, 0.6) 60%,
    rgba(255, 255, 255, 0) 100%
  );
}

.about-gallery-left {
  left: 664px;
  top: 2133px;
  height: 768px;
}

.about-gallery-right {
  left: 1010px;
  top: 2102px;
  height: 774px;
}

.about-gallery-track {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-gallery-item {
  width: 320px;
  height: 320px;
  border-radius: 52px;
  overflow: hidden;
  background: #ffffff;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-gallery-right .about-gallery-track {
  transform: translateY(-926px);
}

.about-gallery-left .about-gallery-item img {
  object-fit: contain;
}

.about-gallery-left .about-gallery-track.about-gallery-marquee {
  animation: aboutGalleryMarquee 24s linear infinite;
  will-change: transform;
}

.about-gallery-right .about-gallery-track.about-gallery-marquee-down {
  animation: aboutGalleryMarqueeDown 24s linear infinite;
  will-change: transform;
}

@keyframes aboutGalleryMarquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-1 * var(--marquee-distance, 0px)));
  }
}

@keyframes aboutGalleryMarqueeDown {
  from {
    transform: translateY(calc(-1 * var(--marquee-distance, 0px)));
  }
  to {
    transform: translateY(0);
  }
}

.about-stats-title {
  position: absolute;
  left: 343px;
  top: 2992px;
  width: 716px;
  margin: 0;
  text-align: center;
  font: 500 28px/31px "Outfit", sans-serif;
  color: #050b26;
}

.about-stat-card {
  position: absolute;
  border-radius: 60.359px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  color: #050b26;
}

.about-stat-card.about-stat-downloads,
.about-stat-card.about-stat-recurrent {
  border: 0.8623px solid #6f7e9b;
  background: transparent;
}

.about-stat-card.about-stat-registered,
.about-stat-card.about-stat-transactions,
.about-stat-card.about-stat-cities {
  background: #eaedf8;
}

.about-stat-downloads {
  left: 273px;
  top: 3118px;
  width: 248.335px;
  height: 138.826px;
}

.about-stat-registered {
  left: 534.269px;
  top: 3118px;
  width: 323.353px;
  height: 138.826px;
}

.about-stat-recurrent {
  left: 870.556px;
  top: 3118px;
  width: 248.335px;
  height: 138.826px;
}

.about-stat-transactions {
  left: 366.988px;
  top: 3267.174px;
  width: 322.491px;
  height: 138.826px;
}

.about-stat-cities {
  left: 703.275px;
  top: 3267.174px;
  width: 322.491px;
  height: 138.826px;
}

.about-stat-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.about-stat-value {
  font: 500 24px/30px "Outfit", sans-serif;
}

.about-stat-label {
  font: 400 14px/18px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.6);
  max-width: 220px;
}

.about-cta-card {
  position: absolute;
  left: 176px;
  top: 3517px;
  width: 1087.904px;
  height: 612px;
  border-radius: 39px;
  overflow: hidden;
}

.about-cta-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-cta-overlay {
  display: none;
}

.about-cta-title {
  position: absolute;
  left: 308px;
  top: 3689px;
  width: 808px;
  margin: 0;
  text-align: center;
  font: 600 44px/63px "Outfit", sans-serif;
  color: #ffffff;
}

.about-cta-copy {
  position: absolute;
  left: 429px;
  top: 3779px;
  width: 566px;
  margin: 0;
  text-align: center;
  font: 400 20px/30px "Outfit", sans-serif;
  color: #ffffff;
}

.about-cta-actions {
  position: absolute;
  left: 250px;
  top: 3920px;
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Botones App Store + Google Play en el banner CTA */
.about-cta-store {
  display: inline-flex;
  align-items: center;
  height: 58px;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.3, 1);
  filter: drop-shadow(0 8px 18px rgba(16, 24, 40, 0.18));
}

.about-cta-store:hover {
  transform: translateY(-2px);
}

.about-cta-store img {
  height: 58px;
  width: auto;
  display: block;
}

.about-page .footer {
  position: absolute;
  left: 50%;
  top: 4220px;
  width: 100vw;
  height: 330px;
  background: #040a28;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px max(70px, calc((100vw - 1300px) / 2));
  transform: translateX(-50%);
  box-sizing: border-box;
}


/* =============================================================
   IMG-MASK GENÉRICO (legacy — para uso en otras landings que aún
   referencian .img-mask). NO se usa en index.html: el banner del
   hero usa .hero-img-mask y la sección "tienes todo" usa
   .services-img-mask, ambas con sus propios estilos.
   ============================================================= */
.img-mask {
  position: relative;
  width: 460px;
  height: auto;
  overflow: visible;
}

.img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: 0;
}

.img-mask .img-mask-wide {
  width: 700px;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: -216px;
}

.img-mask .img-mask-phone {
  width: 78%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: 38px;
  position: relative;
  z-index: 3;
}

/* =============================================================
   HERO-IMG-MASK — banner del index (teléfono central del hero)
   Independiente del .img-mask para poder editarlo sin afectar
   otros teléfonos.
   ============================================================= */
.hero-img-mask {
  position: relative;
  width: 460px;
  height: auto;
  overflow: visible;
}

.hero-img-mask img,
.hero-img-mask .img-mask-hero {
  width: 260px;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: 150px;
}

/* =============================================================
   SERVICES-IMG-MASK — teléfono de la sección "No busques más"
   (sección "tienes todo"). Independiente del hero.
   ============================================================= */
.services-img-mask {
  position: relative;
  width: 800px;
  overflow: visible;
}

.services-img-mask img,
.services-img-mask .img-mask-phone-main {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-left: 51px;
  position: relative;
  z-index: 3;
  --phone-offset: 0px;
  transform: translateY(var(--phone-offset)) scale(0.92);
  opacity: 0;
  animation: services-phone-in 0.9s ease-out 0.2s forwards;
}

@keyframes services-phone-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(var(--phone-offset)) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-img-mask .img-mask-phone-main {
    opacity: 1;
    transform: translateY(var(--phone-offset)) scale(1);
    animation: none;
  }
}

.hero-visual {
  --rx: 0deg;
  --ry: 0deg;
  width: 520px;
  height: 560px;
  perspective: 1000px;
}

.hero-visual .img-mask {
  transform-style: preserve-3d;
  transition: transform 200ms ease;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) scale(1.02);
}

.hero-visual .img-mask img {
  transform: scale(1.08) translateY(-6px);
}

.tech-particles {
  position: absolute;
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.65;
}

.hero {
  position: relative;
  width: 1440px;
  height: 780px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 170px 70px 70px;
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  column-gap: 32px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  height: auto;
  justify-content: center;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 0;
}

.hero-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: auto;
  justify-content: center;
  padding-top: 0;
  align-items: center;
}

.hero-right .cta-pill.secondary {
  width: 318px;
}

.hero-right .cta-pill.secondary {
  text-align: center;
}

.hero-downloads {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-right .hero-pill {
  text-align: left;
  margin-bottom: 0;
}

/* Botón "Ver Tutorial" estilo pill blanco según Figma */
.hero-right .cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 200px;
  height: 48px;
  padding: 0 28px;
  background: #ffffff;
  color: #050b26;
  border: none;
  border-radius: 999px;
  font: 500 16px/1 "Outfit", sans-serif;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(4, 10, 40, 0.16);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.hero-right .cta-pill .shimmer-label {
  color: #050b26;
  font-weight: 500;
}

.hero-right .cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4, 10, 40, 0.24);
}

.hero-store-link {
  display: inline-flex;
  align-items: center;
  transition: opacity 200ms ease, transform 200ms ease;
}

.hero-store-link img {
  display: block;
  width: 200px;
  height: auto;
}

.hero-store-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hero-actions {
  margin-top: 12px;
}

.hero .download-button,
.hero .cta-pill {
  position: static;
}


.section-title-5 {
  position: absolute;
  left: 50%;
  top: 5999px;
  transform: translateX(-50%);
  text-align: center;
  font: 700 50px/normal "Outfit", sans-serif;
  color: #ffffff;
}

.section-copy-5 {
  position: absolute;
  left: 50%;
  top: 6086px;
  transform: translateX(-50%);
  width: 566px;
  text-align: center;
  font: 400 24px/30px "Outfit", sans-serif;
  color: #ffffff;
}

.cta-row {
  position: absolute;
  left: 415.2px;
  top: 6230px;
  display: flex;
  gap: 18px;
}

.cta-secondary {
  width: 350px;
  height: 65px;
  background: #f1f2f2;
  border: 1px solid rgba(30, 30, 30, 0.3);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 300 20px/normal "Outfit", sans-serif;
  color: #040a28;
  box-shadow: 0 32px 64px -12px rgba(16, 24, 40, 0.14);
}

.cta-primary {
  width: 204px;
  height: 65px;
  background: #ff0060;
  border: 1px solid #ff0060;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 500 18px/1 "Outfit", sans-serif;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 30px -8px rgba(255, 0, 96, 0.45);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.cta-primary:hover {
  background: #ff1f7c;
  border-color: #ff1f7c;
  box-shadow: 0 18px 36px -8px rgba(255, 0, 96, 0.55);
  transform: translateY(-2px);
}

.cta-primary:active {
  transform: translateY(0);
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.play-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.play-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer {
  position: absolute;
  left: -4px;
  top: 6559px;
  width: 1444px;
  height: 330px;
  background: #040a28;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 70px;
}

.footer-top img {
  width: 200px;
  height: 34px;
}

.footer-top p {
  margin: 14px 0;
  font: 400 16px/22px "Outfit", sans-serif;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  font: 400 22px/28px "Outfit", sans-serif;
  text-align: left;
  font-size: 17px;
}

/* Footer links: blanco por defecto, magenta sólo al hacer clic */
.footer-links a,
.footer-links span:not(.footer-link-cta) {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease;
}

.footer-links a:hover,
.footer-links span:not(.footer-link-cta):hover {
  color: #ffffff;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links span:not(.footer-link-cta):active,
.footer-links span:not(.footer-link-cta):focus {
  color: #ff0060;
  outline: none;
}

.socials {
  display: flex;
  gap: 22px;
  margin: 18px 0;
  align-items: center;
}

/* Cada link es un cuadrado donde el SVG funciona como máscara — el color visible
   es el background-color. Así no necesitamos filters raros. */
.social-link {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #ffffff;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  text-decoration: none;
  outline: none;
  transition: background-color 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Oculto la imagen original — solo importa la máscara */
.social-link img {
  display: none;
}

/* Cada red usa su SVG como máscara, identificada por la URL del href */
.social-link[href*="facebook"]    { -webkit-mask-image: url(./assets/global/Facebook_Icon.svg);  mask-image: url(./assets/global/Facebook_Icon.svg); }
.social-link[href*="instagram"]   { -webkit-mask-image: url(./assets/global/Instagram_Icon.svg); mask-image: url(./assets/global/Instagram_Icon.svg); }
.social-link[href*="threads"]     { -webkit-mask-image: url(./assets/global/Threads_Icon.svg);   mask-image: url(./assets/global/Threads_Icon.svg); }
.social-link[href*="linkedin"]    { -webkit-mask-image: url(./assets/global/LinkedIn_Icon.svg);  mask-image: url(./assets/global/LinkedIn_Icon.svg); }
.social-link[href*="youtube"]     { -webkit-mask-image: url(./assets/global/YouTube_Icon.svg);   mask-image: url(./assets/global/YouTube_Icon.svg); }
.social-link[href*="tiktok"]      { -webkit-mask-image: url(./assets/global/TikTok_Icon.svg);    mask-image: url(./assets/global/TikTok_Icon.svg); }

/* Hover y active → magenta + crece 20% */
.social-link:hover,
.social-link:active,
.social-link:focus-visible {
  background-color: #ff0060;
  transform: scale(1.2);
}

.social-link:focus-visible {
  outline: 2px solid rgba(255, 0, 96, 0.55);
  outline-offset: 6px;
}

.copyright {
  margin-top: 32px;
}

.footer-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  width: max-content;
  transition: color 200ms ease;
}

.footer-link-cta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0060;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(255, 0, 96, 0.18);
}

.footer-link-cta:hover {
  color: #ff5f95;
}

body.no-scroll {
  overflow: hidden;
}

.careers-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  font-family: "Outfit", sans-serif;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: rgba(4, 10, 40, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.careers-modal.is-open {
  display: block;
  animation: careers-fade 200ms ease;
}

@keyframes careers-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Backdrop ya no se usa visualmente, solo el modal mismo lo es */
.careers-modal__backdrop {
  display: none;
}

.careers-modal__panel {
  position: relative;
  width: calc(100% - 40px);
  max-width: 640px;
  margin: 32px auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 40px 32px;
  box-shadow: 0 40px 80px rgba(4, 10, 40, 0.35);
  animation: careers-pop 240ms cubic-bezier(.2,.9,.3,1.2);
  box-sizing: border-box;
}

@keyframes careers-pop {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.careers-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(5, 11, 38, 0.06);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #050b26;
  transition: background 200ms ease;
}

.careers-modal__close:hover {
  background: rgba(5, 11, 38, 0.12);
}

.careers-modal__header {
  margin-bottom: 22px;
}

.careers-modal__eyebrow {
  margin: 0 0 6px;
  font: 600 12px/16px "Outfit", sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff0060;
}

.careers-modal__title {
  margin: 0 0 8px;
  font: 700 28px/34px "Outfit", sans-serif;
  color: #050b26;
}

.careers-modal__subtitle {
  margin: 0;
  font: 400 15px/22px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.65);
}

.careers-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.careers-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.careers-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.careers-field__label {
  font: 500 13px/16px "Outfit", sans-serif;
  color: #050b26;
}

.careers-field input,
.careers-field select,
.careers-field textarea {
  width: 100%;
  border: 1px solid rgba(5, 11, 38, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font: 400 14px/20px "Outfit", sans-serif;
  color: #050b26;
  background: #ffffff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  box-sizing: border-box;
}

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

.careers-field input:focus,
.careers-field select:focus,
.careers-field textarea:focus {
  border-color: #ff0060;
  box-shadow: 0 0 0 3px rgba(255, 0, 96, 0.15);
}

.careers-file__dropzone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px dashed rgba(5, 11, 38, 0.22);
  border-radius: 14px;
  background: rgba(5, 11, 38, 0.03);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.careers-file__dropzone:hover,
.careers-file__dropzone.is-dragover {
  border-color: #ff0060;
  background: rgba(255, 0, 96, 0.06);
}

.careers-file__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 0, 96, 0.12);
  color: #ff0060;
  flex-shrink: 0;
}

.careers-file__text {
  flex: 1;
  font: 400 14px/20px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.75);
}

.careers-file__text strong {
  color: #050b26;
  font-weight: 600;
}

.careers-file__hint {
  display: block;
  font-size: 12px;
  color: rgba(5, 11, 38, 0.5);
  margin-top: 2px;
}

.careers-file__name {
  font: 500 13px/18px "Outfit", sans-serif;
  color: #050b26;
  background: rgba(5, 11, 38, 0.06);
  border-radius: 8px;
  padding: 6px 10px;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

.careers-file.has-file .careers-file__name {
  display: inline-block;
}

.careers-file.has-file .careers-file__dropzone {
  border-style: solid;
  border-color: #ff0060;
  background: rgba(255, 0, 96, 0.06);
}

.careers-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 400 13px/18px "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.7);
}

.careers-consent input {
  margin-top: 3px;
  accent-color: #ff0060;
}

.careers-recaptcha {
  display: flex;
  justify-content: center;
  min-height: 78px;
  align-items: center;
  margin: 4px 0 0;
}

.careers-recaptcha:empty {
  display: none;
}

.careers-form__feedback {
  font: 500 13px/18px "Outfit", sans-serif;
  min-height: 18px;
}

.careers-form__feedback[data-state="success"] {
  color: #128a4f;
}

.careers-form__feedback[data-state="error"] {
  color: #d32a4d;
}

.careers-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.careers-btn {
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  font: 500 14px/20px "Outfit", sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.careers-btn--ghost {
  background: transparent;
  color: #050b26;
}

.careers-btn--ghost:hover {
  background: rgba(5, 11, 38, 0.06);
}

.careers-btn--primary {
  background: #ff0060;
  color: #ffffff;
  box-shadow: 0 12px 28px -12px rgba(255, 0, 96, 0.6);
}

.careers-btn--primary:hover {
  transform: translateY(-1px);
  background: #e80058;
}

.careers-btn--primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


/* ===================== */
/* Parking Page           */
/* ===================== */

.parking-page {
  height: 3660px;
}

/* Hero Background */
.pk-hero-bg {
  left: -114px;
  top: 0;
  width: 1668px;
  height: 904px;
  z-index: 0;
}

/* Vector decorativo inferior */
.pk-vector-bottom {
  left: -149px;
  top: 1608px;
  width: 2133px;
  height: 1429px;
  z-index: 1;
  pointer-events: none;
}

.pk-vector-bottom img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Banda blanca intermedia */
.pk-white-band {
  left: 0;
  top: 842px;
  width: 1440px;
  height: 265px;
  background: #ffffff;
  z-index: 2;
}

/* Hero subtitle */
.pk-hero-subtitle {
  position: absolute;
  left: 50%;
  top: 141px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 400 40px/normal "Outfit", sans-serif;
  color: #ffffff;
  z-index: 3;
}

/* Hero title */
.pk-hero-title {
  position: absolute;
  left: 50%;
  top: 230px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 700 60px / 60px "Outfit", sans-serif;
  z-index: 3;
}

.pk-white {
  color: #ffffff;
}

.pk-accent {
  color: #ffffff;
}

.pk-hero-download {
  left: 50%;
  top: 610px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.pk-hero-download-buttons {
  display: flex;
  gap: 460px;
  align-items: center;
  justify-content: center;
}

.pk-hero-download-buttons a {
  display: block;
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.pk-hero-download-buttons a:hover {
  transform: translateY(-2px);
}

.pk-hero-download-buttons img {
  display: block;
  height: 84px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
  border-radius: 12px;
}

/* Phone 1 (hero) */
.pk-phone-1 {
  left: 554px;
  top: 369px;
  width: 300px;
  height: 609px;
  z-index: 4;
  will-change: transform, opacity;
}

/* Circulos concentricos */
.pk-circle {
  border-radius: 50%;
  z-index: 3;
}

.pk-circle-outer {
  left: 363px;
  top: 1250px;
  width: 682px;
  height: 682px;
  border: 3px solid rgba(166, 166, 166, 0.25);
}

.pk-circle-mid {
  left: 439px;
  top: 1325px;
  width: 530px;
  height: 530px;
  border: 3px solid rgba(166, 166, 166, 0.25);
}

.pk-circle-inner {
  left: 510px;
  top: 1397px;
  width: 388px;
  height: 388px;
  border: 3px solid rgba(166, 166, 166, 0.25);
}

/* Phone 2 */
.pk-phone-2 {
  left: 554px;
  top: 1286px;
  width: 300px;
  height: 607px;
  z-index: 5;
}

/* Iconos flotantes */
.pk-floating-icon {
  z-index: 5;
  pointer-events: none;
}

.pk-floating-icon img {
  width: 101px;
  height: 101px;
  display: block;
}

.pk-icon-top {
  left: 409px;
  top: 1298px;
}

.pk-icon-bottom-right {
  left: 969px;
  top: 1668px;
}

.pk-icon-bottom-left {
  left: 326px;
  top: 1710px;
}

.pk-icon-right {
  left: 920px;
  top: 1372px;
}

.pk-icon-left-mid {
  left: 427px;
  top: 1495px;
}

/* Descripcion */
.pk-description {
  position: absolute;
  left: 50%;
  top: 2020px;
  transform: translateX(-50%);
  width: 706px;
  text-align: center;
  font: 400 32px / normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
}

.pk-description-duplicate {
  top: 980px;
}

.pk-desc-strong {
  font-weight: 700;
}

.pk-desc-accent {
  font-weight: 700;
  color: #ff0060;
}

/* Pill ¿Cómo usar? */
.pk-pill {
  left: 151px;
  top: 2431px;
  border: 1.418px solid #c3c7da;
  border-radius: 31.896px;
  padding: 17.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: #ffffff;
}

.pk-pill span {
  font: 400 20px/35.619px "Outfit", sans-serif;
  color: #050b26;
  text-align: center;
  letter-spacing: -0.08px;
}

/* Titulo de pasos */
.pk-steps-title {
  position: absolute;
  left: 151px;
  top: 2518px;
  width: 412px;
  font: 600 32px/normal "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.45px;
  z-index: 3;
}

/* Lista de pasos izquierda */
.pk-steps-list {
  left: 129px;
  top: 2780px;
  width: 412px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pk-step-item {
  font: 500 17px/1.3 "Outfit", sans-serif;
  color: #050b26;
  padding: 14px 18px 16px;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease,
    border-color 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  position: relative;
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 14px;
  background: #ffffff;
  user-select: none;
  overflow: hidden; /* clipea progress bar dentro del border-radius */
}

.pk-step-item:hover {
  border-color: rgba(255, 0, 96, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 11, 38, 0.07);
  color: #ff0060;
}

.pk-step-item.pk-step-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.28);
  font-weight: 600;
  transform: translateY(0);
}

/* Progress bar on active step (dentro del botón, parte inferior) */
.pk-step-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 0 14px 14px;
}

.pk-step-item.pk-step-active::after {
  animation: pkStepProgress var(--step-duration, 7s) linear forwards;
}

@keyframes pkStepProgress {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* Botones descarga */
.pk-downloads {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.pk-downloads a {
  display: block;
}

.pk-downloads img {
  height: 52px;
  display: block;
}

/* Step Cards Slider */
.pk-slider {
  left: 653px;
  top: 2505px;
  width: 670px;
  height: 642px;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
}

.pk-slider .pk-step-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(166, 166, 166, 0.4);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 30px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.pk-slider .pk-step-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.pk-slider .pk-step-card.is-leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  z-index: 1;
}

.pk-step-card-text {
  font: 400 20px/normal "Outfit", sans-serif;
  color: #050b26;
  width: 491px;
  margin: 0;
}

.pk-step-card-1 .pk-step-card-text {
  width: 409px;
}

.pk-step-card-img {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 29px;
  overflow: hidden;
}

.pk-step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botones de descarga superpuestos sobre la imagen del paso 1 */
.pk-downloads-overlay {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: right;
  z-index: 2;
  max-width: calc(100% - 60px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.pk-downloads-overlay a {
  display: block;
  flex: 0 0 auto;
}

.pk-downloads-overlay img {
  height: 44px;
  width: auto;
  display: block;
}

/* ── Steps section entrance animations ── */

@keyframes pkStepMenuIn {
  0%   { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes pkSliderIn {
  0%   { opacity: 0; transform: translateY(50px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.pk-steps-list .pk-step-item {
  opacity: 0;
}

.pk-steps-list.is-in .pk-step-item {
  animation: pkStepMenuIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pk-steps-list.is-in .pk-step-item:nth-child(1) { animation-delay: 0.05s; }
.pk-steps-list.is-in .pk-step-item:nth-child(2) { animation-delay: 0.12s; }
.pk-steps-list.is-in .pk-step-item:nth-child(3) { animation-delay: 0.19s; }
.pk-steps-list.is-in .pk-step-item:nth-child(4) { animation-delay: 0.26s; }

.pk-slider {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.pk-slider.is-in {
  animation: pkSliderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* ── Parking page animations ── */

@keyframes pkRadarPing {
  0%   { border-color: var(--pk-ring-dim); box-shadow: 0 0 0 0 transparent; transform: scale(1); }
  15%  { border-color: var(--pk-ring-lit); box-shadow: 0 0 24px 4px var(--pk-ring-glow); transform: scale(1.025); }
  40%  { border-color: var(--pk-ring-dim); box-shadow: 0 0 0 0 transparent; transform: scale(1); }
  100% { border-color: var(--pk-ring-dim); box-shadow: 0 0 0 0 transparent; transform: scale(1); }
}

@keyframes pkPhoneIn {
  0%   { opacity: 0; transform: translateY(60px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes pkIconEntrance {
  0%   { opacity: 0; transform: translate(var(--ix, 0), var(--iy, 40px)) scale(0.6); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes pkIconFloat {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(var(--fx, 0), var(--fy, -8px)); }
  100% { transform: translate(0, 0); }
}

.pk-circle,
.pk-floating-icon {
  opacity: 0;
  transition: opacity 0.1s;
}

.pk-phone-2 {
  opacity: 0;
  will-change: opacity;
}

.pk-circle.is-in {
  opacity: 1;
  animation: pkRadarPing 3s ease-in-out infinite;
}

.pk-circle-inner.is-in {
  --pk-ring-dim: rgba(166, 166, 166, 0.25);
  --pk-ring-lit: #ff0060;
  --pk-ring-glow: rgba(255, 0, 96, 0.35);
  animation-delay: 0s;
}

.pk-circle-mid.is-in {
  --pk-ring-dim: rgba(166, 166, 166, 0.25);
  --pk-ring-lit: #ff0060;
  --pk-ring-glow: rgba(255, 0, 96, 0.35);
  animation-delay: 0.4s;
}

.pk-circle-outer.is-in {
  --pk-ring-dim: rgba(166, 166, 166, 0.25);
  --pk-ring-lit: #ff0060;
  --pk-ring-glow: rgba(255, 0, 96, 0.35);
  animation-delay: 0.8s;
}

.pk-floating-icon.is-in {
  opacity: 1;
  animation:
    pkIconEntrance 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--pk-icon-delay, 0s) both,
    pkIconFloat 4s ease-in-out var(--pk-float-start, 0.7s) infinite;
}

.pk-icon-top.is-in {
  --ix: 0; --iy: 50px;
  --fx: 0; --fy: -10px;
  --pk-icon-delay: 0s;
  --pk-float-start: 0.7s;
}

.pk-icon-bottom-right.is-in {
  --ix: -40px; --iy: 40px;
  --fx: 6px; --fy: -7px;
  --pk-icon-delay: 0.12s;
  --pk-float-start: 0.82s;
}

.pk-icon-bottom-left.is-in {
  --ix: 40px; --iy: 40px;
  --fx: -6px; --fy: -9px;
  --pk-icon-delay: 0.24s;
  --pk-float-start: 0.94s;
}

.pk-icon-right.is-in {
  --ix: -50px; --iy: 30px;
  --fx: 8px; --fy: -6px;
  --pk-icon-delay: 0.36s;
  --pk-float-start: 1.06s;
}

.pk-icon-left-mid.is-in {
  --ix: 50px; --iy: 30px;
  --fx: -7px; --fy: -8px;
  --pk-icon-delay: 0.48s;
  --pk-float-start: 1.18s;
}

/* Parking page footer position */
.parking-page .footer {
  left: -4px;
  top: 3330px;
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE (sv-)
   ═══════════════════════════════════════════════════ */

.services-page {
  height: 2750px;
}

/* Hero Background */
.sv-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  z-index: 0;
}

/* Vector decorativo */
.sv-vector-top {
  left: -94px;
  top: -307px;
  width: 1544px;
  height: 1469px;
  z-index: 1;
  pointer-events: none;
}

.sv-vector-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Banda blanca */
.sv-white-band {
  left: 0;
  top: 772px;
  width: 1440px;
  height: 681px;
  background: #ffffff;
  z-index: 2;
}

/* Hero subtitle */
.sv-hero-subtitle {
  position: absolute;
  left: 50%;
  top: 140px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 400 40px / normal "Outfit", sans-serif;
  color: #ffffff;
  z-index: 3;
}

/* Hero title */
.sv-hero-title {
  position: absolute;
  left: 50%;
  top: 244px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 700 70px / 60px "Outfit", sans-serif;
  z-index: 3;
}

.sv-hero-overlay-image {
  left: 50%;
  top: 375px;
  transform: translateX(-50%);
  width: 500px;
  height: 443px;
  z-index: 3;
  pointer-events: none;
}

.sv-white { color: #ffffff; }
.sv-accent { color: #ffffff; }

/* Description */
.sv-description {
  position: absolute;
  left: 50%;
  top: 900px;
  transform: translateX(-50%);
  width: 822px;
  text-align: center;
  font: 400 32px/normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
}

.sv-marquee {
  left: 50%;
  top: 1168px;
  transform: translateX(-50%);
  width: 100%;
  height: 156px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.sv-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
}

.sv-marquee-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sv-marquee-item {
  width: 191.36px;
  height: 104px;
  border-radius: 27.73px;
  background: #ffffff;
  box-shadow: 0 6.93px 11.09px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 18px;
  overflow: hidden;
}

.sv-marquee-item-leading {
  margin-left: 32px;
}

.sv-marquee-logo {
  max-width: 155px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.sv-marquee-track.sv-marquee-animate {
  animation: svMarqueeMove 34s linear infinite;
  will-change: transform;
}

@keyframes svMarqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .sv-marquee-track.sv-marquee-animate {
    animation: none;
  }
}

/* Vector decorativo — equivalente al pk-vector-bottom de estacionamiento, recoloreado */
.sv-steps-bg {
  left: -149px;
  top: 703px;
  width: 2133px;
  height: 1429px;
  z-index: 2;
  pointer-events: none;
}

.sv-steps-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pill */
.sv-pill {
  left: 151px;
  top: 1421px;
  border: 1.418px solid #c3c7da;
  border-radius: 31.896px;
  padding: 17.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: #ffffff;
}

.sv-pill span {
  font: 400 20px/35.619px "Outfit", sans-serif;
  color: #050b26;
  text-align: center;
  letter-spacing: -0.08px;
}

/* Steps Title */
.sv-steps-title {
  position: absolute;
  left: 151px;
  top: 1508px;
  width: 395px;
  font: 600 32px/normal "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.45px;
  z-index: 3;
}

/* Steps Subtitle */
.sv-steps-subtitle {
  position: absolute;
  left: 151px;
  top: 1630px;
  width: 376px;
  font: 400 20px/normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
}

/* Step List (Left) */
.sv-steps-list {
  left: 129px;
  top: 1770px;
  width: 412px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-step-item {
  font: 500 17px/1.3 "Outfit", sans-serif;
  color: #050b26;
  padding: 14px 18px 16px;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease,
    border-color 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  position: relative;
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 14px;
  background: #ffffff;
  user-select: none;
  overflow: hidden;
}

.sv-step-item:hover {
  border-color: rgba(255, 0, 96, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 11, 38, 0.07);
  color: #ff0060;
}

.sv-step-item.sv-step-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.28);
  font-weight: 600;
  transform: translateY(0);
}

.sv-step-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 0 14px 14px;
}

.sv-step-item.sv-step-active::after {
  animation: pkStepProgress var(--step-duration, 7s) linear forwards;
}

/* Left indicator bar — eliminada (se mantiene solo la barra de progreso ::after) */
.sv-step-item::before,
.sv-step-item.sv-step-active::before {
  content: none;
  display: none;
}

/* Slider */
.sv-slider {
  left: 663px;
  top: 1554px;
  width: 650px;
  height: 640px;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
}

.sv-slider .sv-step-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(166, 166, 166, 0.4);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.sv-slider .sv-step-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.sv-slider .sv-step-card.is-leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  z-index: 1;
}

.sv-step-card-text {
  font: 400 20px/normal "Outfit", sans-serif;
  color: #050b26;
  width: 491px;
  margin: 0;
}

.sv-step-card-img {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 29px;
  overflow: hidden;
  flex-shrink: 0;
}

.sv-step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Download buttons inside card 1 */
.sv-downloads {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.sv-downloads a {
  display: block;
}

.sv-downloads img {
  height: 52px;
  display: block;
}

/* Botones de descarga superpuestos sobre la imagen del paso 1 */
.sv-downloads-overlay {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  max-width: calc(100% - 60px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.sv-downloads-overlay a {
  display: block;
  flex: 0 0 auto;
}

.sv-downloads-overlay img {
  height: 44px;
  width: auto;
  display: block;
}

/* ── Slider entrance animations ── */
.sv-steps-list .sv-step-item {
  opacity: 0;
}

.sv-steps-list.is-in .sv-step-item {
  animation: pkStepMenuIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sv-steps-list.is-in .sv-step-item:nth-child(1) { animation-delay: 0.05s; }
.sv-steps-list.is-in .sv-step-item:nth-child(2) { animation-delay: 0.12s; }
.sv-steps-list.is-in .sv-step-item:nth-child(3) { animation-delay: 0.19s; }

.sv-slider {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.sv-slider.is-in {
  animation: pkSliderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* Footer position */
.services-page .footer {
  left: -4px;
  top: 2420px;
}

/* Seguros page overrides (reusing sv- structure) */
/* Ocultar overlay del hero — se conserva en HTML por si se reactiva */
.seguros-page .sv-hero-overlay-image {
  display: none;
}

.seguros-page .sv-alliance-note {
  position: absolute;
  left: 50%;
  top: 1088px;
  transform: translateX(-50%);
  width: 900px;
  text-align: center;
  font: 600 30px/normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
}

/* Alliance section: réplica de pm-alliance adaptada a seguros */
.seguros-page .sv-alliance {
  position: absolute;
  left: 50%;
  top: 1060px;
  transform: translateX(-50%) translateY(20px);
  width: max-content;
  max-width: 900px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.seguros-page .sv-alliance.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.seguros-page .sv-alliance__label {
  margin: 0;
  font: 500 22px/1 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: 0.4px;
}

.seguros-page .sv-alliance__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.seguros-page .sv-alliance__logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 200ms ease;
}

.seguros-page .sv-alliance__logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.seguros-page .sv-alliance__divider {
  width: 1px;
  height: 56px;
  background: rgba(5, 11, 38, 0.18);
}

.seguros-page .sv-marquee {
  top: 1340px;
  height: 130px;
  overflow: hidden;
}

/* Push steps section down to keep breathing room after the alliance + marquee */
.seguros-page .sv-pill { top: 1521px; }
.seguros-page .sv-steps-title { top: 1660px; }
.seguros-page .sv-steps-subtitle { top: 1730px; }
.seguros-page .sv-steps-list { top: 1870px; }
.seguros-page .sv-slider { top: 1654px; }
.seguros-page .sv-steps-bg { top: 803px; }

.seguros-page .sv-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
}

.seguros-page .sv-marquee-group {
  display: flex;
  align-items: center;
  gap: 96px;
  padding-left: 100px;
}

.seguros-page .sv-marquee-track.sv-marquee-animate {
  animation-duration: 15s;
}

.seguros-page .sv-marquee-item {
  width: auto;
  min-width: max-content;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  white-space: nowrap;
}

.seguros-page .sv-marquee-item-text {
  font: 600 30px/normal "Outfit", sans-serif;
  color: #a4a9bc;
  text-align: center;
  transition: color 0.25s ease;
}

/* Color del texto cuando el item está activo */
.seguros-page .sv-marquee-item.is-active .sv-marquee-item-text,
.seguros-page .sv-marquee-item-text.is-active {
  color: #7157dc;
}

/* ═══════════════════════════════════════════════════
   PARQUIMETROS PAGE (pm-)
   ═══════════════════════════════════════════════════ */

.meters-page {
  height: 4210px;
}

/* Hero Background */
.pm-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  z-index: 0;
}

/* Banda blanca */
.pm-white-band {
  left: 0;
  top: 772px;
  width: 1440px;
  height: 681px;
  background: #ffffff;
  z-index: 2;
}

/* Hero subtitle */
.pm-hero-subtitle {
  position: absolute;
  left: 50%;
  top: 165px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 400 40px / normal "Outfit", sans-serif;
  color: #ffffff;
  z-index: 3;
}

/* Hero title */
.pm-hero-title {
  position: absolute;
  left: 50%;
  top: 270px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 700 70px / 60px "Outfit", sans-serif;
  z-index: 2;
}

.pm-hero-overlay {
  left: 50%;
  top: 330px;
  transform: translateX(-50%);
  width: 1020px;
  height: 555px;
  z-index: 2;
  pointer-events: none;
}

.pm-white { color: #ffffff; }
.pm-accent { color: #ffffff; }

/* ── Modernización urbana ── */
.pm-modern-title {
  position: absolute;
  left: 50%;
  top: 945px;
  transform: translateX(-50%);
  width: 706px;
  text-align: center;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pm-modern-title.is-in {
  opacity: 1;
}

.pm-modern-desc {
  position: absolute;
  left: 50%;
  top: 975px;
  transform: translateX(-50%) translateY(20px);
  width: 575px;
  text-align: center;
  font: 400 20px / normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.pm-modern-desc.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Photo carousel ── */
.pm-photo-carousel {
  left: 50%;
  top: 1222px;
  transform: translateX(-50%);
  width: 980px;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 3;
  background: #d9d9d9;
  box-shadow: 0 16px 34px rgba(5, 11, 38, 0.16);
}

.pm-photo-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.pm-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.pm-photo-slide.is-active {
  opacity: 1;
}

.pm-photo-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #050b26;
  box-shadow: 0 8px 18px rgba(5, 11, 38, 0.2);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 4;
  transition: transform 140ms ease, background 140ms ease;
}

.pm-photo-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.pm-photo-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.pm-photo-arrow-prev {
  left: 16px;
}

.pm-photo-arrow-next {
  right: 16px;
}

.pm-photo-arrow span {
  font: 700 22px/1 "Outfit", sans-serif;
}

/* ── Vector decorativo — equivalente al pk-vector-bottom de estacionamiento, recoloreado ── */
.pm-steps-bg {
  left: -149px;
  top: 812px;
  width: 2133px;
  height: 1429px;
  z-index: 2;
  pointer-events: none;
}

.pm-steps-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Pill */
.pm-pill {
  left: 151px;
  top: 1690px;
  border: 1.418px solid #c3c7da;
  border-radius: 31.896px;
  padding: 17.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: #ffffff;
}

.pm-pill span {
  font: 400 20px/35.619px "Outfit", sans-serif;
  color: #050b26;
  text-align: center;
  letter-spacing: -0.08px;
}

/* Steps Title */
.pm-steps-title {
  position: absolute;
  left: 151px;
  top: 1780px;
  width: 468px;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.45px;
  z-index: 3;
}

/* Step List (Left) */
.pm-steps-list {
  left: 129px;
  top: 2015px;
  width: 412px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pm-step-item {
  font: 500 17px/1.3 "Outfit", sans-serif;
  color: #050b26;
  padding: 14px 18px 16px;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease,
    border-color 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  position: relative;
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 14px;
  background: #ffffff;
  user-select: none;
  overflow: hidden;
}

.pm-step-item:hover {
  border-color: rgba(255, 0, 96, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 11, 38, 0.07);
  color: #ff0060;
}

.pm-step-item.pm-step-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.28);
  font-weight: 600;
  transform: translateY(0);
}

.pm-step-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 0 14px 14px;
}

.pm-step-item.pm-step-active::after {
  animation: pkStepProgress var(--step-duration, 7s) linear forwards;
}

/* Left indicator bar — eliminada (se mantiene solo la barra de progreso ::after) */
.pm-step-item::before,
.pm-step-item.pm-step-active::before {
  content: none;
  display: none;
}

/* ── Slider ── */
.pm-slider {
  left: 663px;
  top: 1770px;
  width: 650px;
  height: 640px;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
}

.pm-slider .pm-step-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(166, 166, 166, 0.4);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.pm-slider .pm-step-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.pm-slider .pm-step-card.is-leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  z-index: 1;
}

.pm-step-card-text {
  font: 400 20px/normal "Outfit", sans-serif;
  color: #050b26;
  width: 491px;
  margin: 0;
}

.pm-step-card-img {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 29px;
  overflow: hidden;
  flex-shrink: 0;
}

.pm-step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pm-placeholder {
  background: #d9d9d9;
  border-radius: 32px;
}

/* Download buttons */
.pm-downloads {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.pm-downloads a { display: block; }
.pm-downloads img { height: 52px; display: block; }

/* Botones de descarga superpuestos sobre la imagen del paso 1 */
.pm-downloads-overlay {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  z-index: 2;
  max-width: calc(100% - 60px);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

.pm-downloads-overlay a {
  display: block;
  flex: 0 0 auto;
}

.pm-downloads-overlay img {
  height: 44px;
  width: auto;
  display: block;
}

/* Slider entrance animations */
.pm-steps-list .pm-step-item {
  opacity: 0;
}

.pm-steps-list.is-in .pm-step-item {
  animation: pkStepMenuIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pm-steps-list.is-in .pm-step-item:nth-child(1) { animation-delay: 0.05s; }
.pm-steps-list.is-in .pm-step-item:nth-child(2) { animation-delay: 0.12s; }
.pm-steps-list.is-in .pm-step-item:nth-child(3) { animation-delay: 0.19s; }
.pm-steps-list.is-in .pm-step-item:nth-child(4) { animation-delay: 0.26s; }

.pm-slider {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.pm-slider.is-in {
  animation: pkSliderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* ── Map Section ── */
.pm-zones-section {
  left: 240px;
  top: 2620px;
  width: 950px;
  height: 730px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 249, 255, 0.96) 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  box-shadow: 0 24px 60px rgba(5, 11, 38, 0.18);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pm-zones-section.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Banda parallax — imagen de fondo detrás de la sección de ubicaciones.
   Termina ANTES de la sección de alianza (alcaldía + INTRAVIALCA) para no
   contaminar visualmente los logos. */
.pm-zones-parallax {
  left: -100px;
  top: 2400px;
  width: 1640px;
  height: 980px; /* ends at 3380, alliance starts at 3500 → 120px de aire blanco */
  background: url(./assets/parquimetros/pm-zones-bg.jpg) center/cover no-repeat fixed;
  z-index: 2;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 8%,
    rgba(0, 0, 0, 0.6) 16%,
    #000 26%,
    #000 62%,
    rgba(0, 0, 0, 0.6) 76%,
    rgba(0, 0, 0, 0.2) 88%,
    transparent 96%,
    transparent 100%);
  mask-image: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.2) 8%,
    rgba(0, 0, 0, 0.6) 16%,
    #000 26%,
    #000 62%,
    rgba(0, 0, 0, 0.6) 76%,
    rgba(0, 0, 0, 0.2) 88%,
    transparent 96%,
    transparent 100%);
}

.pm-zones-title {
  margin: 30px;
  width: 524px;
  align-self: center;
  text-align: center;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
}

.pm-zones-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2px;
}

.pm-zone-tab {
  border: 1px solid #d7dced;
  background: #ffffff;
  color: #050b26;
  border-radius: 999px;
  font: 500 16px/normal "Outfit", sans-serif;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 160ms ease;
}

.pm-zone-tab:hover {
  border-color: #ff0060;
  color: #ff0060;
}

.pm-zone-tab.is-active {
  background: #ff0060;
  color: #ffffff;
  border-color: #ff0060;
  box-shadow: 0 10px 18px rgba(255, 0, 96, 0.26);
}

.pm-zones-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.pm-zone-item {
  background: #ffffff;
  border: 1px solid rgba(214, 219, 237, 0.75);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 8px 16px rgba(5, 11, 38, 0.04);
}

.pm-zone-item.is-hidden {
  display: none;
}

.pm-zone-name {
  margin: 0;
  font: 600 22px/normal "Outfit", sans-serif;
  color: #050b26;
}

.pm-zone-meta {
  margin: 6px 0 0;
  font: 400 16px/normal "Outfit", sans-serif;
  color: #5d647f;
}

/* Alliance section: logos Alcaldía de Caracas + INTRAVIALCA */
.pm-alliance {
  position: absolute;
  left: 50%;
  top: 3500px;
  transform: translateX(-50%) translateY(20px);
  width: max-content;
  max-width: 720px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.pm-alliance.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pm-alliance__label {
  margin: 0;
  font: 500 22px/1 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: 0.4px;
}

.pm-alliance__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.pm-alliance__logo {
  height: 195px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 200ms ease;
}

.pm-alliance__logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.pm-alliance__logo--intravialca {
  height: 140px;
}

.pm-alliance__divider {
  width: 1px;
  height: 56px;
  background: rgba(5, 11, 38, 0.18);
}

/* Footer position */
.meters-page .footer {
  left: -4px;
  top: 3880px;
}

/* ═══════════════════════════════════════════════════
   EMPRESAS ESTACIONAMIENTO PAGE (ep-)
   ═══════════════════════════════════════════════════ */

.enterprise-parking-page {
  height: 9090px;
}

/* ── Hero (Financiamiento) ── */
.ep-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 805px;
  z-index: 0;
  background:
    radial-gradient(circle at 82% 18%, rgb(9 15 150 / 28%) 0%, rgba(255, 0, 96, 0) 46%),
    radial-gradient(circle at 12% 88%, rgba(82, 48, 166, 0.42) 0%, rgba(82, 48, 166, 0) 50%),
    linear-gradient(135deg, #123084 0%, #050b26 62%);
}

.ep-hero-eyebrow {
  position: absolute;
  left: 50%;
  top: 250px;
  transform: translateX(-50%);
  z-index: 3;
  font: 600 13px / 1 "Outfit", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
}

.ep-hero-fin-title {
  position: absolute;
  left: 50%;
  top: 320px;
  transform: translateX(-50%);
  width: 960px;
  text-align: center;
  font: 700 60px / 1.04 "Outfit", sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  z-index: 3;
}

.ep-hero-fin-desc {
  position: absolute;
  left: 50%;
  top: 388px;
  transform: translateX(-50%);
  width: 760px;
  text-align: center;
  font: 400 19px/1.55 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.84);
  z-index: 3;
}

.ep-hero-fin-cta {
  position: absolute;
  left: 50%;
  top: 510px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 600 18px/1 "Outfit", sans-serif;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(255, 0, 96, 0.40);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ep-hero-fin-cta svg { transition: transform 0.25s ease; }
.ep-hero-fin-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 22px 46px rgba(255, 0, 96, 0.48);
  filter: brightness(1.05);
}
.ep-hero-fin-cta:hover svg { transform: translateX(4px); }

.ep-hero-fin-bullets {
  position: absolute;
  left: 50%;
  top: 620px;
  transform: translateX(-50%);
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 38px;
}

.ep-hero-fin-bullet {
  display: flex;
  align-items: center;
  gap: 11px;
  font: 500 16px/1.2 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.ep-vector-top {
  left: -94px;
  top: -307px;
  width: 1544px;
  height: 1469px;
  z-index: 1;
  pointer-events: none;
}

.ep-vector-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ep-white-band {
  left: 0;
  top: 805px;
  width: 1440px;
  height: 681px;
  background: #ffffff;
  z-index: 2;
}

.ep-accent { color: #ff0060; }

/* ── Sistema Administrativo ── */
.ep-admin-title {
  position: absolute;
  left: 198px;
  top: 930px;
  width: 1039px;
  text-align: center;
  font: 700 55px / 1.05 "Outfit", sans-serif;
  color: #050b26;
  text-transform: capitalize;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ep-admin-title.is-in {
  opacity: 1;
}

.ep-admin-desc {
  position: absolute;
  left: 50%;
  top: 975px;
  transform: translateX(-50%) translateY(20px);
  width: 591px;
  text-align: center;
  font: 400 20px / 1.35 "Outfit", sans-serif;
  color: #2a2a2a;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.ep-admin-desc.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ep-dashboard-img {
  left: 312px;
  top: 1100px;
  width: 816px;
  height: 528px;
  border-radius: 31px;
  overflow: hidden;
  z-index: 4;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.ep-dashboard-img.is-in {
  opacity: 1;
  transform: scale(1);
}

.ep-service-card {
  left: 214px;
  top: 1390px;
  width: 1007px;
  height: 284px;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 0%, rgba(18, 48, 132, 1) 13%, rgba(5, 11, 38, 1) 100%);
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.ep-service-card.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-service-card-inner {
  position: absolute;
  left: 33px;
  top: 33px;
  right: 33px;
  bottom: 33px;
  border-radius: 40px;
}

/* ── Portal Admin Features ── */
.ep-pill {
  left: 72px;
  top: 2020px;
  border: 1.418px solid #c3c7da;
  border-radius: 31.896px;
  padding: 17.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: #ffffff;
}

.ep-pill span {
  font: 400 20px/35.619px "Outfit", sans-serif;
  color: #050b26;
  text-align: center;
  letter-spacing: -0.08px;
}

.ep-portal-title {
  position: absolute;
  left: 72px;
  top: 2135px;
  width: 395px;
  font: 600 32px / 1.25 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.45px;
  z-index: 3;
}

.ep-steps-list {
  left: 50px;
  top: 2320px;
  width: 412px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ep-step-item {
  font: 500 17px/1.3 "Outfit", sans-serif;
  color: #050b26;
  padding: 14px 18px 16px;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease,
    border-color 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  position: relative;
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 14px;
  background: #ffffff;
  user-select: none;
  overflow: hidden;
}

.ep-step-item:hover {
  border-color: rgba(255, 0, 96, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 11, 38, 0.07);
  color: #ff0060;
}

.ep-step-item.ep-step-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.28);
  font-weight: 600;
  transform: translateY(0);
}

.ep-step-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 0 14px 14px;
}

.ep-step-item.ep-step-active::after {
  animation: pkStepProgress var(--step-duration, 7s) linear forwards;
}

/* Left indicator bar — eliminada (se mantiene solo la barra de progreso ::after) */
.ep-step-item::before,
.ep-step-item.ep-step-active::before {
  content: none;
  display: none;
}

/* ── Slider ── */
.ep-slider {
  left: 568px;
  top: 2024px;
  width: 804px;
  height: 640px;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
}

.ep-slider .ep-step-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(166, 166, 166, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.ep-slider .ep-step-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.ep-slider .ep-step-card.is-leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  z-index: 1;
}

.ep-step-card-text {
  font: 400 20px/1.26 "Outfit", sans-serif;
  color: #050b26;
  width: 568px;
  margin: 0;
}

.ep-step-card-img {
  width: 100%;
  height: 480px;
  border-radius: 29px;
  overflow: hidden;
  flex-shrink: 0;
}

.ep-step-card-img img,
.ep-step-card-img picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider entrance animations */
.ep-steps-list .ep-step-item {
  opacity: 0;
}

.ep-steps-list.is-in .ep-step-item {
  animation: pkStepMenuIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ep-steps-list.is-in .ep-step-item:nth-child(1) { animation-delay: 0.05s; }
.ep-steps-list.is-in .ep-step-item:nth-child(2) { animation-delay: 0.12s; }
.ep-steps-list.is-in .ep-step-item:nth-child(3) { animation-delay: 0.19s; }
.ep-steps-list.is-in .ep-step-item:nth-child(4) { animation-delay: 0.26s; }
.ep-steps-list.is-in .ep-step-item:nth-child(5) { animation-delay: 0.33s; }

.ep-slider {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.ep-slider.is-in {
  animation: pkSliderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

/* ── Módulos BLE ── */
.ep-ble-title {
  position: absolute;
  left: 50%;
  top: 3004px;
  transform: translateX(-50%);
  width: 717px;
  text-align: center;
  font: 600 64px / 0.95 "Outfit", sans-serif;
  color: #2a2a2a;
  letter-spacing: -0.0144em;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ep-ble-title.is-in {
  opacity: 1;
}

.ep-ble-desc {
  position: absolute;
  left: 50%;
  top: 3070px;
  transform: translateX(-50%) translateY(20px);
  width: 571px;
  text-align: center;
  font: 400 20px / 1.35 "Outfit", sans-serif;
  color: #2a2a2a;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.ep-ble-desc.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Módulo BLE — imagen del producto físico, centrada entre la descripción y las cards */
.ep-ble-module {
  left: 50%;
  top: 3180px;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-ble-module.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ep-ble-module img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(5, 11, 38, 0.18));
  animation: epBleFloat 4.5s ease-in-out infinite;
}

@keyframes epBleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Three Process Cards ── */
.ep-process-cards {
  left: 131px;
  top: 3660px;
  width: 1188px;
  height: 398px;
  z-index: 3;
  display: flex;
  gap: 12px;
}

.ep-process-card {
  width: 388px;
  height: 320px;
  border-radius: 30px;
  background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgba(234, 237, 248, 1) 100%);
  padding: 40px 43px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
}

.ep-process-num {
  font: 300 56px/0.9 "Outfit", sans-serif;
  color: #000000;
}

.ep-process-text {
  font: 400 22px/1.3 "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
}

.ep-process-text strong {
  font-weight: 900;
}

@keyframes epCardStagger {
  0% { opacity: 0; transform: translateY(50px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.ep-process-cards.is-in .ep-process-card:nth-child(1) {
  animation: epCardStagger 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s forwards;
}
.ep-process-cards.is-in .ep-process-card:nth-child(2) {
  animation: epCardStagger 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.ep-process-cards.is-in .ep-process-card:nth-child(3) {
  animation: epCardStagger 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

/* ── Community Stats ── */
.ep-stats-label {
  position: absolute;
  left: 50%;
  top: 4080px;
  transform: translateX(-50%) translateY(20px);
  width: 582px;
  text-align: center;
  font: 400 36px / 1.2 "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ep-stats-label.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ep-stats-number {
  position: absolute;
  left: 50%;
  top: 4040px;
  transform: translateX(-50%);
  text-align: center;
  font: 700 120px / 1.1 "Outfit", sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, rgba(255, 0, 96, 1) 0%, rgba(18, 41, 140, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 0.1s;
}

.ep-stats-number.is-in {
  opacity: 1;
}

.ep-stats-unit {
  position: absolute;
  left: 50%;
  top: 4250px;
  transform: translateX(-50%);
  text-align: center;
  font: 300 36px / 1.2 "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.2s;
}

.ep-stats-unit.is-in {
  opacity: 1;
}

/* ── Taquillas de Autogestión ── */
/* Fondo parallax con la imagen del estacionamiento + curvas magenta.
   Cubre el título + descripción + el kiosko. */
.ep-taquillas-bg {
  left: -23px;
  top: 4470px;
  width: 1521px;
  height: 805px;
  background:
    /* Overlay sutil navy para legibilidad del texto sobre las curvas magenta */
    linear-gradient(180deg, rgba(4, 10, 40, 0.20) 0%, rgba(4, 10, 40, 0.12) 100%),
    url(./assets/empresas-estacionamiento/ep-taquillas-bg.jpg) center/cover no-repeat fixed;
  background-color: #040a28;
  z-index: 1;
}

.ep-taquillas-title {
  position: absolute;
  left: 100px;
  top: 4620px;
  width: 560px;
  text-align: left;
  font: 600 56px / 1.05 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.0144em;
  text-shadow: 0 4px 18px rgba(4, 10, 40, 0.35);
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ep-taquillas-title.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-taquillas-desc {
  position: absolute;
  left: 100px;
  top: 4750px;
  transform: translateY(20px);
  width: 560px;
  text-align: left;
  font: 400 18px / 1.5 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 10px rgba(4, 10, 40, 0.3);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.ep-taquillas-desc.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Lista numerada de features sobre la franja parallax */
.ep-taquillas-features {
  left: 100px;
  top: 4910px;
  width: 580px;
  z-index: 3;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ep-taquillas-feature {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ep-taquillas-features.is-in .ep-taquillas-feature {
  opacity: 1;
  transform: translateY(0);
}

.ep-taquillas-features.is-in .ep-taquillas-feature:nth-child(1) { transition-delay: 0.15s; }
.ep-taquillas-features.is-in .ep-taquillas-feature:nth-child(2) { transition-delay: 0.25s; }
.ep-taquillas-features.is-in .ep-taquillas-feature:nth-child(3) { transition-delay: 0.35s; }

.ep-taquillas-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 13px / 1 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.05em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.ep-taquillas-feature-body {
  padding-top: 2px;
}

.ep-taquillas-feature-title {
  font: 600 20px / 1.2 "Outfit", sans-serif;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.ep-taquillas-feature-desc {
  font: 400 15px / 1.5 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.ep-kiosko-img {
  left: 920px;
  top: 4566px;
  transform: translateY(40px);
  width: 380px;
  height: 724px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
  pointer-events: none;
}

.ep-kiosko-img.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-kiosko-img picture,
.ep-kiosko-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Puntos de Venta ── */
.ep-vector-5 {
  left: -170px;
  top: 2716px;
  width: 2359px;
  height: 1233px;
  z-index: 1;
  pointer-events: none;
}

.ep-vector-5 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ep-vector-6 {
  left: -529px;
  top: 4645px;
  width: 2771px;
  height: 1755px;
  z-index: 1;
  pointer-events: none;
}

.ep-vector-6 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ep-pos-img {
  left: -31px;
  top: 5371px;
  width: 1584px;
  height: 1042px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ep-pos-img.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-pos-title {
  position: absolute;
  left: 591px;
  top: 5545px;
  width: 426px;
  text-align: left;
  font: 600 64px / 0.95 "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ep-pos-title.is-in {
  opacity: 1;
}

.ep-pos-subtitle {
  position: absolute;
  left: 720px;
  top: 5540px;
  width: 426px;
  text-align: left;
  font: 600 64px / 0.95 "Outfit", sans-serif;
  color: #ff0060;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 0.08s;
}

.ep-pos-subtitle.is-in {
  opacity: 1;
}

.ep-pos-desc {
  position: absolute;
  left: 121px;
  top: 6176px;
  width: 484px;
  font: 400 20px/1.35 "Outfit", sans-serif;
  color: #000000;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-pos-desc.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-pos-bullets {
  left: 121px;
  top: 6278px;
  width: 500px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-pos-bullets.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-pos-bullet {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ep-pos-bullet img {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}

.ep-pos-bullet span {
  font: 400 20px/1.25 "Outfit", sans-serif;
  color: #050b26;
}

.ep-pos-disclaimer {
  position: absolute;
  left: 121px;
  top: 6450px;
  width: 520px;
  font: italic 400 13px/1.4 "Outfit", sans-serif;
  color: #5b6075;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-pos-disclaimer.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Benefits Grid ── */
.ep-benefits-title {
  position: absolute;
  left: 50%;
  top: 6495px;
  transform: translateX(-50%);
  text-align: center;
  font: 500 28px/1.25 "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.ep-benefits-title.is-in {
  opacity: 1;
}

.ep-benefits-grid {
  left: 121px;
  top: 6595px;
  width: 1198px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 390px);
  gap: 14px;
}

.ep-benefit-card {
  border-radius: 0;
  background: linear-gradient(225deg, rgba(255, 255, 255, 1) 0%, rgba(234, 237, 248, 1) 100%);
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 245px;
  opacity: 0;
}

.ep-benefit-card.ep-benefit-tall {
  height: 245px;
}

.ep-benefit-card:nth-child(1) { border-radius: 50px 0 0 0; }
.ep-benefit-card:nth-child(3) { border-radius: 0 50px 0 0; }
.ep-benefit-card:nth-child(4) { border-radius: 0 0 0 50px; }
.ep-benefit-card:nth-child(6) { border-radius: 0 0 50px 0; }

.ep-benefit-num {
  font: 300 56px/0.9 "Outfit", sans-serif;
  color: #050b26;
}

.ep-benefit-text {
  font: 400 20px/1.3 "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
}

@keyframes epGridIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.ep-benefits-grid.is-in .ep-benefit-card:nth-child(1) { animation: epGridIn 0.5s ease 0s forwards; }
.ep-benefits-grid.is-in .ep-benefit-card:nth-child(2) { animation: epGridIn 0.5s ease 0.08s forwards; }
.ep-benefits-grid.is-in .ep-benefit-card:nth-child(3) { animation: epGridIn 0.5s ease 0.16s forwards; }
.ep-benefits-grid.is-in .ep-benefit-card:nth-child(4) { animation: epGridIn 0.5s ease 0.24s forwards; }
.ep-benefits-grid.is-in .ep-benefit-card:nth-child(5) { animation: epGridIn 0.5s ease 0.32s forwards; }
.ep-benefits-grid.is-in .ep-benefit-card:nth-child(6) { animation: epGridIn 0.5s ease 0.40s forwards; }

/* ── Cámaras / ANPR ── */
.ep-cam-title {
  position: absolute;
  left: 460px;
  top: 7348px;
  width: 453px;
  text-align: left;
  font: 600 64px / 1.05 "Outfit", sans-serif;
  letter-spacing: -0.0144em;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.ep-cam-title.is-in {
  opacity: 1;
}

.ep-cam-anpr {
  position: absolute;
  left: 633px;
  top: 7370px;
  width: 453px;
  text-align: center;
  font: 600 84px / 0.72 "Outfit", sans-serif;
  color: #ff0060;
  letter-spacing: -0.011em;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 0.08s;
}

.ep-cam-anpr.is-in {
  opacity: 1;
}

.ep-cam-img {
  left: 430px;
  top: 7377px;
  width: 300px;
  height: 218px;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-cam-img.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-cam-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ep-cam-desc {
  position: absolute;
  left: 480px;
  top: 7547px;
  transform: translateY(20px);
  width: 483px;
  text-align: center;
  font: 400 20px / 1.35 "Outfit", sans-serif;
  color: #2a2a2a;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.ep-cam-desc.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Bottom Section ── */
.ep-bottom-card {
  left: 148px;
  top: 7734px;
  width: 1145px;
  height: 250px;
  border-radius: 50px;
  background: radial-gradient(circle at 50% 0%, rgba(18, 48, 132, 1) 13%, rgba(5, 11, 38, 1) 100%);
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ep-bottom-card.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-bottom-title {
  position: absolute;
  left: 220px;
  top: 7800px;
  width: 409px;
  font: 600 38px / 1.05 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.032em;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}

.ep-bottom-title.is-in {
  opacity: 1;
}

.ep-bottom-img {
  left: 697px;
  top: 7665px;
  width: 941px;
  height: 480px;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.ep-bottom-img.is-in {
  opacity: 1;
  transform: translateX(0);
}

.ep-bottom-benefits-title {
  position: absolute;
  left: 175px;
  top: 8100px;
  width: 233px;
  font: 500 28px / 1.25 "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s;
}

.ep-bottom-benefits-title.is-in {
  opacity: 1;
}

.ep-bottom-bullets {
  left: 175px;
  top: 8165px;
  width: 500px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.ep-bottom-bullets.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-bottom-bullet {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ep-bottom-bullet img {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
}

.ep-bottom-bullet span {
  font: 400 20px/1.25 "Outfit", sans-serif;
  color: #050b26;
}

/* Acento magenta sólido (usado en hero + cta band) */
.ep-finance-accent {
  background: linear-gradient(90deg, #ff0060 0%, #ff0060 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Check de los bullets del hero — estilo glass como .ep-taquillas-num */
.ep-finance-bullet-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 15px / 1 "Outfit", sans-serif;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ── CTA band final (abre modal) ── */
.ep-cta-band {
  left: 120px;
  top: 8400px;
  width: 1200px;
  box-sizing: border-box;
  padding: 52px 60px;
  border-radius: 40px;
  text-align: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 0, 96, 0.28) 0%, rgba(255, 0, 96, 0) 44%),
    linear-gradient(135deg, #123084 0%, #050b26 62%);
  box-shadow: 0 30px 70px rgba(5, 11, 38, 0.28);
  z-index: 4;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ep-cta-band.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ep-cta-band-title {
  font: 700 40px/1.1 "Outfit", sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.ep-cta-band-desc {
  font: 400 19px/1.5 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 28px auto;
  max-width: 640px;
}

.ep-cta-band-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 600 18px/1 "Outfit", sans-serif;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(255, 0, 96, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ep-cta-band-btn svg { transition: transform 0.25s ease; }
.ep-cta-band-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(255, 0, 96, 0.46);
  filter: brightness(1.05);
}
.ep-cta-band-btn:hover svg { transform: translateX(4px); }

/* ── Botón flotante (FAB) — mismo estilo que .header-cta ── */
.ep-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 70px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: #ff0060;
  color: #ffffff;
  font: 600 22px / 1 "Outfit", sans-serif;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.32);
  /* Oculto hasta empezar a desplazarse */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease, visibility 0.3s ease;
}

.ep-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ep-fab svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.ep-fab:hover {
  background: #ffffff;
  color: #050b26;
  transform: translateY(-1px);
  /* Sombra suave para diferenciarlo sobre fondos blancos */
  box-shadow: 0 8px 28px rgba(5, 11, 38, 0.16), 0 2px 8px rgba(5, 11, 38, 0.10);
}

.ep-fab:hover svg {
  transform: translateX(4px);
}

/* ── Modal ── */
.ep-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ep-modal.is-open { opacity: 1; }
.ep-modal[hidden] { display: none; }

.ep-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 38, 0.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.ep-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 1;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.ep-modal.is-open .ep-modal-dialog {
  transform: translateY(0) scale(1);
}

.ep-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #f0f1f6;
  color: #5a6079;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ep-modal-close:hover {
  background: #ff0060;
  color: #ffffff;
  transform: rotate(90deg);
}

/* ── Formulario (card claro, reusado en el modal) ── */
.ep-finance-form {
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 34px 34px;
  box-shadow: 0 30px 60px rgba(5, 11, 38, 0.28);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.ep-finance-form-title {
  font: 600 26px/1.15 "Outfit", sans-serif;
  color: #050b26;
  margin: 0 0 6px 0;
}

.ep-finance-form-sub {
  font: 400 15px/1.4 "Outfit", sans-serif;
  color: #5a6079;
  margin: 0 0 24px 0;
}

.ep-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  flex: 1;
}

.ep-field-row {
  display: flex;
  gap: 14px;
}

.ep-field label {
  font: 500 13px/1 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: 0.01em;
}

.ep-field input {
  font: 400 16px/1.2 "Outfit", sans-serif;
  color: #050b26;
  padding: 13px 16px;
  border: 1.5px solid #d7dcec;
  border-radius: 12px;
  background: #f7f8fc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.ep-field input::placeholder {
  color: #9aa0b8;
}

.ep-field input:focus {
  outline: none;
  border-color: #ff0060;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 0, 96, 0.12);
}

/* Oculta las flechas de los number inputs */
.ep-field input[type="number"]::-webkit-outer-spin-button,
.ep-field input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ep-field input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.ep-finance-cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 600 17px/1 "Outfit", sans-serif;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 0, 96, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ep-finance-cta svg {
  transition: transform 0.25s ease;
}

.ep-finance-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 0, 96, 0.40);
  filter: brightness(1.04);
}

.ep-finance-cta:hover svg {
  transform: translateX(4px);
}

.ep-finance-cta:active {
  transform: translateY(0);
}

.ep-finance-form-note {
  margin: 12px 0 0 0;
  font: 500 14px/1.35 "Outfit", sans-serif;
  min-height: 18px;
  text-align: center;
}

.ep-finance-form-note.is-error {
  color: #d62246;
}

.ep-finance-form-note.is-ok {
  color: #1a8a4a;
}

/* Footer position */
.enterprise-parking-page .footer {
  left: -4px;
  top: 8760px;
}

/* ═══════════════════════════════════════════════════
   POLIZAS SEGURO PAGE (ps-)
   ═══════════════════════════════════════════════════ */

.polizas-seguro-page {
  height: 4210px;
  background: #ffffff;
}

.ps-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  /* Mismo banner del hero de Seguros (personas) mientras se define el banner propio de Pólizas */
  background:
    url(./assets/seguros/hero-banner-seguros.jpg) center/cover no-repeat,
    linear-gradient(145deg, #040a28 0%, #1f3fbb 55%, #ff0060 100%);
  background-color: #040a28;
  z-index: 0;
}

.ps-white-band {
  left: 0;
  top: 772px;
  width: 1440px;
  height: 681px;
  background: #ffffff;
  z-index: 2;
}

.ps-hero-subtitle {
  position: absolute;
  left: 50%;
  top: 130px;
  transform: translateX(-50%);
  width: 757px;
  text-align: center;
  font: 400 40px / normal "Outfit", sans-serif;
  color: #ffffff;
  z-index: 3;
}

.ps-hero-title {
  position: absolute;
  left: 50%;
  top: 230px;
  transform: translateX(-50%);
  width: 1040px;
  text-align: center;
  font: 702 70px / 67px "Outfit", sans-serif;
  color: #ffffff;
  z-index: 2;
}

.ps-modern-title {
  position: absolute;
  left: 50%;
  top: 945px;
  transform: translateX(-50%);
  width: 900px;
  text-align: center;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ps-modern-title.is-in {
  opacity: 1;
}

.ps-modern-desc {
  position: absolute;
  left: 50%;
  top: 980px;
  transform: translateX(-50%) translateY(20px);
  width: 740px;
  text-align: center;
  font: 400 20px / normal "Outfit", sans-serif;
  color: #050b26;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.ps-modern-desc.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ps-photo-carousel {
  left: 50%;
  top: 1145px;
  transform: translateX(-50%);
  width: 980px;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
  z-index: 3;
  background: #d9d9d9;
  box-shadow: 0 16px 34px rgba(5, 11, 38, 0.16);
}

.ps-photo-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.ps-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 220ms ease;
}

.ps-photo-slide.is-active {
  opacity: 1;
}

.ps-photo-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #050b26;
  box-shadow: 0 8px 18px rgba(5, 11, 38, 0.2);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 4;
  transition: transform 140ms ease, background 140ms ease;
}

.ps-photo-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.ps-photo-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.ps-photo-arrow-prev {
  left: 16px;
}

.ps-photo-arrow-next {
  right: 16px;
}

.ps-photo-arrow span {
  font: 700 22px/1 "Outfit", sans-serif;
}

/* Vector decorativo — equivalente al pk-vector-bottom de estacionamiento, recoloreado al banner de pólizas */
.ps-steps-bg {
  left: -149px;
  top: 902px;
  width: 2133px;
  height: 1429px;
  z-index: 2;
  pointer-events: none;
}

.ps-steps-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ps-pill {
  left: 151px;
  top: 1690px;
  border: 1.418px solid #c3c7da;
  border-radius: 31.896px;
  padding: 17.72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: #ffffff;
}

.ps-pill span {
  font: 400 20px/35.619px "Outfit", sans-serif;
  color: #050b26;
  text-align: center;
  letter-spacing: -0.08px;
}

.ps-steps-title {
  position: absolute;
  left: 151px;
  top: 1820px;
  width: 468px;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.45px;
  z-index: 3;
}

.ps-steps-list {
  left: 129px;
  top: 1980px;
  width: 412px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ps-step-item {
  font: 500 17px/1.3 "Outfit", sans-serif;
  color: #050b26;
  padding: 14px 18px 16px;
  margin: 0 0 10px 0;
  cursor: pointer;
  transition:
    background 320ms cubic-bezier(0.22, 1, 0.36, 1),
    color 320ms ease,
    border-color 320ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
  position: relative;
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 14px;
  background: #ffffff;
  user-select: none;
  overflow: hidden;
}

.ps-step-item:hover {
  border-color: rgba(255, 0, 96, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 11, 38, 0.07);
  color: #ff0060;
}

.ps-step-item.ps-step-active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 0, 96, 0.28);
  font-weight: 600;
  transform: translateY(0);
}

.ps-step-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 0 14px 14px;
}

.ps-step-item.ps-step-active::after {
  animation: pkStepProgress var(--step-duration, 7s) linear forwards;
}

/* Left indicator bar — eliminada (se mantiene solo la barra de progreso ::after) */
.ps-step-item::before,
.ps-step-item.ps-step-active::before {
  content: none;
  display: none;
}

.ps-slider {
  left: 663px;
  top: 1820px;
  width: 650px;
  height: 640px;
  z-index: 3;
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
}

.ps-slider .ps-step-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 40px;
  border: 1px solid rgba(166, 166, 166, 0.4);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.ps-slider .ps-step-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.ps-slider .ps-step-card.is-leaving {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  z-index: 1;
}

.ps-step-card-text {
  font: 400 20px/normal "Outfit", sans-serif;
  color: #050b26;
  width: 491px;
  margin: 0;
}

.ps-step-card-img {
  width: 100%;
  height: 480px;
  border-radius: 29px;
  overflow: hidden;
  flex-shrink: 0;
}

.ps-step-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-steps-list .ps-step-item {
  opacity: 0;
}

.ps-steps-list.is-in .ps-step-item {
  animation: pkStepMenuIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ps-steps-list.is-in .ps-step-item:nth-child(1) { animation-delay: 0.05s; }
.ps-steps-list.is-in .ps-step-item:nth-child(2) { animation-delay: 0.12s; }
.ps-steps-list.is-in .ps-step-item:nth-child(3) { animation-delay: 0.19s; }

.ps-slider {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.ps-slider.is-in {
  animation: pkSliderIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.ps-management-section {
  left: 240px;
  top: 2590px;
  width: 950px;
  height: 730px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.ps-management-section.is-in {
  opacity: 1;
  transform: translateY(0);
}

.ps-management-title {
  margin: 10px auto 35px;
  width: 680px;
  text-align: center;
  font: 600 32px / normal "Outfit", sans-serif;
  color: #050b26;
}

.ps-management-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  flex: 1;
}

.ps-management-card {
  background: #ffffff;
  border: 1px solid rgba(214, 219, 237, 0.75);
  border-radius: 22px;
  padding: 24px 24px;
  box-shadow: 0 8px 18px rgba(5, 11, 38, 0.06);
  min-height: 286px;
}

.ps-management-card-media {
  padding: 0;
  overflow: hidden;
}

.ps-management-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ps-management-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ps-management-card-title {
  margin: 0;
  font: 600 25px / 1.05 "Outfit", sans-serif;
  color: #050b26;
}

.ps-management-card-desc {
  margin: 14px 0 0;
  font: 400 18px / 1.28 "Outfit", sans-serif;
  color: #1f2747;
}

.ps-alliance-text {
  position: absolute;
  left: 50%;
  top: 3530px;
  transform: translateX(-50%) translateY(20px);
  width: 720px;
  text-align: center;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ps-alliance-text.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Línea decorativa magenta encima del bloque */
.ps-alliance-accent {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5230a6 0%, #1f3fbb 100%);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.ps-alliance-lead {
  margin: 0;
  font: 300 34px / 1.25 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.4px;
  max-width: 820px;
}

.ps-alliance-lead strong {
  font-weight: 700;
  background: linear-gradient(90deg, #5330a6 0%, #1f3fbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* "desde una sola plataforma" — continuación inline en el mismo párrafo lead */
.ps-alliance-tail {
  display: inline;
  font-weight: 300;
  color: #050b26;
  letter-spacing: -0.4px;
}

/* Disclaimer regulatorio SUDEASEG */
.ps-alliance-quote {
  margin: 0;
  font: 400 16px / 1.4 "Outfit", sans-serif;
  color: #9aa1b3;
  letter-spacing: -0.2px;
}

.polizas-seguro-page .footer {
  left: -4px;
  top: 3880px;
}

.recaudacion-servicios-page {
  height: 4210px;
  background: #ffffff;
}

.recaudacion-servicios-page .ps-hero-title {
  width: 1120px;
  font: 700 62px / 64px "Outfit", sans-serif;
}

.recaudacion-servicios-page .ps-modern-title {
  width: 1040px;
}

.recaudacion-servicios-page .ps-modern-desc {
  width: 980px;
}

.recaudacion-servicios-page .footer {
  left: -4px;
  top: 3880px;
}

.boton-link-pago-page {
  height: 4210px;
  background: #ffffff;
}

.boton-link-pago-page .ps-hero-title {
  width: 1120px;
  font: 700 60px / 62px "Outfit", sans-serif;
}

.boton-link-pago-page .ps-modern-title {
  width: 1080px;
}

.boton-link-pago-page .ps-modern-desc {
  width: 980px;
}

.boton-link-pago-page .ps-management-title {
  width: 860px;
}

.boton-link-pago-page .blp-management-grid .ps-management-card {
  min-height: 320px;
}

.boton-link-pago-page .blp-benefits-list {
  margin: 14px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font: 400 20px/1.32 "Outfit", sans-serif;
  color: #1f2747;
}

.boton-link-pago-page .blp-benefits-list li {
  margin: 0;
}

.boton-link-pago-page .footer {
  left: -4px;
  top: 3880px;
}

.software-dev-page {
  height: 3660px;
  background: #ffffff;
}

.software-dev-page .pk-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  background: linear-gradient(145deg, #040a28 0%, #1f3fbb 55%, #ff0060 100%);
}

.software-dev-page .pk-hero-subtitle {
  top: 146px;
  width: 1080px;
  font: 400 28px/1.3 "Outfit", sans-serif;
}

.software-dev-page .pk-hero-title {
  top: 252px;
  width: 1120px;
  font: 700 58px/1.05 "Outfit", sans-serif;
}

.software-dev-page .pk-description {
  top: 980px;
  width: 1080px;
  font: 400 30px/1.25 "Outfit", sans-serif;
}

.software-dev-page .ds-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.software-dev-page .ds-intro-title {
  font-weight: 700;
}

.software-dev-page .pk-pill {
  top: 1430px;
}

.software-dev-page .pk-steps-title {
  top: 1518px;
  width: 500px;
}

.software-dev-page .pk-steps-list {
  top: 1786px;
}

.software-dev-page .pk-slider {
  top: 1505px;
}

.software-dev-page .pk-step-card-text {
  width: 560px;
}

.software-dev-page .footer {
  left: -4px;
  top: 3330px;
}

.boleteria-page {
  height: 3660px;
  background: #ffffff;
}

.boleteria-page .pk-hero-bg {
  left: 0;
  top: 0;
  width: 1440px;
  height: 780px;
  background: linear-gradient(145deg, #040a28 0%, #1f3fbb 55%, #ff0060 100%);
}

.boleteria-page .pk-hero-subtitle {
  top: 156px;
  width: 1080px;
  font: 400 30px/1.25 "Outfit", sans-serif;
}

.boleteria-page .pk-hero-title {
  top: 258px;
  width: 1120px;
  font: 700 56px/1.08 "Outfit", sans-serif;
}

.boleteria-page .pk-description {
  top: 980px;
  width: 1080px;
  font: 400 30px/1.25 "Outfit", sans-serif;
}

.boleteria-page .bo-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.boleteria-page .bo-intro-title {
  font-weight: 700;
}

.boleteria-page .pk-pill {
  top: 1430px;
}

.boleteria-page .pk-steps-title {
  top: 1518px;
  width: 500px;
}

.boleteria-page .pk-steps-list {
  top: 1786px;
}

.boleteria-page .pk-slider {
  top: 1505px;
}

.boleteria-page .pk-step-card-text {
  width: 560px;
}

.boleteria-page .pk-steps-list.is-in .pk-step-item:nth-child(3),
.boleteria-page .pk-steps-list.is-in .pk-step-item:nth-child(4) {
  animation: none;
}

.boleteria-page .footer {
  left: -4px;
  top: 3330px;
}

/* ═══════════════════════════════════════════════════
   PREGUNTAS FRECUENTES (faq-)
   ═══════════════════════════════════════════════════ */

.faq-body {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
  min-height: 0; /* anula el min-height de las landings (6889px) */
}

.faq-page {
  width: 100%;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
}

/* Footer: en FAQ NO usa position: absolute como en las landings (.main-frame).
   Se renderiza como bloque al final del flujo. Extra padding-bottom para que la
   nav flotante quede sobre el fondo navy del footer (sin tapar contenido). */
.faq-page .footer {
  position: relative;
  left: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding-bottom: 110px;
  box-sizing: border-box;
}

/* ── Hero (full-width) ── */
.faq-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 90px;
  box-sizing: border-box;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  background: url(./assets/global/fondo.jpg) center / cover no-repeat;
  z-index: 0;
}

.faq-hero-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 480px 240px at 18% 90%, rgba(255, 255, 255, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 280px at 82% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}

.faq-hero-subtitle {
  margin: 0 0 12px;
  font: 400 28px/1.2 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.faq-hero-title {
  margin: 0 0 22px;
  font: 700 70px/1 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.faq-hero-title .faq-accent {
  color: #ffffff;
}

.faq-hero-desc {
  margin: 0 auto;
  max-width: 820px;
  font: 400 20px/1.45 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Floating bottom nav (sigue al usuario) ── */
.faq-nav-floating {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  max-width: calc(100vw - 40px);
  overflow-x: auto;
  background: rgba(5, 11, 38, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 20px 48px rgba(5, 11, 38, 0.35);
  scrollbar-width: none;
}

.faq-nav-floating::-webkit-scrollbar { display: none; }

.faq-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font: 500 14px/1 "Outfit", sans-serif;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.faq-nav-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.faq-nav-btn.is-active {
  background: linear-gradient(90deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 0, 96, 0.35);
}

.faq-nav-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.faq-nav-label {
  font-weight: 500;
}

/* ── Section ── */
.faq-section {
  width: 100%;
  padding: 80px 24px 24px;
  scroll-margin-top: 80px;
  box-sizing: border-box;
}

.faq-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section-ico {
  width: 22px;
  height: 22px;
  color: currentColor;
  flex-shrink: 0;
}

.faq-section-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1.4px solid #c3c7da;
  border-radius: 32px;
  background: #ffffff;
  color: #050b26;
  font: 400 18px/1 "Outfit", sans-serif;
  letter-spacing: -0.04px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.faq-section-pill.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Subheader dentro de una sección (sub-grupos en Wallet & Pagos, Mi Cuenta) */
.faq-subgroup {
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 3px solid #ff0060;
  font: 600 22px/1.2 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.2px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-subgroup:first-of-type {
  margin-top: 20px;
}

.faq-subgroup.is-in {
  opacity: 1;
  transform: translateY(0);
}

.faq-section-pill span {
  font-size: 20px;
  line-height: 1;
}

.faq-section-title {
  margin: 0 0 36px;
  width: 100%;
  font: 600 40px/1.1 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.08s, transform 0.7s ease 0.08s;
}

.faq-section-title.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── FAQ list (accordion) ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(225deg, #ffffff 0%, #eaedf8 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(5, 11, 38, 0.05);
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item:hover {
  border-color: rgba(255, 0, 96, 0.35);
  box-shadow: 0 10px 24px rgba(5, 11, 38, 0.08);
}

.faq-item[open] {
  border-color: rgba(255, 0, 96, 0.6);
  box-shadow: 0 12px 28px rgba(255, 0, 96, 0.08);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 24px 70px 24px 28px;
  position: relative;
  font: 500 20px/1.35 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.1px;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, #ff0060 0%, #99003a 100%) padding-box,
    linear-gradient(90deg, #ff0060 0%, #99003a 100%) border-box;
  transform: translateY(-50%);
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  background:
    /* Horizontal bar */
    linear-gradient(#ffffff, #ffffff) center / 12px 2px no-repeat,
    /* Vertical bar */
    linear-gradient(#ffffff, #ffffff) center / 2px 12px no-repeat;
  z-index: 1;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open] .faq-question::before {
  transform: translateY(-50%) rotate(45deg);
  background:
    linear-gradient(#ffffff, #ffffff) center / 12px 2px no-repeat;
}

.faq-answer {
  padding: 0 28px 26px;
  font: 400 17px/1.55 "Outfit", sans-serif;
  color: #3a4166;
  letter-spacing: -0.05px;
  animation: faqFadeIn 0.35s ease;
}

.faq-answer-list {
  margin: 0;
  padding-left: 22px;
}

.faq-answer-list li {
  margin-bottom: 6px;
}

@keyframes faqFadeIn {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Contact CTA ── */
.faq-cta-wrap {
  width: 100%;
  padding: 80px 24px 100px;
  box-sizing: border-box;
}

.faq-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 0%, rgba(18, 48, 132, 1) 13%, rgba(5, 11, 38, 1) 100%);
  text-align: center;
  color: #ffffff;
}

.faq-cta-title {
  margin: 0 0 12px;
  font: 600 36px/1.15 "Outfit", sans-serif;
  letter-spacing: -0.4px;
}

.faq-cta-desc {
  margin: 0 0 28px;
  font: 400 20px/1.35 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.82);
}

.faq-cta-btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  text-decoration: none;
  font: 600 18px/1 "Outfit", sans-serif;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 28px rgba(255, 0, 96, 0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(255, 0, 96, 0.36);
}

/* ═══════════════════════════════════════════════════
   CONTÁCTANOS (contact-)
   Estética alineada con FAQ + tarjetas tipo app.
   ═══════════════════════════════════════════════════ */

.contact-body {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
  min-height: 0; /* anula el min-height de las landings (6889px) */
}

.contact-page {
  width: 100%;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  background: #ffffff;
}

/* Footer en flow (igual que FAQ) */
.contact-page .footer {
  position: relative;
  left: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
}

/* ── Hero ── */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 90px;
  box-sizing: border-box;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background: url(./assets/global/fondo.jpg) center / cover no-repeat;
  z-index: 0;
}

.contact-hero-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 480px 240px at 18% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 600px 280px at 82% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}

.contact-hero-subtitle {
  margin: 0 0 12px;
  font: 400 26px/1.2 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.contact-hero-title {
  margin: 0 0 22px;
  font: 700 70px/1 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.contact-hero-desc {
  margin: 0 auto;
  max-width: 760px;
  font: 400 20px/1.45 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

/* ── Grid container ── */
.contact-wrap {
  width: 100%;
  padding: 180px 24px 220px;
  box-sizing: border-box;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* ── Card ── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 28px;
  background: linear-gradient(225deg, #ffffff 0%, #eaedf8 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(5, 11, 38, 0.05);
  color: #050b26;
  text-decoration: none;
  text-align: left;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  opacity: 0;
  transform: translateY(20px);
}

.contact-card.is-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-card:hover {
  border-color: rgba(255, 0, 96, 0.4);
  box-shadow: 0 14px 32px rgba(5, 11, 38, 0.1);
  transform: translateY(-3px);
}

.contact-card:focus-visible {
  outline: 2px solid #ff0060;
  outline-offset: 2px;
}

.contact-card-ico-wrap {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(194, 201, 232, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050b26;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.contact-card:hover .contact-card-ico-wrap {
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  color: #ffffff;
}

.contact-card-ico {
  width: 28px;
  height: 28px;
  color: currentColor;
}

.contact-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact-card-label {
  font: 600 22px/1.2 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.2px;
}

.contact-card-sub {
  font: 400 15px/1.35 "Outfit", sans-serif;
  color: #5d647f;
}

.contact-card-arrow {
  flex: 0 0 auto;
  font: 400 26px/1 "Outfit", sans-serif;
  color: #050b26;
  opacity: 0.45;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, color 220ms ease;
}

.contact-card:hover .contact-card-arrow {
  color: #ff0060;
  opacity: 1;
  transform: translateX(6px);
}

/* ── Bottom note ── */
.contact-bottom-note {
  max-width: 1100px;
  margin: 36px auto 0;
  text-align: center;
  font: 400 17px/1.4 "Outfit", sans-serif;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-bottom-note.is-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-bottom-note a {
  color: #1f3fbb;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
}

.contact-bottom-note a:hover {
  color: #ff0060;
}

/* ═══ Modal: Llamar a soporte ═══ */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal-panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 36px 28px;
  box-shadow: 0 30px 60px rgba(5, 11, 38, 0.3);
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(5, 11, 38, 0.06);
  color: #050b26;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}

.contact-modal-close:hover {
  background: #ff0060;
  color: #ffffff;
}

.contact-modal-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 0, 96, 0.08);
  color: #ff0060;
  font: 500 14px/1 "Outfit", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.contact-modal-pill .contact-card-ico {
  width: 18px;
  height: 18px;
}

.contact-modal-title {
  margin: 0 0 26px;
  font: 600 22px/1.3 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.2px;
}

.contact-modal-numbers {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-modal-numbers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(225deg, #ffffff 0%, #eaedf8 100%);
  border: 1px solid rgba(194, 201, 232, 0.75);
  color: #050b26;
  text-decoration: none;
  font: 600 22px/1 "Outfit", sans-serif;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.contact-modal-numbers a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 96, 0.45);
  color: #ff0060;
  box-shadow: 0 10px 22px rgba(5, 11, 38, 0.08);
}

.contact-modal-num-ico {
  width: 22px;
  height: 22px;
  color: currentColor;
}

.contact-modal-footer {
  margin: 0;
  font: 400 15px/1.4 "Outfit", sans-serif;
}

.contact-modal-footer a {
  color: #1f3fbb;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
}

.contact-modal-footer a:hover {
  color: #ff0060;
}

/* ═══════════════════════════════════════════════════
   TÉRMINOS Y CONDICIONES (terms-)
   ═══════════════════════════════════════════════════ */

.terms-body {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
  min-height: 0;
}

.terms-page {
  width: 100%;
  margin: 0;
  position: relative;
  /* No overflow aquí: rompe el position:sticky del TOC.
     El overflow-x: hidden está en body para evitar scroll horizontal. */
  background: #ffffff;
}

/* Footer en flow */
.terms-page .footer {
  position: relative;
  left: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
}

/* ── Hero ── */
.terms-hero {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 90px;
  box-sizing: border-box;
}

.terms-hero-bg {
  position: absolute;
  inset: 0;
  background: url(./assets/global/fondo.jpg) center / cover no-repeat;
  z-index: 0;
}

.terms-hero-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 480px 240px at 18% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 600px 280px at 82% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.terms-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}

.terms-hero-subtitle {
  margin: 0 0 12px;
  font: 400 26px/1.2 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.terms-hero-title {
  margin: 0 0 22px;
  font: 700 64px/1.05 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.terms-hero-desc {
  margin: 0 auto 18px;
  max-width: 760px;
  font: 400 20px/1.45 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.terms-hero-updated {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font: 500 14px/1 "Outfit", sans-serif;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Layout: TOC + Content ── */
.terms-wrap {
  width: 100%;
  padding: 64px 24px 100px;
  box-sizing: border-box;
}

.terms-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── TOC (sticky — sigue al usuario al hacer scroll) ── */
.terms-toc {
  position: sticky;
  top: 90px; /* deja espacio para el header */
  align-self: start;
  padding: 26px 22px;
  background: linear-gradient(225deg, #ffffff 0%, #eaedf8 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(5, 11, 38, 0.06);
  max-height: calc(100vh - 110px); /* nunca más alto que el viewport */
  overflow-y: auto;              /* scroll interno si la lista es muy larga */
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 11, 38, 0.2) transparent;
}

.terms-toc::-webkit-scrollbar {
  width: 6px;
}

.terms-toc::-webkit-scrollbar-track {
  background: transparent;
}

.terms-toc::-webkit-scrollbar-thumb {
  background: rgba(5, 11, 38, 0.2);
  border-radius: 999px;
}

.terms-toc-label {
  margin: 0 0 14px;
  font: 600 13px/1 "Outfit", sans-serif;
  color: #5d647f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.terms-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.terms-toc-link {
  display: block;
  padding: 9px 14px;
  border-radius: 10px;
  color: #3a4166;
  font: 500 14px/1.35 "Outfit", sans-serif;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, padding-left 200ms ease;
}

.terms-toc-link:hover {
  background: rgba(255, 0, 96, 0.08);
  color: #ff0060;
  padding-left: 18px;
}

.terms-toc-link.is-active {
  background: linear-gradient(90deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 0, 96, 0.25);
}

.terms-toc-link.is-active:hover {
  color: #ffffff;
}

/* ── Content ── */
.terms-content {
  min-width: 0;
}

.terms-section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.terms-section:last-of-type {
  margin-bottom: 30px;
}

.terms-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  font: 600 30px/1.2 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.3px;
}

.terms-section-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 700 18px/1 "Outfit", sans-serif;
  box-shadow: 0 6px 16px rgba(255, 0, 96, 0.28);
}

.terms-subtitle {
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 3px solid #ff0060;
  font: 600 20px/1.3 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.2px;
}

.terms-content p {
  margin: 0 0 14px;
  font: 400 17px/1.65 "Outfit", sans-serif;
  color: #3a4166;
  letter-spacing: -0.05px;
}

.terms-content p strong {
  color: #050b26;
  font-weight: 600;
}

.terms-list,
.terms-sublist {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.terms-list > li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  font: 400 17px/1.65 "Outfit", sans-serif;
  color: #3a4166;
  letter-spacing: -0.05px;
}

.terms-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff0060;
  opacity: 0.85;
}

.terms-sublist {
  margin: 10px 0 0;
  padding-left: 18px;
}

.terms-sublist > li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
  font: 400 17px/1.6 "Outfit", sans-serif;
  color: #3a4166;
}

.terms-sublist > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: #c3c7da;
}

.terms-content strong {
  color: #050b26;
  font-weight: 600;
}

.terms-link-cta {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  text-decoration: none;
  font: 600 16px/1 "Outfit", sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(255, 0, 96, 0.24);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.terms-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 0, 96, 0.32);
}

.terms-footer-note {
  margin: 60px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(194, 201, 232, 0.55);
  text-align: center;
  font: 400 14px/1.4 "Outfit", sans-serif;
  color: #5d647f;
}

/* ═══════════════════════════════════════════════════
   DONDE ESTAMOS (locations-)
   Cobertura: estacionamientos + parquímetros.
   ═══════════════════════════════════════════════════ */

.locations-body {
  background: #ffffff;
  font-family: "Outfit", sans-serif;
  color: #050b26;
  margin: 0;
  min-height: 0;
}

.locations-page {
  width: 100%;
  margin: 0;
  position: relative;
  background: #ffffff;
}

.locations-page .footer {
  position: relative;
  left: 0;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
}

/* ── Hero ── */
.locations-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 24px 90px;
  box-sizing: border-box;
}

.locations-hero-bg {
  position: absolute;
  inset: 0;
  background: url(./assets/global/fondo.jpg) center / cover no-repeat;
  z-index: 0;
}

.locations-hero-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 480px 240px at 18% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 600px 280px at 82% 18%, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.locations-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
  color: #ffffff;
}

.locations-hero-subtitle {
  margin: 0 0 12px;
  font: 400 26px/1.2 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.locations-hero-title {
  margin: 0 0 22px;
  font: 700 70px/1 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.locations-hero-title .locations-accent {
  color: #ffffff;
}

.locations-hero-desc {
  margin: 0 auto 30px;
  max-width: 780px;
  font: 400 20px/1.45 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.92);
}

.locations-hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.locations-stats {
  display: inline-flex;
  align-items: stretch;
  gap: 28px;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.locations-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.locations-stat + .locations-stat::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.locations-stat-num {
  font: 700 38px/1 "Outfit", sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.locations-stat-label {
  margin-top: 4px;
  font: 400 13px/1 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Controles (Tabs + Búsqueda) ── */
/* Wrapper que centra el pill (sin sticky — queda fijo en su posición de flujo) */
.locations-controls {
  /* position: sticky; */
  top: 110px;
  z-index: 30;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  padding: 50px 24px;
  box-sizing: border-box;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pill flotante centrada — estilo paralelo al header navy, pero blanco translúcido */
.locations-controls-inner {
  width: max-content;
  max-width: calc(100% - 16px);
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(194, 201, 232, 0.55);
  border-radius: 999px;
  box-shadow:
    0 14px 38px rgba(4, 10, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  pointer-events: auto; /* re-habilita interacción en el pill */
  transition: box-shadow 280ms ease;
}

.locations-controls-inner:hover {
  box-shadow:
    0 18px 42px rgba(4, 10, 40, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.locations-tabs {
  display: inline-flex;
  padding: 5px;
  background: rgba(5, 11, 38, 0.06);
  border-radius: 999px;
  flex-shrink: 0;
}

.locations-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(5, 11, 38, 0.65);
  font: 500 17px/1 "Outfit", sans-serif;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 200ms ease;
  white-space: nowrap;
}

.locations-tab:hover {
  color: #050b26;
}

.locations-tab.is-active {
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 0, 96, 0.3);
}

.locations-tab-ico {
  width: 20px;
  height: 20px;
  color: currentColor;
}

.locations-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(5, 11, 38, 0.08);
  color: inherit;
  font: 600 14px/1 "Outfit", sans-serif;
}

.locations-tab.is-active .locations-tab-count {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.locations-search {
  flex: 1 1 auto;
  min-width: 280px;
  max-width: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

.locations-search-ico {
  position: absolute;
  left: 18px;
  width: 20px;
  height: 20px;
  color: rgba(5, 11, 38, 0.5);
  pointer-events: none;
}

.locations-search input {
  width: 100%;
  padding: 13px 44px 13px 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 11, 38, 0.05);
  color: #050b26;
  font: 400 16px/1 "Outfit", sans-serif;
  outline: none;
  transition: background 200ms ease, box-shadow 200ms ease;
  box-sizing: border-box;
}

.locations-search input::placeholder {
  color: rgba(5, 11, 38, 0.45);
}

.locations-search input:focus {
  background: rgba(5, 11, 38, 0.03);
  box-shadow: 0 0 0 3px rgba(255, 0, 96, 0.18);
}

.locations-search-clear {
  position: absolute;
  right: 12px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 11, 38, 0.12);
  color: #050b26;
  font: 500 18px/1 "Outfit", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
}

.locations-search-clear:hover {
  background: #ff0060;
  color: #ffffff;
}

/* ── Filtro por estado: dropdown custom con label + contador en la misma pill ── */
.locations-states {
  width: 100%;
  padding: 0 24px 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.locations-state-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
}

.locations-state-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 22px;
  border: 1.6px solid rgba(194, 201, 232, 0.75);
  border-radius: 999px;
  background: #ffffff;
  color: #050b26;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 180ms ease;
  min-width: 340px;
}

.locations-state-trigger:hover {
  border-color: rgba(255, 0, 96, 0.45);
}

.locations-state-dropdown.is-open .locations-state-trigger {
  border-color: #ff0060;
  box-shadow: 0 0 0 3px rgba(255, 0, 96, 0.18);
}

.locations-state-pill-label {
  font: 600 12px/1 "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.locations-state-pill-divider {
  width: 1px;
  height: 20px;
  background: rgba(5, 11, 38, 0.15);
}

.locations-state-pill-value {
  flex: 1 1 auto;
  font: 600 17px/1 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.1px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.locations-state-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 700 14px/1 "Outfit", sans-serif;
  box-shadow: 0 4px 10px rgba(255, 0, 96, 0.28);
}

.locations-state-pill-chevron {
  width: 20px;
  height: 20px;
  color: rgba(5, 11, 38, 0.55);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.locations-state-dropdown.is-open .locations-state-pill-chevron {
  transform: rotate(180deg);
  color: #ff0060;
}

/* Menu de opciones */
.locations-state-menu {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 340px;
  max-height: 380px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(194, 201, 232, 0.7);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(5, 11, 38, 0.18);
  z-index: 40;
  animation: locStateOpen 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes locStateOpen {
  0% { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.locations-state-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  font: 500 16px/1 "Outfit", sans-serif;
  color: #050b26;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.locations-state-option:hover {
  background: rgba(255, 0, 96, 0.08);
  color: #ff0060;
}

.locations-state-option:focus-visible {
  outline: 2px solid rgba(255, 0, 96, 0.5);
  outline-offset: -2px;
}

.locations-state-option.is-active {
  background: linear-gradient(135deg, #050b26 0%, #1f3fbb 100%);
  color: #ffffff;
}

.locations-state-option-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(5, 11, 38, 0.06);
  color: inherit;
  font: 600 13px/1 "Outfit", sans-serif;
}

.locations-state-option.is-active .locations-state-option-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* ── Lista ── */
.locations-list-wrap {
  width: 100%;
  padding: 30px 24px 100px;
  box-sizing: border-box;
}

.locations-list-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.locations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.locations-list.is-active {
  display: grid;
}

.loc-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(225deg, #ffffff 0%, #eaedf8 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(5, 11, 38, 0.04);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.loc-card:hover {
  border-color: rgba(255, 0, 96, 0.4);
  box-shadow: 0 10px 22px rgba(5, 11, 38, 0.08);
  transform: translateY(-2px);
}

.loc-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(194, 201, 232, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050b26;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.loc-card:hover .loc-icon {
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  border-color: transparent;
  color: #ffffff;
}

.loc-icon svg {
  width: 26px;
  height: 26px;
  color: currentColor;
}

.loc-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.loc-name {
  font: 600 19px/1.25 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loc-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 400 15px/1.3 "Outfit", sans-serif;
  color: #5d647f;
}

.loc-pin {
  width: 16px;
  height: 16px;
  color: rgba(5, 11, 38, 0.5);
  flex-shrink: 0;
}

.loc-arrow {
  flex: 0 0 auto;
  font: 400 26px/1 "Outfit", sans-serif;
  color: rgba(5, 11, 38, 0.35);
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.loc-arrow-link:hover,
.loc-card:hover .loc-arrow {
  color: #ff0060;
  transform: translateX(4px);
}

/* Empty state */
.locations-empty {
  text-align: center;
  padding: 60px 24px;
  color: #5d647f;
}

.locations-empty-ico {
  width: 56px;
  height: 56px;
  color: rgba(5, 11, 38, 0.25);
  margin-bottom: 14px;
}

.locations-empty h3 {
  margin: 0 0 8px;
  font: 600 22px/1.3 "Outfit", sans-serif;
  color: #050b26;
}

.locations-empty p {
  margin: 0;
  font: 400 16px/1.4 "Outfit", sans-serif;
  color: #5d647f;
}

/* ── CTA ── */
.locations-cta-wrap {
  width: 100%;
  padding: 0 24px 100px;
  box-sizing: border-box;
}

.locations-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 64px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 0%, rgba(18, 48, 132, 1) 13%, rgba(5, 11, 38, 1) 100%);
  text-align: center;
  color: #ffffff;
}

.locations-cta-title {
  margin: 0 0 12px;
  font: 600 34px/1.2 "Outfit", sans-serif;
  letter-spacing: -0.4px;
}

.locations-cta-desc {
  margin: 0 auto 28px;
  max-width: 640px;
  font: 400 18px/1.45 "Outfit", sans-serif;
  color: rgba(255, 255, 255, 0.85);
}

.locations-cta-btns {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.locations-cta-btns img {
  height: 50px;
  width: auto;
  display: block;
  transition: transform 200ms ease;
}

.locations-cta-btns a:hover img {
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════
   FOOTER — enlaces en dos columnas (Legal + Ayuda)
   Clases nuevas; no alteran el resto del footer.
   ═══════════════════════════════════════════════════ */
.footer-links--cols {
  display: flex;
  gap: 64px;
  align-items: start;
}

.footer-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.footer-col-title {
  margin: 0 0 4px;
  font: 600 13px/1 "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7a82a6;
}

/* ═══════════════════════════════════════════════════
   ELIMINAR CUENTA — flujo de pasos con capturas (dac-)
   ═══════════════════════════════════════════════════ */
.terms-content .dac-intro {
  margin: 0 0 8px;
  text-align: left;
}

.dac-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 34px 0 12px;
}

.dac-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px 28px;
  background: linear-gradient(225deg, #ffffff 0%, #eef1fb 100%);
  border: 1px solid rgba(194, 201, 232, 0.65);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(5, 11, 38, 0.06);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.dac-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(5, 11, 38, 0.13);
}

.dac-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff0060 0%, #ff447f 100%);
  color: #ffffff;
  font: 700 18px/1 "Outfit", sans-serif;
  box-shadow: 0 6px 16px rgba(255, 0, 96, 0.28);
  margin-bottom: 20px;
}

.dac-shot {
  width: 100%;
  max-width: 232px;
  border-radius: 30px;
  border: 7px solid #0d1430;
  background: #0d1430;
  box-shadow: 0 16px 34px rgba(5, 11, 38, 0.22);
  overflow: hidden;
  margin-bottom: 22px;
  line-height: 0;
}

.dac-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 23px;
}

.dac-step-title {
  margin: 0 0 8px;
  font: 600 19px/1.3 "Outfit", sans-serif;
  color: #050b26;
  letter-spacing: -0.2px;
}

.dac-step-text {
  margin: 0;
  font: 400 15px/1.55 "Outfit", sans-serif;
  color: #3a4166;
}

