/* =========================================================
   COTAXOMIL - STYLES.CSS
   DISEÑO 2026
========================================================= */

:root {
  --em-50: #faf7fd;
  --em-100: #f3ecfb;
  --em-200: #e9ddf7;
  --em-300: #d8c2f0;
  --em-400: #bf9be5;
  --em-500: #a675d7;
  --em-600: #8f57c6;
  --em-700: #7a44ac;
  --em-800: #673b8e;
  --em-900: #583377;
  --em-950: #381952;

  --text: #201329;
  --muted: #786889;
  --white: #ffffff;

  --border: rgba(166, 117, 215, 0.2);

  --gold: #d4af37;
  --gold-light: #f4e4c1;

  --shadow-sm:
    0 10px 30px rgba(56, 25, 82, 0.08);

  --shadow-md:
    0 20px 50px rgba(56, 25, 82, 0.12);

  --shadow-lg:
    0 30px 70px rgba(56, 25, 82, 0.18);

  --shadow-xl:
    0 50px 100px rgba(56, 25, 82, 0.25);

  --transition:
    0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  font-family: "Inter", sans-serif;

  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(216, 194, 240, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(166, 117, 215, 0.12),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--em-50),
      #ffffff
    );
}

img,
svg,
video {
  max-width: 100%;
}

a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}


/* =========================================================
   CURSOR PERSONALIZADO
   SOLO COMPUTADORAS CON MOUSE
========================================================= */

.cursor-dot,
.cursor-ring {
  display: none;
}

@media (pointer: fine) {

  html,
  body,
  a,
  button {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: block;

    position: fixed;

    pointer-events: none;

    z-index: 999999;

    border-radius: 50%;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;

    background:
      var(--em-700);

    transform:
      translate(-50%, -50%);
  }

  .cursor-ring {
    width: 40px;
    height: 40px;

    border:
      2px solid var(--em-500);

    transform:
      translate(-50%, -50%);

    transition:
      width 0.3s ease,
      height 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease;
  }

  .cursor-ring.hover {
    width: 60px;
    height: 60px;

    border-color:
      var(--gold);

    background:
      rgba(212, 175, 55, 0.1);
  }

}


/* =========================================================
   PRELOADER DE VIDEO FULLSCREEN
========================================================= */

body.preloader-active {
  overflow: hidden !important;
  height: 100vh;
  height: 100dvh;
}


/* CONTENEDOR */

.video-preloader {
  position: fixed;

  inset: 0;

  width: 100vw;
  height: 100vh;
  height: 100dvh;

  z-index: 1000000;

  overflow: hidden;

  background: #000000;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}


/* OCULTAR */

.video-preloader.hidden {
  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}


/* VIDEO */

.preloader-video {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  transform:
    translate(-50%, -50%);

  object-fit: cover;

  object-position: center center;

  background:
    #000000;

  user-select: none;

  -webkit-user-select: none;

  pointer-events: none;
}


/* CAPA SUTIL */

.video-preloader::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.18) 100%
    );

  z-index: 1;
}


/* =========================================================
   BOTÓN OMITIR
========================================================= */

.skip-preloader {
  position: absolute;

  right: 28px;
  bottom: 28px;

  z-index: 3;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 105px;

  min-height: 46px;

  padding:
    0 22px;

  border:
    1px solid rgba(255, 255, 255, 0.35);

  border-radius:
    999px;

  background:
    rgba(0, 0, 0, 0.35);

  color:
    #ffffff;

  font-family:
    "Inter",
    sans-serif;

  font-size:
    0.9rem;

  font-weight:
    700;

  letter-spacing:
    0.03em;

  cursor:
    pointer;

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.skip-preloader:hover {
  transform:
    translateY(-3px);

  background:
    rgba(255, 255, 255, 0.16);

  border-color:
    rgba(255, 255, 255, 0.65);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.skip-preloader:active {
  transform:
    translateY(0);
}

.skip-preloader:focus-visible {
  outline:
    2px solid white;

  outline-offset:
    4px;
}


/* =========================================================
   NOISE
========================================================= */

.noise {
  position: fixed;

  inset: 0;

  pointer-events: none;

  opacity: 0.03;

  z-index: 1;

  background-image:
    url(
      "data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E"
    );
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;

  width: 100%;

  top: 0;
  left: 0;

  z-index: 999;

  padding:
    20px 0;

  transition:
    all var(--transition);
}

.header.scrolled {
  padding:
    10px 0;

  background:
    rgba(255, 255, 255, 0.95);

  backdrop-filter:
    blur(30px);

  -webkit-backdrop-filter:
    blur(30px);

  box-shadow:
    0 10px 40px rgba(56, 25, 82, 0.1);
}


/* =========================================================
   NAVBAR
========================================================= */

.nav {
  width:
    min(
      1180px,
      calc(100% - 30px)
    );

  margin:
    auto;

  display:
    flex;

  justify-content:
    space-between;

  align-items:
    center;

  gap:
    20px;

  padding:
    15px 25px;

  border-radius:
    999px;

  background:
    rgba(255, 255, 255, 0.72);

  backdrop-filter:
    blur(30px);

  -webkit-backdrop-filter:
    blur(30px);

  border:
    1px solid var(--border);

  box-shadow:
    0 12px 35px rgba(56, 25, 82, 0.06);
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  display:
    flex;

  align-items:
    center;

  gap:
    14px;

  flex-shrink:
    0;

  text-decoration:
    none;
}

.brand-logo {
  width:
    50px;

  height:
    50px;

  flex-shrink:
    0;

  border-radius:
    15px;

  display:
    grid;

  place-items:
    center;

  background:
    linear-gradient(
      135deg,
      var(--em-800),
      var(--em-500)
    );

  color:
    white;

  font-weight:
    900;

  font-size:
    1.2rem;

  transition:
    all var(--transition);

  box-shadow:
    0 10px 25px rgba(122, 68, 172, 0.3);
}

.brand:hover .brand-logo {
  transform:
    rotate(-8deg)
    scale(1.08);

  box-shadow:
    0 15px 35px rgba(122, 68, 172, 0.4);
}

.brand-text strong {
  display:
    block;

  color:
    var(--em-950);

  letter-spacing:
    -0.02em;

  font-size:
    1.2rem;
}

.brand-text small {
  display:
    block;

  color:
    var(--muted);

  font-size:
    0.72rem;

  letter-spacing:
    0.04em;

  text-transform:
    uppercase;
}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-links {
  display:
    flex;

  align-items:
    center;

  gap:
    3px;
}

.nav-link {
  position:
    relative;

  padding:
    10px 12px;

  border-radius:
    999px;

  text-decoration:
    none;

  color:
    var(--em-900);

  font-weight:
    600;

  font-size:
    0.84rem;

  white-space:
    nowrap;

  transition:
    all var(--transition);
}

.nav-link::after {
  content:
    "";

  position:
    absolute;

  bottom:
    5px;

  left:
    50%;

  width:
    0;

  height:
    2px;

  transform:
    translateX(-50%);

  border-radius:
    999px;

  background:
    linear-gradient(
      90deg,
      var(--em-500),
      var(--gold)
    );

  transition:
    width 0.3s ease;
}

.nav-link:hover {
  background:
    var(--em-100);

  transform:
    translateY(-2px);
}

.nav-link:hover::after {
  width:
    60%;
}


/* =========================================================
   BOTÓN NAV PRINCIPAL
========================================================= */

.primary-nav {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    11px 15px;

  border-radius:
    999px;

  text-decoration:
    none;

  background:
    linear-gradient(
      135deg,
      var(--em-800),
      var(--em-600)
    );

  color:
    white;

  font-weight:
    700;

  font-size:
    0.82rem;

  white-space:
    nowrap;

  box-shadow:
    0 12px 25px rgba(122, 68, 172, 0.22);

  transition:
    all var(--transition);
}

.primary-nav:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 18px 35px rgba(122, 68, 172, 0.34);
}


/* =========================================================
   MENÚ MÓVIL
========================================================= */

.menu-btn {
  display:
    none;

  width:
    44px;

  height:
    44px;

  padding:
    0;

  flex-shrink:
    0;

  border:
    0;

  border-radius:
    14px;

  background:
    var(--em-100);

  cursor:
    pointer;

  z-index:
    1000;
}

.menu-btn span {
  display:
    block;

  width:
    24px;

  height:
    2px;

  margin:
    5px auto;

  border-radius:
    999px;

  background:
    var(--em-950);

  transition:
    all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform:
    translateY(7px)
    rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity:
    0;
}

.menu-btn.active span:nth-child(3) {
  transform:
    translateY(-7px)
    rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position:
    relative;

  width:
    min(
      1180px,
      calc(100% - 30px)
    );

  min-height:
    100vh;

  margin:
    auto;

  padding:
    145px 0 100px;

  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  align-items:
    center;

  gap:
    60px;
}


/* =========================================================
   HERO ORBS
========================================================= */

.hero-orb {
  position:
    absolute;

  border-radius:
    50%;

  filter:
    blur(80px);

  pointer-events:
    none;

  opacity:
    0.8;
}

.hero-orb-1 {
  width:
    400px;

  height:
    400px;

  top:
    10%;

  right:
    -100px;

  background:
    radial-gradient(
      circle,
      var(--em-300),
      transparent 70%
    );

  animation:
    orbFloat 10s infinite alternate ease-in-out;
}

.hero-orb-2 {
  width:
    300px;

  height:
    300px;

  bottom:
    20%;

  left:
    -50px;

  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.3),
      transparent 70%
    );

  animation:
    orbFloat 12s infinite alternate-reverse ease-in-out;
}

.hero-orb-3 {
  width:
    200px;

  height:
    200px;

  top:
    50%;

  left:
    40%;

  background:
    radial-gradient(
      circle,
      var(--em-500),
      transparent 70%
    );

  animation:
    orbFloat 8s infinite alternate ease-in-out;
}

@keyframes orbFloat {

  from {
    transform:
      translate(0, 0);
  }

  to {
    transform:
      translate(30px, -30px);
  }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  position:
    relative;

  z-index:
    3;
}

.hero-badge {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  padding:
    10px 18px;

  margin-bottom:
    25px;

  border:
    1px solid rgba(212, 175, 55, 0.65);

  border-radius:
    999px;

  background:
    rgba(255, 255, 255, 0.82);

  color:
    var(--em-800);

  font-size:
    0.9rem;

  font-weight:
    700;

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.15);
}

.badge-dot {
  width:
    10px;

  height:
    10px;

  border-radius:
    50%;

  background:
    var(--gold);

  animation:
    pulse 2s infinite;
}

@keyframes pulse {

  0% {
    box-shadow:
      0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow:
      0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(212, 175, 55, 0);
  }

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {
  max-width:
    700px;

  margin-bottom:
    25px;

  font-size:
    clamp(3rem, 6vw, 5.5rem);

  line-height:
    0.92;

  letter-spacing:
    -0.06em;

  color:
    var(--em-950);

  font-weight:
    900;
}

.gradient-text {
  background:
    linear-gradient(
      135deg,
      var(--em-700),
      var(--gold)
    );

  -webkit-background-clip:
    text;

  background-clip:
    text;

  color:
    transparent;
}

.hero-subtitle {
  max-width:
    540px;

  margin-bottom:
    30px;

  color:
    var(--muted);

  font-size:
    1.15rem;

  line-height:
    1.8;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
  display:
    flex;

  flex-wrap:
    wrap;

  gap:
    15px;

  margin-bottom:
    40px;
}

.luxury-btn {
  position:
    relative;

  overflow:
    hidden;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    10px;

  padding:
    16px 28px;

  border-radius:
    999px;

  text-decoration:
    none;

  background:
    linear-gradient(
      135deg,
      var(--em-800),
      var(--em-500)
    );

  color:
    white;

  font-weight:
    800;

  box-shadow:
    0 20px 40px rgba(122, 68, 172, 0.35);

  transition:
    all var(--transition);
}

.luxury-btn::before {
  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    -100%;

  width:
    100%;

  height:
    100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );

  transition:
    left 0.5s ease;
}

.luxury-btn:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 30px 60px rgba(122, 68, 172, 0.5);
}

.luxury-btn:hover::before {
  left:
    100%;
}

.glass-btn {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  padding:
    16px 28px;

  border:
    1px solid var(--border);

  border-radius:
    999px;

  background:
    rgba(255, 255, 255, 0.82);

  color:
    var(--em-900);

  text-decoration:
    none;

  font-weight:
    800;

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  transition:
    all var(--transition);
}

.glass-btn:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 20px 40px rgba(56, 25, 82, 0.15);

  border-color:
    var(--gold);
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
  display:
    flex;

  align-items:
    center;

  gap:
    20px;
}

.stat-card {
  text-align:
    center;
}

.stat-number {
  color:
    var(--em-800);

  font-size:
    2.5rem;

  font-weight:
    900;

  letter-spacing:
    -0.04em;
}

.stat-label {
  color:
    var(--muted);

  font-size:
    0.85rem;
}

.stat-divider {
  width:
    1px;

  height:
    40px;

  background:
    var(--border);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position:
    relative;

  z-index:
    2;
}

.hero-card-3d {
  position:
    relative;

  overflow:
    hidden;

  border-radius:
    30px;

  box-shadow:
    var(--shadow-xl);

  transform:
    perspective(1000px)
    rotateY(-5deg)
    rotateX(5deg);

  transition:
    all var(--transition);
}

.hero-card-3d:hover {
  transform:
    perspective(1000px)
    rotateY(0deg)
    rotateX(0deg);

  box-shadow:
    0 60px 120px rgba(56, 25, 82, 0.3);
}

.hero-card-shine {
  position:
    absolute;

  top:
    0;

  left:
    -100%;

  width:
    100%;

  height:
    100%;

  z-index:
    2;

  pointer-events:
    none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );

  animation:
    shine 4s infinite;
}

@keyframes shine {

  0% {
    left:
      -100%;
  }

  50% {
    left:
      100%;
  }

  100% {
    left:
      100%;
  }

}

.hero-card-3d img {
  display:
    block;

  width:
    100%;

  height:
    550px;

  object-fit:
    cover;
}

.hero-card-overlay {
  position:
    absolute;

  left:
    20px;

  right:
    20px;

  bottom:
    20px;

  z-index:
    3;

  padding:
    20px;

  border:
    1px solid rgba(255, 255, 255, 0.3);

  border-radius:
    20px;

  background:
    rgba(20, 8, 32, 0.38);

  color:
    white;

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);
}

.live-indicator {
  display:
    flex;

  align-items:
    center;

  gap:
    8px;

  margin-bottom:
    10px;
}

.live-dot {
  width:
    10px;

  height:
    10px;

  border-radius:
    50%;

  background:
    #1eff91;

  animation:
    livePulse 2s infinite;
}

@keyframes livePulse {

  0% {
    box-shadow:
      0 0 0 0 rgba(30, 255, 145, 0.5);
  }

  70% {
    box-shadow:
      0 0 0 10px rgba(30, 255, 145, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(30, 255, 145, 0);
  }

}

.hero-card-overlay h3 {
  margin-bottom:
    8px;

  font-size:
    1.5rem;

  letter-spacing:
    -0.03em;
}

.hero-card-overlay p {
  color:
    rgba(255, 255, 255, 0.82);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
  position:
    absolute;

  bottom:
    28px;

  left:
    50%;

  transform:
    translateX(-50%);

  text-align:
    center;
}

.scroll-line {
  width:
    2px;

  height:
    40px;

  margin:
    0 auto 10px;

  background:
    var(--em-300);

  animation:
    scrollLine 2s infinite;
}

@keyframes scrollLine {

  0% {
    height:
      0;

    opacity:
      1;
  }

  50% {
    height:
      40px;

    opacity:
      1;
  }

  100% {
    height:
      0;

    opacity:
      0;
  }

}

.scroll-indicator span {
  color:
    var(--muted);

  font-size:
    0.75rem;

  letter-spacing:
    0.1em;

  text-transform:
    uppercase;
}


/* =========================================================
   SECCIONES
========================================================= */

.section {
  position:
    relative;

  width:
    min(
      1180px,
      calc(100% - 30px)
    );

  margin:
    auto;

  padding:
    110px 0;
}

.section-bg {
  position:
    absolute;

  inset:
    0;

  pointer-events:
    none;

  background:
    radial-gradient(
      circle at center,
      rgba(166, 117, 215, 0.05),
      transparent 70%
    );
}

.section-header {
  position:
    relative;

  z-index:
    2;

  margin-bottom:
    55px;

  text-align:
    left;
}

.section-header.center {
  text-align:
    center;
}

.section-header.center .section-description {
  margin-left:
    auto;

  margin-right:
    auto;
}

.section-eyebrow {
  display:
    inline-block;

  padding:
    8px 16px;

  margin-bottom:
    20px;

  border:
    1px solid rgba(212, 175, 55, 0.55);

  border-radius:
    999px;

  background:
    linear-gradient(
      135deg,
      var(--em-100),
      rgba(212, 175, 55, 0.08)
    );

  color:
    var(--em-700);

  font-size:
    0.85rem;

  font-weight:
    700;

  letter-spacing:
    0.05em;

  text-transform:
    uppercase;
}

.section-title {
  margin-bottom:
    15px;

  font-size:
    clamp(2rem, 4vw, 3.5rem);

  line-height:
    1.1;

  letter-spacing:
    -0.045em;

  color:
    var(--em-950);
}

.section-description {
  max-width:
    650px;

  color:
    var(--muted);

  font-size:
    1.08rem;

  line-height:
    1.8;
}


/* =========================================================
   EMPRESA - CARDS
========================================================= */

.luxury-cards {
  display:
    grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    30px;

  margin-bottom:
    60px;
}

.luxury-card {
  position:
    relative;

  min-height:
    320px;

  overflow:
    hidden;

  padding:
    40px;

  border:
    1px solid var(--border);

  border-radius:
    30px;

  background:
    rgba(255, 255, 255, 0.82);

  box-shadow:
    var(--shadow-sm);

  transition:
    all var(--transition);
}

.luxury-card::before {
  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    0;

  right:
    0;

  height:
    3px;

  transform:
    scaleX(0);

  background:
    linear-gradient(
      90deg,
      var(--em-500),
      var(--gold)
    );

  transition:
    transform var(--transition);
}

.luxury-card:hover {
  transform:
    translateY(-15px);

  box-shadow:
    var(--shadow-xl);
}

.luxury-card:hover::before {
  transform:
    scaleX(1);
}

.card-number {
  position:
    absolute;

  top:
    20px;

  right:
    25px;

  color:
    rgba(166, 117, 215, 0.1);

  font-size:
    3rem;

  font-weight:
    900;

  letter-spacing:
    -0.05em;
}

.card-icon-wrapper {
  width:
    70px;

  height:
    70px;

  display:
    grid;

  place-items:
    center;

  margin-bottom:
    25px;

  border-radius:
    20px;

  background:
    linear-gradient(
      135deg,
      var(--em-700),
      var(--em-500)
    );

  box-shadow:
    0 20px 40px rgba(122, 68, 172, 0.25);
}

.card-icon {
  font-size:
    2rem;
}

.luxury-card h3 {
  margin-bottom:
    15px;

  color:
    var(--em-950);

  font-size:
    1.5rem;

  letter-spacing:
    -0.02em;
}

.luxury-card p {
  color:
    var(--muted);

  line-height:
    1.75;
}

.card-line {
  position:
    absolute;

  bottom:
    30px;

  left:
    40px;

  width:
    50px;

  height:
    3px;

  border-radius:
    999px;

  background:
    var(--gold);

  transition:
    width var(--transition);
}

.luxury-card:hover .card-line {
  width:
    100px;
}


/* =========================================================
   VISIÓN / MISIÓN
========================================================= */

.vision-mission-container {
  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  gap:
    30px;

  margin-bottom:
    70px;
}

.luxury-block {
  position:
    relative;

  overflow:
    hidden;

  padding:
    40px;

  border:
    1px solid var(--border);

  border-radius:
    30px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.95),
      rgba(243, 236, 251, 0.9)
    );

  box-shadow:
    var(--shadow-sm);

  transition:
    all var(--transition);
}

.luxury-block:hover {
  transform:
    translateY(-10px);

  box-shadow:
    var(--shadow-xl);
}

.block-badge {
  display:
    inline-block;

  padding:
    8px 16px;

  margin-bottom:
    20px;

  border-radius:
    999px;

  background:
    linear-gradient(
      135deg,
      var(--em-800),
      var(--em-600)
    );

  color:
    white;

  font-size:
    0.85rem;

  font-weight:
    800;

  letter-spacing:
    0.1em;
}

.luxury-block h3 {
  margin-bottom:
    15px;

  color:
    var(--em-950);

  font-size:
    1.8rem;

  letter-spacing:
    -0.03em;
}

.luxury-block p {
  margin-bottom:
    15px;

  color:
    var(--muted);

  line-height:
    1.8;
}

.block-decoration {
  position:
    absolute;

  right:
    -20px;

  bottom:
    -20px;

  width:
    130px;

  height:
    130px;

  pointer-events:
    none;

  border-radius:
    50%;

  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.12),
      transparent 70%
    );
}


/* =========================================================
   VALORES
========================================================= */

.values-container {
  text-align:
    center;
}

.values-title {
  margin-bottom:
    40px;

  color:
    var(--em-950);

  font-size:
    2rem;

  letter-spacing:
    -0.03em;
}

.values-grid {
  display:
    grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap:
    20px;
}

.luxury-value {
  position:
    relative;

  overflow:
    hidden;

  min-height:
    220px;

  padding:
    30px 20px;

  border:
    1px solid var(--border);

  border-radius:
    25px;

  background:
    rgba(255, 255, 255, 0.82);

  transition:
    all var(--transition);
}

.luxury-value::before {
  content:
    "";

  position:
    absolute;

  top:
    0;

  left:
    50%;

  width:
    0;

  height:
    3px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      var(--em-500),
      var(--gold)
    );

  transition:
    width var(--transition);
}

.luxury-value:hover {
  transform:
    translateY(-10px);

  background:
    linear-gradient(
      135deg,
      var(--em-950),
      var(--em-800)
    );

  box-shadow:
    var(--shadow-lg);
}

.luxury-value:hover::before {
  width:
    100%;
}

.value-number {
  display:
    block;

  margin-bottom:
    15px;

  color:
    var(--em-500);

  font-size:
    2.5rem;

  font-weight:
    900;

  letter-spacing:
    -0.05em;
}

.luxury-value:hover .value-number {
  color:
    var(--gold);
}

.value-name {
  display:
    block;

  margin-bottom:
    10px;

  color:
    var(--em-950);

  font-size:
    1.2rem;

  font-weight:
    700;
}

.luxury-value:hover .value-name {
  color:
    white;
}

.value-description {
  display:
    block;

  color:
    var(--muted);

  font-size:
    0.9rem;

  line-height:
    1.5;
}

.luxury-value:hover .value-description {
  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================================
   TARIFAS
========================================================= */

.fares-container {
  display:
    grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    30px;

  max-width:
    900px;

  margin:
    auto;
}

.luxury-fare {
  position:
    relative;

  overflow:
    hidden;

  padding:
    45px;

  border:
    1px solid var(--border);

  border-radius:
    35px;

  background:
    rgba(255, 255, 255, 0.84);

  text-align:
    center;

  box-shadow:
    var(--shadow-md);

  transition:
    all var(--transition);
}

.luxury-fare:hover {
  transform:
    translateY(-15px);

  box-shadow:
    var(--shadow-xl);
}

.luxury-fare.premium {
  border:
    1px solid rgba(212, 175, 55, 0.8);

  background:
    linear-gradient(
      135deg,
      var(--em-950),
      var(--em-800)
    );
}

.fare-glow {
  position:
    absolute;

  width:
    220px;

  height:
    220px;

  top:
    -110px;

  right:
    -110px;

  border-radius:
    50%;

  pointer-events:
    none;

  background:
    radial-gradient(
      circle,
      rgba(212, 175, 55, 0.3),
      transparent 70%
    );
}

.fare-label {
  position:
    relative;

  z-index:
    2;

  display:
    inline-block;

  padding:
    8px 16px;

  margin-bottom:
    25px;

  border-radius:
    999px;

  background:
    var(--em-100);

  color:
    var(--em-700);

  font-size:
    0.85rem;

  font-weight:
    800;
}

.luxury-fare.premium .fare-label {
  background:
    rgba(255, 255, 255, 0.15);

  color:
    var(--gold);
}

.luxury-fare h3 {
  position:
    relative;

  z-index:
    2;

  margin-bottom:
    20px;

  color:
    var(--em-950);

  font-size:
    1.5rem;
}

.luxury-fare.premium h3 {
  color:
    white;
}

.fare-price {
  position:
    relative;

  z-index:
    2;

  margin-bottom:
    20px;

  color:
    var(--em-700);

  font-size:
    4rem;

  font-weight:
    900;

  letter-spacing:
    -0.05em;

  text-shadow:
    0 10px 30px rgba(122, 68, 172, 0.2);
}

.luxury-fare.premium .fare-price {
  color:
    var(--gold);
}

.fare-price small {
  font-size:
    1.1rem;

  letter-spacing:
    0;
}

.luxury-fare p {
  position:
    relative;

  z-index:
    2;

  margin-bottom:
    25px;

  color:
    var(--muted);
}

.luxury-fare.premium p {
  color:
    rgba(255, 255, 255, 0.78);
}

.fare-features {
  position:
    relative;

  z-index:
    2;

  display:
    flex;

  flex-wrap:
    wrap;

  justify-content:
    center;

  gap:
    10px;
}

.fare-features span {
  padding:
    10px 15px;

  border-radius:
    15px;

  background:
    var(--em-100);

  color:
    var(--em-900);

  font-size:
    0.9rem;

  font-weight:
    700;
}

.luxury-fare.premium .fare-features span {
  background:
    rgba(255, 255, 255, 0.12);

  color:
    white;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-grid {
  display:
    grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap:
    25px;
}

.luxury-service {
  position:
    relative;

  overflow:
    hidden;

  min-height:
    280px;

  padding:
    35px;

  border:
    1px solid var(--border);

  border-radius:
    25px;

  background:
    rgba(255, 255, 255, 0.82);

  text-align:
    center;

  box-shadow:
    var(--shadow-sm);

  transition:
    all var(--transition);
}

.luxury-service:hover {
  transform:
    translateY(-15px)
    scale(1.02);

  background:
    linear-gradient(
      135deg,
      var(--em-950),
      var(--em-800)
    );

  box-shadow:
    var(--shadow-xl);
}

.service-number {
  margin-bottom:
    20px;

  color:
    rgba(166, 117, 215, 0.2);

  font-size:
    2.5rem;

  font-weight:
    900;

  letter-spacing:
    -0.05em;
}

.luxury-service:hover .service-number {
  color:
    rgba(212, 175, 55, 0.35);
}

.luxury-service h3 {
  margin-bottom:
    15px;

  color:
    var(--em-950);

  font-size:
    1.3rem;
}

.luxury-service:hover h3 {
  color:
    white;
}

.luxury-service p {
  margin-bottom:
    20px;

  color:
    var(--muted);

  font-size:
    0.95rem;
}

.luxury-service:hover p {
  color:
    rgba(255, 255, 255, 0.72);
}

.service-icon {
  display:
    block;

  font-size:
    2.5rem;
}


/* =========================================================
   APP SECTION
========================================================= */

.app-section {
  display:
    grid;

  grid-template-columns:
    1fr 1fr;

  align-items:
    center;

  gap:
    80px;
}

.app-bg {
  position:
    absolute;

  inset:
    0;

  pointer-events:
    none;

  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(166, 117, 215, 0.1),
      transparent 50%
    );
}

.phone-container,
.app-info {
  position:
    relative;

  z-index:
    2;
}


/* =========================================================
   PHONE
========================================================= */

.phone {
  position:
    relative;

  width:
    min(320px, 100%);

  height:
    620px;

  margin:
    auto;

  padding:
    15px;

  border-radius:
    50px;

  background:
    linear-gradient(
      160deg,
      var(--em-950),
      var(--em-800)
    );

  box-shadow:
    0 40px 80px rgba(56, 25, 82, 0.4);

  transition:
    all var(--transition);
}

.phone:hover {
  transform:
    translateY(-20px)
    rotate(-3deg);

  box-shadow:
    0 60px 120px rgba(56, 25, 82, 0.5);
}

.phone-notch {
  position:
    absolute;

  top:
    15px;

  left:
    50%;

  width:
    120px;

  height:
    25px;

  z-index:
    2;

  transform:
    translateX(-50%);

  border-radius:
    0 0 15px 15px;

  background:
    var(--em-950);
}

.phone-screen {
  position:
    relative;

  height:
    100%;

  overflow:
    hidden;

  border-radius:
    40px;

  background:
    linear-gradient(
      135deg,
      var(--em-50),
      var(--em-300)
    );
}


/* =========================================================
   MAPA MOCKUP
========================================================= */

.map-grid {
  position:
    relative;

  height:
    70%;

  background-image:
    linear-gradient(
      90deg,
      rgba(88, 51, 119, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(88, 51, 119, 0.08) 1px,
      transparent 1px
    );

  background-size:
    40px 40px;

  animation:
    moveGrid 20s linear infinite;
}

@keyframes moveGrid {

  from {
    background-position:
      0 0;
  }

  to {
    background-position:
      400px 400px;
  }

}

.bus,
.pin {
  position:
    absolute;

  font-size:
    2rem;
}

.bus1 {
  top:
    25%;

  left:
    20%;

  animation:
    moveBus 5s infinite alternate ease-in-out;
}

.bus2 {
  top:
    48%;

  right:
    20%;

  animation:
    moveBus 6s infinite alternate-reverse ease-in-out;
}

.pin {
  top:
    40%;

  left:
    50%;

  animation:
    bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-15px);
  }

}

@keyframes moveBus {

  to {
    transform:
      translate(40px, 30px);
  }

}


/* =========================================================
   PHONE CARD
========================================================= */

.phone-card {
  position:
    absolute;

  left:
    15px;

  right:
    15px;

  bottom:
    15px;

  padding:
    20px;

  border-radius:
    25px;

  background:
    linear-gradient(
      135deg,
      var(--em-900),
      var(--em-600)
    );

  color:
    white;

  transition:
    all var(--transition);
}

.phone-card:hover {
  transform:
    scale(1.04);

  box-shadow:
    0 20px 40px rgba(56, 25, 82, 0.3);
}

.app-logo-wrapper {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;
}

.app-logo {
  width:
    55px;

  height:
    55px;

  flex-shrink:
    0;

  border-radius:
    15px;

  object-fit:
    cover;

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-logo-wrapper strong {
  display:
    block;

  font-size:
    1.1rem;
}

.app-logo-wrapper p {
  margin:
    0;

  font-size:
    0.85rem;

  opacity:
    0.8;
}


/* =========================================================
   APP INFO
========================================================= */

.app-info .section-eyebrow {
  margin-bottom:
    15px;
}

.app-info .section-title {
  margin-bottom:
    15px;
}

.app-info > p {
  margin-bottom:
    25px;

  color:
    var(--muted);

  line-height:
    1.8;
}

.feature-list {
  display:
    grid;

  gap:
    12px;

  margin-bottom:
    30px;
}

.luxury-feature {
  position:
    relative;

  overflow:
    hidden;

  padding:
    18px;

  border:
    1px solid var(--border);

  border-radius:
    18px;

  background:
    rgba(255, 255, 255, 0.82);

  transition:
    all var(--transition);
}

.luxury-feature::before {
  content:
    "";

  position:
    absolute;

  left:
    0;

  top:
    0;

  bottom:
    0;

  width:
    3px;

  transform:
    scaleY(0);

  background:
    linear-gradient(
      180deg,
      var(--em-500),
      var(--gold)
    );

  transition:
    transform var(--transition);
}

.luxury-feature:hover {
  transform:
    translateX(10px);

  background:
    white;

  box-shadow:
    var(--shadow-md);
}

.luxury-feature:hover::before {
  transform:
    scaleY(1);
}

.luxury-feature b {
  display:
    block;

  margin-bottom:
    5px;

  color:
    var(--em-950);
}

.luxury-feature span {
  color:
    var(--muted);

  font-size:
    0.9rem;
}


/* =========================================================
   STORE BADGES
========================================================= */

.stores-wrapper {
  display:
    flex;

  flex-wrap:
    wrap;

  align-items:
    center;

  gap:
    15px;
}

.store-badge {
  display:
    block;

  transition:
    all var(--transition);
}

.store-badge:hover {
  transform:
    translateY(-8px)
    scale(1.04);

  filter:
    drop-shadow(
      0 20px 30px rgba(0, 0, 0, 0.18)
    );
}

.store-badge img {
  display:
    block;

  width:
    200px;

  max-width:
    100%;
}


/* =========================================================
   RUTAS
========================================================= */

.routes-cards-grid {
  display:
    grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap:
    25px;
}

.route-card-btn {
  position:
    relative;

  overflow:
    hidden;

  min-height:
    220px;

  padding:
    30px;

  border:
    1px solid var(--border);

  border-radius:
    25px;

  background:
    rgba(255, 255, 255, 0.84);

  text-align:
    left;

  font-family:
    "Inter",
    sans-serif;

  cursor:
    pointer;

  box-shadow:
    var(--shadow-sm);

  transition:
    all var(--transition);
}

.route-card-btn::before {
  content:
    "";

  position:
    absolute;

  inset:
    0;

  opacity:
    0;

  background:
    linear-gradient(
      135deg,
      var(--em-950),
      var(--em-700)
    );

  transition:
    opacity var(--transition);
}

.route-card-btn:hover {
  transform:
    translateY(-15px)
    scale(1.02);

  box-shadow:
    var(--shadow-xl);
}

.route-card-btn:hover::before {
  opacity:
    1;
}

.route-chip {
  position:
    relative;

  z-index:
    2;

  display:
    inline-block;

  padding:
    8px 14px;

  margin-bottom:
    15px;

  border-radius:
    999px;

  background:
    var(--em-100);

  color:
    var(--em-700);

  font-size:
    0.8rem;

  font-weight:
    800;

  transition:
    all var(--transition);
}

.route-card-btn:hover .route-chip {
  background:
    rgba(255, 255, 255, 0.18);

  color:
    var(--gold);
}

.route-card-btn h3 {
  position:
    relative;

  z-index:
    2;

  margin-bottom:
    10px;

  color:
    var(--em-950);

  font-size:
    1.3rem;

  letter-spacing:
    -0.02em;

  transition:
    color var(--transition);
}

.route-card-btn:hover h3 {
  color:
    white;
}

.route-card-btn p {
  position:
    relative;

  z-index:
    2;

  color:
    var(--muted);

  font-size:
    0.9rem;

  line-height:
    1.7;

  transition:
    color var(--transition);
}

.route-card-btn:hover p {
  color:
    rgba(255, 255, 255, 0.72);
}


/* =========================================================
   MODAL DE RUTAS
========================================================= */

.route-modal {
  position:
    fixed;

  inset:
    0;

  z-index:
    10000;

  display:
    none;

  align-items:
    center;

  justify-content:
    center;

  padding:
    24px;
}

.route-modal.active {
  display:
    flex;
}

.route-modal-backdrop {
  position:
    absolute;

  inset:
    0;

  background:
    rgba(20, 8, 32, 0.82);

  backdrop-filter:
    blur(15px);

  -webkit-backdrop-filter:
    blur(15px);
}

.route-modal-content {
  position:
    relative;

  z-index:
    2;

  width:
    min(900px, 100%);

  max-height:
    85vh;

  max-height:
    85dvh;

  overflow-y:
    auto;

  padding:
    40px;

  border:
    1px solid rgba(212, 175, 55, 0.6);

  border-radius:
    35px;

  background:
    linear-gradient(
      135deg,
      white,
      var(--em-50)
    );

  box-shadow:
    0 50px 140px rgba(0, 0, 0, 0.4);

  animation:
    modalIn 0.4s ease;
}

@keyframes modalIn {

  from {
    opacity:
      0;

    transform:
      translateY(50px)
      scale(0.92);
  }

  to {
    opacity:
      1;

    transform:
      translateY(0)
      scale(1);
  }

}

.route-modal-close {
  position:
    absolute;

  top:
    20px;

  right:
    20px;

  width:
    45px;

  height:
    45px;

  border:
    none;

  border-radius:
    50%;

  background:
    linear-gradient(
      135deg,
      var(--em-800),
      var(--em-600)
    );

  color:
    white;

  font-size:
    1.2rem;

  cursor:
    pointer;

  box-shadow:
    0 10px 20px rgba(122, 68, 172, 0.3);

  transition:
    all var(--transition);
}

.route-modal-close:hover {
  transform:
    rotate(90deg)
    scale(1.1);

  box-shadow:
    0 20px 40px rgba(122, 68, 172, 0.4);
}

.route-modal-header {
  padding-right:
    60px;
}

.route-modal-header span {
  display:
    inline-block;

  padding:
    8px 14px;

  margin-bottom:
    15px;

  border-radius:
    999px;

  background:
    var(--em-100);

  color:
    var(--em-700);

  font-size:
    0.85rem;

  font-weight:
    800;
}

.route-modal-header h3 {
  margin-bottom:
    10px;

  color:
    var(--em-950);

  font-size:
    clamp(1.8rem, 4vw, 3rem);

  letter-spacing:
    -0.04em;
}

.route-modal-header p {
  margin-bottom:
    25px;

  color:
    var(--muted);
}

.route-line-visual {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  margin:
    25px 0;
}

.route-line-visual span {
  width:
    20px;

  height:
    20px;

  flex-shrink:
    0;

  border-radius:
    50%;

  background:
    var(--em-700);

  box-shadow:
    0 0 0 5px rgba(166, 117, 215, 0.2);
}

.route-line-visual div {
  flex:
    1;

  height:
    6px;

  border-radius:
    999px;

  background:
    linear-gradient(
      90deg,
      var(--em-950),
      var(--em-600),
      var(--gold)
    );
}

.modal-stops-list {
  display:
    grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    10px;
}

.modal-stop-item {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  padding:
    14px;

  border:
    1px solid var(--border);

  border-radius:
    15px;

  background:
    white;

  transition:
    all var(--transition);
}

.modal-stop-item:hover {
  transform:
    translateX(5px);

  border-color:
    var(--gold);

  box-shadow:
    var(--shadow-sm);
}

.modal-stop-number {
  width:
    35px;

  height:
    35px;

  flex:
    none;

  display:
    grid;

  place-items:
    center;

  border-radius:
    10px;

  background:
    linear-gradient(
      135deg,
      var(--em-700),
      var(--em-500)
    );

  color:
    white;

  font-size:
    0.85rem;

  font-weight:
    800;
}

.modal-stop-name {
  color:
    var(--em-950);

  font-size:
    0.9rem;

  font-weight:
    700;
}


/* =========================================================
   SCROLLBAR DEL MODAL
========================================================= */

.route-modal-content::-webkit-scrollbar {
  width:
    8px;
}

.route-modal-content::-webkit-scrollbar-track {
  background:
    transparent;
}

.route-modal-content::-webkit-scrollbar-thumb {
  border-radius:
    999px;

  background:
    var(--em-300);
}

.route-modal-content::-webkit-scrollbar-thumb:hover {
  background:
    var(--em-500);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  position:
    relative;

  z-index:
    5;

  padding:
    50px 20px 100px;

  border-top:
    1px solid var(--border);

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(243, 236, 251, 0.65)
    );

  color:
    var(--muted);

  text-align:
    center;

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);
}

.footer-links {
  display:
    flex;

  justify-content:
    center;

  flex-wrap:
    wrap;

  gap:
    20px;

  margin-bottom:
    15px;
}

.footer-links a {
  position:
    relative;

  color:
    var(--em-700);

  text-decoration:
    none;

  font-size:
    0.9rem;

  font-weight:
    700;

  transition:
    all var(--transition);
}

.footer-links a::after {
  content:
    "";

  position:
    absolute;

  bottom:
    -3px;

  left:
    0;

  width:
    0;

  height:
    2px;

  background:
    var(--gold);

  transition:
    width var(--transition);
}

.footer-links a:hover {
  color:
    var(--em-950);
}

.footer-links a:hover::after {
  width:
    100%;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity:
    0;

  transform:
    translateY(50px);

  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity:
    1;

  transform:
    translateY(0);
}


/* =========================================================
   TABLET / LAPTOP PEQUEÑA
========================================================= */

@media (max-width: 1180px) {

  .brand-text small {
    display:
      none;
  }

  .nav-link {
    padding:
      10px 9px;

    font-size:
      0.8rem;
  }

  .primary-nav {
    padding:
      10px 12px;

    font-size:
      0.78rem;
  }

}


/* =========================================================
   TABLET / MENÚ MÓVIL
========================================================= */

@media (max-width: 980px) {

  .menu-btn {
    display:
      block;
  }

  .nav {
    border-radius:
      28px;
  }

  .nav-links {
    position:
      fixed;

    top:
      95px;

    left:
      15px;

    right:
      15px;

    max-height:
      calc(100dvh - 115px);

    overflow-y:
      auto;

    flex-direction:
      column;

    align-items:
      stretch;

    gap:
      8px;

    padding:
      24px;

    border:
      1px solid var(--border);

    border-radius:
      25px;

    background:
      rgba(255, 255, 255, 0.98);

    opacity:
      0;

    visibility:
      hidden;

    pointer-events:
      none;

    transform:
      translateY(-25px);

    box-shadow:
      var(--shadow-xl);

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }

  .nav-links.open {
    opacity:
      1;

    visibility:
      visible;

    pointer-events:
      auto;

    transform:
      translateY(0);
  }

  .nav-link,
  .primary-nav {
    width:
      100%;

    padding:
      14px 16px;

    text-align:
      center;
  }

  .hero {
    min-height:
      auto;

    grid-template-columns:
      1fr;

    gap:
      50px;

    padding:
      150px 0 100px;

    text-align:
      center;
  }

  .hero-title,
  .hero-subtitle {
    margin-left:
      auto;

    margin-right:
      auto;
  }

  .hero-actions {
    justify-content:
      center;
  }

  .hero-stats {
    justify-content:
      center;
  }

  .hero-card-3d {
    max-width:
      700px;

    margin:
      auto;

    transform:
      none;
  }

  .hero-card-3d:hover {
    transform:
      translateY(-5px);
  }

  .scroll-indicator {
    display:
      none;
  }

  .luxury-cards,
  .vision-mission-container,
  .fares-container {
    grid-template-columns:
      1fr;
  }

  .values-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .app-section {
    grid-template-columns:
      1fr;

    gap:
      60px;
  }

  .app-info {
    max-width:
      700px;

    margin:
      auto;

    text-align:
      center;
  }

  .stores-wrapper {
    justify-content:
      center;
  }

  .routes-cards-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 700px) {

  .skip-preloader {
    right:
      18px;

    bottom:
      calc(18px + env(safe-area-inset-bottom));

    min-width:
      90px;

    min-height:
      42px;

    padding:
      0 17px;

    font-size:
      0.82rem;
  }

  .header {
    padding:
      12px 0;
  }

  .header.scrolled {
    padding:
      8px 0;
  }

  .nav {
    width:
      calc(100% - 20px);

    padding:
      10px 14px;

    border-radius:
      22px;
  }

  .brand-logo {
    width:
      44px;

    height:
      44px;

    border-radius:
      13px;

    font-size:
      1rem;
  }

  .brand-text strong {
    font-size:
      1rem;
  }

  .nav-links {
    top:
      78px;

    left:
      10px;

    right:
      10px;

    max-height:
      calc(100dvh - 95px);
  }

  .hero {
    width:
      calc(100% - 24px);

    padding:
      125px 0 80px;
  }

  .hero-badge {
    font-size:
      0.78rem;
  }

  .hero-title {
    font-size:
      clamp(2.6rem, 12vw, 4rem);

    line-height:
      0.96;
  }

  .hero-subtitle {
    font-size:
      1rem;
  }

  .hero-actions {
    flex-direction:
      column;
  }

  .luxury-btn,
  .glass-btn {
    width:
      100%;

    justify-content:
      center;
  }

  .hero-stats {
    flex-direction:
      column;

    gap:
      18px;
  }

  .stat-divider {
    display:
      none;
  }

  .stat-number {
    font-size:
      2.2rem;
  }

  .hero-card-3d {
    border-radius:
      24px;
  }

  .hero-card-3d img {
    height:
      390px;
  }

  .hero-card-overlay {
    left:
      12px;

    right:
      12px;

    bottom:
      12px;

    padding:
      16px;

    border-radius:
      18px;
  }

  .hero-card-overlay h3 {
    font-size:
      1.15rem;
  }

  .section {
    width:
      calc(100% - 24px);

    padding:
      75px 0;
  }

  .section-header {
    margin-bottom:
      38px;
  }

  .section-title {
    font-size:
      clamp(2rem, 9vw, 2.8rem);
  }

  .section-description {
    font-size:
      1rem;
  }

  .luxury-card,
  .luxury-block,
  .luxury-fare,
  .luxury-service {
    padding:
      28px 24px;
  }

  .luxury-card {
    min-height:
      auto;

    padding-bottom:
      65px;
  }

  .values-grid,
  .services-grid,
  .routes-cards-grid {
    grid-template-columns:
      1fr;
  }

  .fare-price {
    font-size:
      3.5rem;
  }

  .phone {
    height:
      580px;
  }

  .stores-wrapper {
    flex-direction:
      column;

    align-items:
      center;
  }

  .store-badge img {
    width:
      190px;
  }

  .route-modal {
    padding:
      12px;
  }

  .route-modal-content {
    padding:
      28px 20px;

    border-radius:
      25px;

    max-height:
      90dvh;
  }

  .route-modal-close {
    top:
      14px;

    right:
      14px;

    width:
      40px;

    height:
      40px;
  }

  .route-modal-header {
    padding-right:
      45px;
  }

  .modal-stops-list {
    grid-template-columns:
      1fr;
  }

  .footer {
    padding:
      40px 20px 95px;
  }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 420px) {

  .brand-text strong {
    font-size:
      0.92rem;
  }

  .hero-title {
    font-size:
      2.55rem;
  }

  .hero-card-3d img {
    height:
      330px;
  }

  .phone {
    height:
      540px;

    border-radius:
      42px;
  }

  .phone-screen {
    border-radius:
      33px;
  }

  .luxury-card,
  .luxury-block,
  .luxury-fare,
  .luxury-service {
    padding-left:
      20px;

    padding-right:
      20px;
  }

}


/* =========================================================
   ACCESIBILIDAD
   REDUCIR MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior:
      auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

  .reveal {
    opacity:
      1;

    transform:
      none;
  }

}