/* ============================================================
   TAXIS VILADECANS — styles.css
   Mobile-first | Production | taxiviladecans.es
   ============================================================

   ESCALA DE BREAKPOINTS (mobile-first, min-width)
   ─────────────────────────────────────────────────
   xs  →  max-width: 380px   (móvil muy pequeño — ajustes puntuales)
   sm  →  min-width: 480px   (móvil grande / phablet)
   md  →  min-width: 768px   (tablet portrait / desktop pequeño)
   lg  →  min-width: 900px   (tablet landscape / desktop medio)
   xl  →  min-width: 1200px  (desktop grande)

   Uso de max-width solo para casos excepcionales (ej: ocultar
   elementos en móvil muy pequeño). El resto siempre min-width.
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:      #F5C518;
  --yellow-dark: #D4A800;
  --yellow-soft: rgba(245, 197, 24, 0.12);
  --black:       #0A0A0A;
  --dark:        #111111;
  --card:        #1A1A1A;
  --card2:       #222222;
  --white:       #FFFFFF;
  --gray:        #AAAAAA;
  --gray-light:  #CCCCCC;
  --green:       #22C55E;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow-cta:  0 4px 24px rgba(245, 197, 24, 0.3);
  --transition:  0.2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

/* ── UTILITIES ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.accent { color: var(--yellow); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

/* ─── CTA BANNERS SOBRE FONDO AMARILLO — botones oscuros ──────────────────
   Todos los banners CTA del sitio usan fondo amarillo (#F5C518).
   Los botones necesitan colores inversos: fondo negro, texto amarillo.
   Especificidad 0,2,0 (.banner .btn) > 0,1,0 (.btn) → sin !important.
   ─────────────────────────────────────────────────────────────────────── */
.serv-cta-banner    .btn-primary,
.qs-cta-banner      .btn-primary,
.flota-cta-banner   .btn-primary,
.trabaja-cta-banner .btn-primary {
  background:   #0a0a0a;
  color:        var(--yellow);
  border-color: #0a0a0a;
}
.serv-cta-banner    .btn-primary:hover,
.qs-cta-banner      .btn-primary:hover,
.flota-cta-banner   .btn-primary:hover,
.trabaja-cta-banner .btn-primary:hover {
  background: #1a1a1a;
  transform:  translateY(-2px);
}
.serv-cta-banner    .btn-secondary,
.qs-cta-banner      .btn-secondary,
.flota-cta-banner   .btn-secondary,
.trabaja-cta-banner .btn-secondary {
  background:   rgba(10, 10, 10, 0.08);
  color:        #0a0a0a;
  border-color: rgba(10, 10, 10, 0.25);
}
.serv-cta-banner    .btn-secondary:hover,
.qs-cta-banner      .btn-secondary:hover,
.flota-cta-banner   .btn-secondary:hover,
.trabaja-cta-banner .btn-secondary:hover {
  background: rgba(10, 10, 10, 0.15);
  border-color: rgba(10, 10, 10, 0.35);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-dark-outline:hover { background: rgba(0, 0, 0, 0.1); }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.12);
  transition: box-shadow var(--transition), z-index 0s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.5); }
/* Cuando el menú móvil está abierto, el header debe estar por encima
   para que la hamburguesa (que se transforma en X) siga clickable */
body.mobile-nav-open #header {
  z-index: 9999;
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 0.75rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1;
}
.logo-text .white { color: var(--white); }
.logo-text .yellow { color: var(--yellow); }

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.2px;
  transition: color var(--transition);
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.desktop-nav a:hover { color: var(--yellow); }
.desktop-nav a:hover::after { transform: scaleX(1); }

/* Header CTA buttons (stacked on mobile, horizontal on tablet) */
.header-btns {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-shrink: 0;
}
.header-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-sm);
  line-height: 1;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-tel:hover { color: var(--yellow); border-color: var(--yellow); }
.header-tel svg { width: 12px; height: 12px; }

.header-reservar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-sm);
  line-height: 1;
  transition: background var(--transition);
  white-space: nowrap;
  text-align: center;
}
.header-reservar:hover { background: var(--yellow-dark); }

/* ═══════════════════════════════════════════════════════
   HAMBURGER (morph elegante a X con cubic-bezier)
═══════════════════════════════════════════════════════ */
.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
  flex-shrink: 0;
  z-index: 9999;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.12); }
.hamburger.open {
  background: rgba(245, 197, 24, 0.12);
  border-color: rgba(245, 197, 24, 0.4);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  /* Curva premium "elastic" para efecto morph */
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55),
              opacity 0.3s ease,
              background 0.3s ease;
}
.hamburger.open span { background: var(--yellow); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   LOGO HEADER — crece sutilmente al abrir el menú
═══════════════════════════════════════════════════════ */
.logo-img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.mobile-nav-open .logo-img {
  transform: scale(1.18);
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAV — Full-screen premium minimalista (estilo Apple)
═══════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* mejor manejo en navegadores móviles modernos */
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  z-index: 9000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow: hidden;
  /* Sin padding-top: la topbar interna del menú alinea con el header sticky */
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* Bloqueo de scroll del body cuando el menú está abierto */
body.mobile-nav-open {
  overflow: hidden;
}

/* ─── Topbar: brand a la izquierda alineado con la X del header ─── */
.mobile-nav-topbar {
  flex-shrink: 0;
  height: 64px; /* misma altura que el header sticky */
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.mobile-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  /* Estado inicial: invisible y desplazado a la derecha */
  opacity: 0;
  transform: translateX(20px);
}
.mobile-nav-brand-img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.mobile-nav-brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.mobile-nav-brand-text .white { color: var(--white); }
.mobile-nav-brand-text .yellow { color: var(--yellow); }

/* ─── Header del menú: solo status pulsante centrado ─── */
.mobile-nav-header {
  flex-shrink: 0;
  padding: 0.25rem 1.25rem 0.85rem;
  display: flex;
  justify-content: center;
}
.mobile-nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  /* Estado inicial: invisible y desplazado a la derecha */
  opacity: 0;
  transform: translateX(20px);
}
.mobile-nav-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: mob-status-pulse 1.5s ease-in-out infinite;
}
@keyframes mob-status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}

/* Stagger animation: brand entra primero, luego status (ambos desde la derecha) */
.mobile-nav.open .mobile-nav-brand {
  animation: mob-slide-from-right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 100ms;
}
.mobile-nav.open .mobile-nav-status {
  animation: mob-slide-from-right 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 135ms;
}
@keyframes mob-slide-from-right {
  to { opacity: 1; transform: translateX(0); }
}

/* ─── Lista de items ─── */
.mobile-nav-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 1.15rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-items a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.95rem 0.7rem 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: -0.005em;
  border-radius: 10px;
  overflow: hidden;
  /* Estado inicial para stagger animation */
  opacity: 0;
  transform: translateX(-20px);
  transition: color 0.25s ease, font-weight 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Línea vertical amarilla — solo aparece en estado activo o hover/tap */
.mobile-nav-items a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 3px;
  background: var(--yellow);
  border-radius: 0 3px 3px 0;
  /* Inicialmente invisible y "encogida" */
  transform: scaleY(0);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.3s ease,
              box-shadow 0.3s ease;
}

/* Background gradient — aparece animado de izquierda a derecha en hover/tap */
.mobile-nav-items a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(90deg,
    rgba(245, 197, 24, 0.10) 0%,
    rgba(245, 197, 24, 0.04) 50%,
    transparent 100%);
  /* Crea efecto "wipe" desde la izquierda al activarse */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

/* Stagger animation cuando el menú se abre */
.mobile-nav.open .mobile-nav-items a {
  animation: mob-item-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i, 0) * 35ms + 100ms);
}
@keyframes mob-item-in {
  to { opacity: 1; transform: translateX(0); }
}

/* Icono del item */
.mobile-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: saturate(0.85);
}

/* Hover/tap (glow táctil amarillo) */
.mobile-nav-items a:hover,
.mobile-nav-items a:active,
.mobile-nav-items a:focus-visible {
  color: var(--yellow);
  outline: none;
}
.mobile-nav-items a:hover::before,
.mobile-nav-items a:active::before,
.mobile-nav-items a:focus-visible::before {
  transform: scaleY(1);
  opacity: 0.6;
}
.mobile-nav-items a:hover::after,
.mobile-nav-items a:active::after,
.mobile-nav-items a:focus-visible::after {
  clip-path: inset(0 0 0 0);
}
.mobile-nav-items a:hover .mobile-nav-icon,
.mobile-nav-items a:active .mobile-nav-icon {
  transform: scale(1.12);
  filter: saturate(1.3);
}

/* ─── Item activo (página actual) — texto bold + barra fuerte + glow ─── */
.mobile-nav-items a.nav-active {
  color: var(--yellow);
  font-weight: 700;
}
.mobile-nav-items a.nav-active::before {
  transform: scaleY(1);
  opacity: 1;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.5);
}
.mobile-nav-items a.nav-active::after {
  clip-path: inset(0 0 0 0);
}
.mobile-nav-items a.nav-active .mobile-nav-icon {
  filter: saturate(1.2);
}

/* ─── Footer del menú: logo + CTA ─── */
.mobile-nav-footer {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 197, 24, 0.02) 100%);
}
.mobile-nav-logo {
  width: 90px;
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 6px 16px rgba(245, 197, 24, 0.22));
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* CTA Llamar — botón amarillo grande pegado abajo, con pulso muy lento */
.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--yellow);
  color: #0a0a0a !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  letter-spacing: 0.4px;
  text-decoration: none;
  box-shadow: 0 8px 22px -6px rgba(245, 197, 24, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
/* Pulso muy lento de invitación cada 4s — no intrusivo */
.mobile-nav.open .mob-cta {
  animation: mob-cta-pulse 4s ease-in-out infinite;
  animation-delay: 1.5s; /* arranca después del stagger de items */
}
@keyframes mob-cta-pulse {
  0%, 100% { box-shadow: 0 8px 22px -6px rgba(245, 197, 24, 0.45); }
  50% { box-shadow: 0 8px 28px -4px rgba(245, 197, 24, 0.7), 0 0 0 4px rgba(245, 197, 24, 0.1); }
}
.mob-cta:hover,
.mob-cta:active {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  animation: none; /* parar el pulso al interactuar */
  box-shadow: 0 12px 28px -6px rgba(245, 197, 24, 0.55);
}

/* En pantallas muy pequeñas (iPhone SE, ≤380px) */
@media (max-width: 380px) {
  .mobile-nav-topbar { padding: 0 0.75rem; height: 60px; }
  .mobile-nav-brand-img { width: 32px; height: 32px; }
  .mobile-nav-brand-text { font-size: 1.2rem; }
  .mobile-nav-header { padding: 0.15rem 1rem 0.7rem; }
  .mobile-nav-items { padding: 0.4rem 0.95rem 0.6rem; }
  .mobile-nav-items a { font-size: 1.05rem; padding: 0.6rem 0.85rem 0.6rem 1rem; gap: 0.7rem; }
  .mobile-nav-icon { width: 24px; height: 24px; font-size: 1.15rem; }
  .mobile-nav-footer { padding: 0.4rem 1rem 1rem; gap: 0.7rem; }
  .mobile-nav-logo { width: 70px; }
  .mob-cta { font-size: 1.05rem; padding: 0.85rem 1rem; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 560px;   /* móvil: altura razonable que deja ver foto + contenido */
  display: flex;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 2rem;
  overflow: hidden;
}
/* El container dentro del hero DEBE ser 100% de ancho.
   Sin esto, en display:flex el container colapsa al ancho
   de su contenido y queda centrado en lugar de pegado a la izquierda. */
#hero > .container {
  width: 100%;
  position: relative;
  z-index: 2;
}
/* ── HERO — Una sola imagen que siempre se adapta ──────────────
   Estrategia profesional:
   • Desktop (≥900px): 100vh con cover, la imagen llena la pantalla
   • Tablet (600-899): altura auto, padding generoso, cover
   • Móvil (<600px):   altura auto más compacta, cover
   La imagen se recorta ligeramente pero siempre mantiene buenas
   proporciones y los taxis siempre visibles gracias al
   background-position optimizado por breakpoint.
   ─────────────────────────────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-taxi.jpg');
  background-size: cover;
  background-position: 30% 65%;  /* móvil: enfocar fila de taxis (centro-inferior) */
  background-repeat: no-repeat;
  filter: brightness(0.60);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(5,5,5,0.80) 0%,
      rgba(5,5,5,0.68) 30%,
      rgba(5,5,5,0.35) 55%,
      rgba(5,5,5,0.05) 80%,
      transparent 100%
    ),
    linear-gradient(to top,
      rgba(5,5,5,0.60) 0%,
      rgba(5,5,5,0.12) 25%,
      transparent 50%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.5rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.4px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.35); }
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--gray-light);
  max-width: 500px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(0, 0, 0, 0.50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-pill svg { width: 13px; height: 13px; color: var(--yellow); }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;  /* centrado en móvil */
}
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.2rem;
}
/* En desktop los stats vuelven a la izquierda */
@media (min-width: 900px) {
  .hero-stats { justify-content: flex-start; }
}

/* ── TRUST BAR ── */
#trust {
  background: var(--yellow);
  padding: 1rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.2px;
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.2);
  display: none;  /* oculto en móvil; visible en desktop vía media query */
}

/* ── SECTIONS ── */
section { padding: 4.5rem 0; }

/* ── SERVICIOS ── */
#servicios { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
  display: block;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.service-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.85rem;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 0.5rem; }

/* ── TARIFAS ── */
#tarifas { background: var(--black); }

.tarifas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.tarifa-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.tarifa-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.tarifa-card.featured {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.05);
}
.tarifa-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}
.tarifa-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tarifa-icon svg { width: 30px; height: 30px; color: var(--yellow); }
.tarifa-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.2px;
}
.tarifa-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.tarifa-price sup { font-size: 1.2rem; vertical-align: super; }
.tarifa-note { font-size: 0.75rem; color: var(--gray); margin-top: 0.25rem; }
.btn-tarifa {
  display: block;
  margin-top: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-align: center;
}
.btn-tarifa:hover { background: var(--yellow-dark); }
.tarifas-note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gray);
}
.tarifas-note a { color: var(--yellow); }

/* ── CTA BANNER ── */
#cta-banner { background: var(--yellow); padding: 2.5rem 0; }
.cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cta-banner-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}
.cta-banner-inner p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.25rem;
}
.cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── ZONAS ── */
#zonas { background: var(--dark); }

.zonas-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.zona-list { display: flex; flex-direction: column; gap: 0.65rem; }
.zona-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color var(--transition);
}
.zona-item:hover { border-color: rgba(245, 197, 24, 0.4); }
.zona-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.zona-item-left svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; }
.zona-item-left span { font-size: 0.9rem; font-weight: 500; }
.zona-tag {
  font-size: 0.75rem;
  color: var(--gray);
  background: rgba(255,255,255,0.05);
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  white-space: nowrap;
}
.zona-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.zona-cta-btn:hover { background: var(--yellow-dark); }
.zona-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.zona-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(70%) invert(85%) contrast(90%);
}

/* ── POR QUÉ NOSOTROS ── */
#porque { background: var(--black); }

.porque-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.porque-features { display: flex; flex-direction: column; gap: 1.25rem; }
.porque-feat {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.porque-feat-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.porque-feat-icon svg { width: 20px; height: 20px; color: var(--yellow); }
.porque-feat h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.porque-feat p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

.porque-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.porque-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.porque-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  line-height: 1.2;
}
.porque-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}
.porque-badge-text { font-size: 0.75rem; font-weight: 600; margin-top: 0.1rem; }

/* ── TESTIMONIOS ── */
#testimonios { background: var(--dark); }

.testimonios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonio-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.testimonio-card:hover { border-color: rgba(245, 197, 24, 0.3); }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.85rem;
}
.stars svg { width: 15px; height: 15px; color: var(--yellow); fill: var(--yellow); }
.testimonio-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonio-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
}
.testimonio-name { font-size: 0.88rem; font-weight: 600; }
.testimonio-loc { font-size: 0.78rem; color: var(--gray); }

.gmb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  transition: border-color var(--transition), color var(--transition);
}
.gmb-link:hover { border-color: rgba(245,197,24,0.5); color: var(--yellow); }
.gmb-link svg { width: 14px; height: 14px; }

/* ── FAQ ── */
#faq { background: var(--black); }

.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform 0.3s;
}
.faq-icon svg { width: 11px; height: 11px; color: var(--yellow); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--yellow); }
.faq-item.open .faq-icon svg { color: var(--black); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  padding: 0 1.2rem;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.2rem 1rem; }

.faq-cta-box {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.faq-cta-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.faq-cta-box p { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; }
.faq-cta-btns { display: flex; flex-direction: column; gap: 0.65rem; }

/* ── FORMULARIO ── */
#reserva { background: var(--dark); }

.reserva-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
/* En móvil/tablet (<900px): form-info se "disuelve" para que sus hijos sean
   hermanos directos del flex parent. Así el logo (.form-info-logo) puede
   moverse al final del flujo con `order`, después del formulario.
   En desktop (>=900px) form-info recupera display:flex normal. */
@media (max-width: 899px) {
  .form-info { display: contents; }
  .form-info > h3,
  .form-info > ul,
  .form-info > .form-info-box { order: 0; }
  .form-info > .form-info-logo { order: 99; }
  .form-box { order: 50; }
}
.form-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}
/* Lista legacy del form-info (index.php) — diseño elegante con checks */
.form-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.form-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.15rem 0;
}
/* Icono check dentro de círculo amarillo translúcido */
.form-info li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat,
    radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, rgba(245, 197, 24, 0.08) 100%);
  border: 1px solid rgba(245, 197, 24, 0.3);
  box-shadow: 0 0 0 1px rgba(245, 197, 24, 0.05);
  transition: transform 0.25s ease, background 0.25s ease;
}
/* Hover: el check se ilumina */
.form-info li:hover::before {
  transform: scale(1.1);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat,
    var(--yellow);
}
.form-info li:hover { color: var(--white); }

.contact-block {
  margin-top: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.1rem;
}
.contact-block-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; }
.contact-item span, .contact-item a { font-size: 0.88rem; }
.contact-item a { color: var(--white); transition: color var(--transition); }
.contact-item a:hover { color: var(--yellow); }

.form-box {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-group { margin-bottom: 0.9rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 11px;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 85px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--yellow);
  cursor: pointer;
}
.form-check label { font-size: 0.78rem; color: var(--gray); line-height: 1.4; }
.form-check label a { color: var(--yellow); }
.btn-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--yellow-dark); }
.form-msg {
  text-align: center;
  font-size: 0.82rem;
  margin-top: 0.65rem;
  min-height: 1.2em;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #060606 100%);
  /* Separador superior elegante: línea amarilla degradada */
  border-top: none;
  position: relative;
  padding: 3rem 0 1.5rem;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(245, 197, 24, 0.15) 15%,
    rgba(245, 197, 24, 0.55) 40%,
    rgba(245, 197, 24, 0.55) 60%,
    rgba(245, 197, 24, 0.15) 85%,
    transparent 100%
  );
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-brand .logo { margin-bottom: 0.85rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 260px;
}
.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--yellow);
  transition: opacity var(--transition);
}
.footer-tel:hover { opacity: 0.8; }
.footer-tel svg { width: 16px; height: 16px; }

/* 4-col grid: brand + 3 cols */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
/* Separador elegante entre grid y copyright */
.footer-grid::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.04) 10%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.12) 60%,
    rgba(255,255,255,0.04) 90%,
    transparent 100%
  );
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--yellow); }
/* Keep contact items as plain text */
.footer-col .footer-contact-item {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}
.footer-col .footer-contact-item a {
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-col .footer-contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: var(--gray); }

/* ── STICKY MOBILE BAR ── */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
#sticky-bar span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
}
.sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 0.65rem;
  border-radius: var(--radius-md);
}
.sticky-call svg { width: 15px; height: 15px; }
.sticky-reservar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  background: var(--card2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 0.65rem;
  border-radius: var(--radius-md);
}
.sticky-reservar svg { width: 15px; height: 15px; }

/* ── RESPONSIVE: TABLET ── */
@media (min-width: 600px) {
  .hero-btns { flex-direction: row; }
  .tarifas-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-sep { display: block; }
  .trust-item { font-size: 0.95rem; }
  .cta-banner-btns { flex-direction: row; }
  .testimonios-grid { grid-template-columns: 1fr 1fr; }
  .form-row { flex-direction: row; gap: 1rem; }
  .form-row .form-group { flex: 1; margin-bottom: 0; }
  /* Footer tablet: brand full-width + 2x2 for link cols */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .footer-brand p { max-width: 100%; }
}

/* ── FOOTER MOBILE: 2x2 grid (aprovecha espacio) ── */
@media (max-width: 599px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
  }
  .footer-brand {
    grid-column: 1 / -1;  /* brand ocupa fila completa */
    margin-bottom: 0.25rem;
  }
  .footer-brand p { max-width: 100%; }
}

/* ── RESPONSIVE: DESKTOP ── */
@media (min-width: 900px) {
  .desktop-nav { display: flex; }
  .header-btns { display: flex; }
  .hamburger { display: none !important; }
  #sticky-bar { display: none; }
  body { padding-bottom: 0; }

  section { padding: 5.5rem 0; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .tarifas-grid { gap: 1.5rem; }

  .zonas-layout { flex-direction: row; align-items: flex-start; gap: 2.5rem; }
  .zona-list { flex: 1; display: flex; flex-direction: column; }
  .zona-items { display: flex; flex-direction: column; gap: 0.65rem; }
  .zona-map {
    flex: 1;
    aspect-ratio: auto;
    /* El JS igualará la altura del mapa a la del wrapper de tarjetas,
       dejando el botón CTA fuera/debajo. */
  }

  .porque-layout { flex-direction: row; align-items: center; gap: 4rem; }
  .porque-features { flex: 1; }
  .porque-img-wrap { flex: 1; }
  .porque-img-wrap img { height: 420px; }

  .testimonios-grid { grid-template-columns: repeat(3, 1fr); }

  /* FAQ: columna CTA compacta y fija, no estirada */
  .faq-layout { flex-direction: row; align-items: flex-start; gap: 2.5rem; max-width: 1100px; }
  .faq-list { flex: 1; }
  .faq-cta-box {
    flex: 0 0 320px;
    position: sticky;
    top: 90px;
    align-self: flex-start;
  }
  .faq-q { font-size: 0.95rem; }
  .faq-cta-box h3 { font-size: 1.5rem; }

  .reserva-layout {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
  .reserva-layout .form-info {
    flex: 0 0 320px;
    display: block; /* Restablece display:contents del móvil */
  }
  .reserva-layout .form-box { flex: 1; min-width: 0; }

  .cta-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-banner-btns { flex-direction: row; }

  /* Footer: 5-col grid (brand + 4 cols) */
  .footer-grid { grid-template-columns: minmax(200px, 240px) 1fr 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; margin-bottom: 0; }
  .footer-brand p { max-width: 220px; }

  /* Hero: full width left-aligned (no artificial constraint) */
}

@media (min-width: 900px) {
  .header-btns { flex-direction: column; }
}

/* ── TABLET: header buttons horizontal ── */
@media (min-width: 600px) and (max-width: 899px) {
  .header-btns {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
  .header-tel  { padding: 0.38rem 0.85rem; font-size: 0.88rem; }
  .header-reservar { padding: 0.38rem 0.85rem; font-size: 0.88rem; }
}

/* ── MÓVIL (<600px): ocultar botones del header.
   Esos CTAs ya están duplicados dentro del menú móvil
   (badge verde "Disponibles" + CTA llamar amarillo grande abajo)
   → libera espacio para que la hamburguesa respire bien
   incluso en pantallas estrechas tipo 350×616 ── */
@media (max-width: 599px) {
  .header-btns { display: none !important; }
  .header-inner { gap: 0.5rem; }
  .logo-img { width: 32px; height: 32px; }
  .logo-text { font-size: 1.1rem; }
}

/* ── PANTALLAS ULTRA ESTRECHAS (<360px) — iPhone SE, Android pequeños ── */
@media (max-width: 360px) {
  .logo-img { width: 28px; height: 28px; }
  .logo-text { font-size: 1rem; letter-spacing: 0.01em; }
  .hamburger { width: 36px; height: 36px; }
  .hamburger span { width: 18px; }
}

/* ── HERO — Altura + posición de la imagen por breakpoint ── */
/* Tablet: altura mayor, imagen mejor posicionada */
@media (min-width: 600px) {
  #hero { min-height: 640px; padding-top: 96px; }
  .hero-bg { background-position: 30% 60%; }
}
/* Desktop: altura completa de viewport y foto panorámica bien centrada */
@media (min-width: 900px) {
  #hero { min-height: 100vh; padding-top: 66px; padding-bottom: 0; }
  .hero-bg { background-position: center 55%; }
}

/* ── MOBILE: sticky bar + services grid ── */
@media (max-width: 899px) {
  body { padding-bottom: 72px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SLIDER (porque section) ── */
/* ── SLIDER — estructura robusta sin solapamientos ── */
.slider-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* Altura garantizada por defecto (móvil) */
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
/* Clase utilitaria para reposicionar sin animación (usada por JS en resize) */
.slider-track.no-transition {
  transition: none !important;
}
.slide {
  /* Cada slide ocupa exactamente el 100% del ancho visible del wrap */
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.slider-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}
/* En móvil el badge +15 ocupa la parte inferior izquierda —
   subimos los dots para evitar el solapamiento visual */
@media (max-width: 899px) {
  .slider-nav {
    bottom: 6.5rem;
  }
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.25);
}
.slider-dot:hover { background: rgba(255,255,255,0.75); }

/* ── INTEGRACIÓN CON LAYOUT PADRE (porque section) ── */
/* Móvil: el slider va apilado, ancho completo, altura por aspect-ratio */
.porque-layout .slider-wrap {
  width: 100%;
  min-height: 320px;
}
/* Tablet: un poco más alto */
@media (min-width: 600px) {
  .porque-layout .slider-wrap { min-height: 380px; }
}
/* Desktop: layout horizontal, slider al lado de las features */
@media (min-width: 900px) {
  .porque-layout .slider-wrap {
    flex: 1 1 0;
    min-width: 0;
    min-height: 420px;
  }
}

/* ── FOOTER — deeper black (handled above with ::before pseudo) ── */

/* Footer bottom: desktop = row | mobile = legal first, copyright below */
.footer-bottom-copy  { font-size: 0.78rem; color: var(--gray); }
.footer-bottom-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-legal a { font-size: 0.78rem; color: var(--gray); transition: color var(--transition); }
.footer-bottom-legal a:hover { color: var(--white); }

@media (max-width: 899px) {
  .footer-bottom {
    flex-direction: column-reverse;  /* legal top, copyright bottom */
    align-items: center;
    text-align: center;
    gap: 0.65rem;
  }
  .footer-bottom-legal { justify-content: center; }
}
@media (min-width: 900px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ── NAV ACTIVE STATE ── */
.desktop-nav a.nav-active { color: var(--yellow); }
.desktop-nav a.nav-active::after { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════════
   PÁGINA AEROPUERTO — Estilos específicos
   ══════════════════════════════════════════════════════════════ */

/* ── HERO AEROPUERTO — imagen de fondo diferente ── */
.hero-bg-aeropuerto {
  background-image: url('../images/aeropuerto/hero-aeropuerto.jpg') !important;
  background-position: center 55% !important;
}
@media (min-width: 900px) {
  .hero-bg-aeropuerto {
    background-position: center 50% !important;
  }
}

/* ── TARIFAS AEROPUERTO ── */
#tarifas-aeropuerto { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) {
  #tarifas-aeropuerto { padding: 5.5rem 0; }
}

.aero-tarifa-info {
  margin-top: 2rem;
}
.aero-tarifa-box {
  background: var(--card);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.aero-tarifa-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aero-tarifa-icon svg { width: 28px; height: 28px; color: var(--yellow); }
.aero-tarifa-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aero-tarifa-box p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ── ESTIMADOR DE PRECIO ── */
.aero-estimador {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.aero-estimador h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.aero-estimador-intro {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.aero-estimador-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aero-estimador-field {
  display: flex;
  flex-direction: column;
}
.aero-estimador-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.35rem;
  letter-spacing: 0.2px;
}
.aero-estimador-field select {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 11px;
  padding-right: 2.5rem;
  transition: border-color var(--transition);
}
.aero-estimador-field select:focus { border-color: var(--yellow); }
/* ─── CAJA "Precio aproximado" — Diseño premium amarillo 3D ─── */
.aero-estimador-result {
  position: relative;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem 0.95rem;
  /* Gradient sutil tipo "placa dorada" en lugar de color plano */
  background:
    linear-gradient(180deg,
      rgba(245, 197, 24, 0.16) 0%,
      rgba(245, 197, 24, 0.08) 100%);
  /* Borde amarillo brillante + glow externo */
  border: 1.5px solid rgba(245, 197, 24, 0.4);
  border-radius: 14px;
  text-align: center;
  /* Triple sombra: lift exterior + glow amarillo + brillo interno superior */
  box-shadow:
    0 12px 30px -10px rgba(245, 197, 24, 0.25),
    0 4px 12px -4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
  isolation: isolate;
}

/* La animación de "pop" se aplica cuando el JS añade la clase .aero-result-updated
   (al calcular o cambiar selects). Así no se dispara al cargar la página
   con un valor que ya está calculado. */
.aero-estimador-result.aero-result-updated {
  animation: aero-result-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Halo radial amarillo de fondo (efecto "iluminado por dentro") */
.aero-estimador-result::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse, rgba(245, 197, 24, 0.25) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* Línea brillante superior (efecto "borde dorado" arriba) */
.aero-estimador-result::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 235, 150, 0.9),
    rgba(245, 197, 24, 1),
    rgba(255, 235, 150, 0.9),
    transparent);
}

/* Animación de "rebote" al calcular */
@keyframes aero-result-pop {
  0% { opacity: 0; transform: scale(0.92) translateY(8px); }
  60% { opacity: 1; transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* LABEL "Precio aproximado" — con check verde de confirmación */
.aero-estimador-result-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
/* Check verde delante del label */
.aero-estimador-result-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 8px no-repeat,
    #4ade80;
  box-shadow:
    0 0 0 2px rgba(74, 222, 128, 0.2),
    0 0 8px rgba(74, 222, 128, 0.4);
  flex-shrink: 0;
}

/* CIFRA del precio — protagonista absoluto */
.aero-estimador-result-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5.5vw, 2.6rem);
  font-weight: 800;
  /* Gradient sobre el texto: dorado brillante de arriba a más oscuro abajo */
  background: linear-gradient(180deg,
    #FFE38A 0%,
    #F5C518 45%,
    #D4A800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--yellow); /* fallback para navegadores que no soporten background-clip */
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  /* Sombra del texto separada (queda detrás del texto, no en el clip) */
  filter: drop-shadow(0 2px 8px rgba(245, 197, 24, 0.35));
}

/* NOTA legal */
.aero-estimador-result-note {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
}
@media (min-width: 700px) {
  .aero-estimador-form {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
  }
  .aero-estimador-field { flex: 1; }
}
/* Móvil: botón calcular centrado y ancho completo */
@media (max-width: 699px) {
  #est-calcular {
    width: 100%;
    align-self: stretch;
    justify-content: center;
  }
}

/* ── VENTAJAS AEROPUERTO (grid de 6) ── */
#porque-aero { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #porque-aero { padding: 5.5rem 0; } }

.aero-ventajas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .aero-ventajas-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .aero-ventajas-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.aero-ventaja {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.aero-ventaja:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.aero-ventaja-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.aero-ventaja-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.aero-ventaja h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aero-ventaja p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── CÓMO FUNCIONA (4 pasos) ── */
#como-funciona { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #como-funciona { padding: 5.5rem 0; } }

.aero-pasos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  counter-reset: paso;
}
@media (min-width: 600px) {
  .aero-pasos { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .aero-pasos { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.aero-paso {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  position: relative;
}
.aero-paso-num {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.aero-paso h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.aero-paso p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}
.aero-paso a { color: var(--yellow); transition: opacity var(--transition); }
.aero-paso a:hover { opacity: 0.8; }

/* ── GALERÍA AEROPUERTO ── */
#galeria-aero { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #galeria-aero { padding: 5.5rem 0; } }

.aero-galeria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .aero-galeria { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.aero-gal-item {
  aspect-ratio: 3/2;
  border: none;
  padding: 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.aero-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.aero-gal-item:hover img { transform: scale(1.05); }
.aero-gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

/* ── CTA BANNER AEROPUERTO ── */
#cta-banner-aero {
  background: var(--yellow);
  padding: 2.5rem 0;
}
#cta-banner-aero .cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#cta-banner-aero h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}
#cta-banner-aero p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.25rem;
}
#cta-banner-aero .cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  #cta-banner-aero .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #cta-banner-aero .cta-banner-btns {
    flex-direction: row;
  }
}

/* ── TESTIMONIOS AEROPUERTO (reutiliza estilos base) ── */
#testimonios-aero { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #testimonios-aero { padding: 5.5rem 0; } }

/* ── MAPA ── */
#mapa-aero { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #mapa-aero { padding: 5.5rem 0; } }

.aero-mapa-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-height: 500px;
}
.aero-mapa-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) invert(85%) contrast(90%);
}

/* ── ENLACES INTERNOS ── */
.aero-enlaces-internos { margin-top: 3rem; }
.aero-enlaces-internos h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
}
.aero-enlaces-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .aero-enlaces-grid { grid-template-columns: repeat(3, 1fr); }
}
.aero-enlace-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: border-color var(--transition), transform var(--transition);
}
.aero-enlace-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-2px);
}
.aero-enlace-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.aero-enlace-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.aero-enlace-card span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── LIGHTBOX ── */
.aero-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.aero-lightbox.open {
  display: flex;
}
.aero-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.aero-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.aero-lightbox-close:hover {
  background: var(--yellow-dark);
  transform: scale(1.05);
}

/* ══════════════════════════════════════════════════════════════
   PÁGINA EMPRESAS — Estilos específicos
   ══════════════════════════════════════════════════════════════ */

/* ── HERO EMPRESAS ── */
.hero-bg-empresas {
  background-image: url('../images/empresas/hero-empresas.jpg') !important;
  background-position: center 55% !important;
}
@media (min-width: 900px) {
  .hero-bg-empresas {
    background-position: center 50% !important;
  }
}

/* ── SEGMENTOS (3 tipos de cliente: hoteles, oficinas, industrial) ── */
#segmentos { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #segmentos { padding: 5.5rem 0; } }

.emp-segmentos {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .emp-segmentos { gap: 3.5rem; }
}

.emp-segmento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 900px) {
  .emp-segmento {
    grid-template-columns: 5fr 6fr;
    gap: 0;
    align-items: stretch;
  }
  .emp-segmento-reverse .emp-segmento-img { order: 2; }
  .emp-segmento-reverse .emp-segmento-body { order: 1; }
}

.emp-segmento-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
@media (min-width: 900px) {
  .emp-segmento-img {
    aspect-ratio: auto;
    min-height: 320px;
  }
}
.emp-segmento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.emp-segmento-body {
  padding: 1.5rem;
}
@media (min-width: 900px) {
  .emp-segmento-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.emp-segmento-tag {
  display: inline-block;
  background: var(--yellow-soft);
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.emp-segmento-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  color: var(--white);
}
.emp-segmento-body p {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.emp-segmento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.emp-segmento-list li {
  font-size: 0.88rem;
  color: var(--gray-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.emp-segmento-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.emp-segmentos-cta {
  margin-top: 3rem;
  padding: 1.75rem 1.5rem;
  background: var(--card);
  border: 1px dashed rgba(245, 197, 24, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.emp-segmentos-cta p {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin: 0;
}
@media (min-width: 700px) {
  .emp-segmentos-cta {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.5rem 2rem;
  }
}

/* ── EBOOKING + FACTURACIÓN (2 bloques grandes) ── */
#ebooking { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #ebooking { padding: 5.5rem 0; } }

.emp-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .emp-tools { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}

.emp-tool {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.emp-tool-highlight {
  border-color: rgba(245, 197, 24, 0.35);
  background: linear-gradient(180deg, var(--card) 0%, rgba(245,197,24,0.03) 100%);
}

.emp-tool-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.emp-tool-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-tool-icon svg { width: 28px; height: 28px; color: var(--yellow); }

.emp-tool-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}
.emp-tool h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.emp-tool-intro {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.emp-tool-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.emp-tool-list li {
  font-size: 0.9rem;
  color: var(--gray-light);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}
.emp-tool-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
}
.emp-tool-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.emp-tool-footer strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.3px;
}

/* ── VENTAJAS EMPRESA (reutiliza estilo aero-ventajas) ── */
#ventajas-emp { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #ventajas-emp { padding: 5.5rem 0; } }
.emp-ventajas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .emp-ventajas { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .emp-ventajas { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.emp-ventaja {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.emp-ventaja:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.emp-ventaja-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.emp-ventaja-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.emp-ventaja h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.emp-ventaja p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── CÓMO FUNCIONA EMPRESAS (reutiliza aero-pasos) ── */
#como-emp { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #como-emp { padding: 5.5rem 0; } }

/* ── GALERÍA EMPRESAS ── */
#galeria-emp { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #galeria-emp { padding: 5.5rem 0; } }

/* ── CTA BANNER EMPRESAS ── */
#cta-banner-emp {
  background: var(--yellow);
  padding: 2.5rem 0;
}
#cta-banner-emp .cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#cta-banner-emp h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}
#cta-banner-emp p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 0.35rem;
}
#cta-banner-emp .cta-banner-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  #cta-banner-emp .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #cta-banner-emp .cta-banner-btns {
    flex-direction: row;
  }
}

/* ── TESTIMONIOS EMPRESAS ── */
#testimonios-emp { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #testimonios-emp { padding: 5.5rem 0; } }

/* ── ENLACES EMPRESAS ── */
#enlaces-emp { background: var(--dark); padding: 3rem 0 4rem; }

/* ── FORM INFO EMPRESA — Feature list profesional ── */
.emp-info-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.emp-info-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.emp-info-feature:hover {
  border-color: rgba(245, 197, 24, 0.25);
  background: rgba(245, 197, 24, 0.03);
}
.emp-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--yellow-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}
.emp-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.emp-info-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.emp-info-text span {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   PÁGINA TARIFAS — Estilos específicos
   ══════════════════════════════════════════════════════════════ */

/* ── HERO SIN IMAGEN — Diseño profesional 'gold mesh' ── */
#hero-tarifas {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 3rem;
  overflow: hidden;
  background: #050505;
}
@media (min-width: 600px) {
  #hero-tarifas { min-height: 520px; padding-top: 100px; }
}
@media (min-width: 900px) {
  #hero-tarifas { min-height: 580px; padding-top: 76px; padding-bottom: 4rem; }
}

/* Título — adaptativo al layout 2 columnas */
.tarifa-hero-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.05;
}
@media (min-width: 900px) {
  .tarifa-hero-title { font-size: clamp(2.8rem, 4.8vw, 4rem); }
}
@media (min-width: 1200px) {
  .tarifa-hero-title { font-size: 4.2rem; }
}

/* Capa 1: Mesh gradient profesional con puntos de luz verde (atmósfera) +
   parte inferior más oscura para contraste con secciones siguientes */
.tarifa-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 12% 18%, rgba(34, 197, 94, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 88% 28%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 35%, #050505 75%, #000000 100%);
  z-index: 0;
}

/* Capa 2: Líneas diagonales sutiles (sensación de velocidad/movimiento) */
.tarifa-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.tarifa-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.tarifa-shape-1 {
  width: 450px;
  height: 450px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28) 0%, transparent 65%);
  opacity: 0.7;
}
.tarifa-shape-2 {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -80px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.20) 0%, transparent 65%);
  opacity: 0.55;
}
.tarifa-shape-3 {
  width: 240px;
  height: 240px;
  top: 55%;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  opacity: 0.8;
}

/* Capa 3: Grid técnico sutil + línea de brillo superior */
.tarifa-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
}
/* Línea superior sutil tipo "spotlight" en verde */
#hero-tarifas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.45), transparent);
  z-index: 3;
}
/* Sin glow inferior — la parte de abajo se mantiene oscura para contraste */

/* Contenido hero */
.tarifa-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

/* ── HERO LAYOUT 2 COLUMNAS (texto izq + logo dcha) ── */
.tarifa-hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .tarifa-hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
  .tarifa-hero-content {
    flex: 1 1 60%;
    max-width: 640px;
  }
  .tarifa-hero-logo {
    flex: 0 0 auto;
  }
}

/* ── LOGO HERO — Imagen 878x1136 (ratio vertical ~3:4) ── */
.tarifa-hero-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Animación sutil de flotación */
  animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.tarifa-hero-logo img {
  position: relative;
  z-index: 2;
  /* Altura controlada por viewport, ancho automático mantiene proporción 878:1136 */
  width: auto;
  height: 280px;          /* Móvil */
  max-width: 100%;
  /* Doble drop-shadow amarillo para efecto glow profesional */
  filter: drop-shadow(0 10px 30px rgba(245, 197, 24, 0.4))
          drop-shadow(0 0 25px rgba(245, 197, 24, 0.25));
}
@media (min-width: 600px) {
  .tarifa-hero-logo img { height: 340px; }   /* Tablet */
}
@media (min-width: 900px) {
  .tarifa-hero-logo img { height: 400px; }   /* Desktop */
}
@media (min-width: 1100px) {
  .tarifa-hero-logo img { height: 460px; }   /* Desktop grande */
}
@media (min-width: 1400px) {
  .tarifa-hero-logo img { height: 500px; }   /* XL */
}

/* Halo amarillo radial detrás del logo — escalado al nuevo tamaño */
.tarifa-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.28) 0%, transparent 60%);
  filter: blur(45px);
  z-index: 1;
  animation: logo-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@media (min-width: 900px) {
  .tarifa-logo-glow { width: 480px; height: 480px; }
}
@keyframes logo-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

/* En móvil/tablet, ajustar título responsive */
@media (max-width: 899px) {
  .tarifa-hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .tarifa-hero-content { text-align: center; }
  .tarifa-hero-content .hero-badge { margin-left: auto; margin-right: auto; }
  .tarifa-hero-content .hero-btns { justify-content: center; }
  .tarifa-hero-stats { justify-content: center; }
}

/* Stats hero tarifas (sin separador superior — diseño limpio) */
.tarifa-hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 700px) {
  .tarifa-hero-stats { justify-content: flex-start; gap: 2.75rem; }
}
.tarifa-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.tarifa-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ── CÓMO SE CALCULA ── */
#como-calcula { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #como-calcula { padding: 5.5rem 0; } }

.tarifa-componentes {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .tarifa-componentes { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.tarifa-comp {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.tarifa-comp:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.tarifa-comp-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.tarifa-comp-icon svg { width: 26px; height: 26px; color: var(--yellow); }
.tarifa-comp h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.tarifa-comp-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.tarifa-comp p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Suplementos oficiales */
.tarifa-suplementos {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
}
.tarifa-sup-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
  text-align: center;
}
.tarifa-sup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .tarifa-sup-grid { grid-template-columns: 1fr 1fr; }
}
.tarifa-sup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}
.tarifa-sup-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.tarifa-sup strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.tarifa-sup span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-light);
}
.tarifa-sup-origen {
  display: inline-block;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--yellow);
  background: var(--yellow-soft);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  margin-left: 0.35rem;
  letter-spacing: 0.3px;
  text-transform: lowercase;
}
.tarifa-sup-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(245, 197, 24, 0.4);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.tarifa-sup-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.tarifa-sup-link:hover {
  color: var(--yellow-dark);
  text-decoration-color: var(--yellow);
}
.tarifa-sup-nota {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.55;
  border-left: 3px solid var(--yellow);
  background: rgba(245, 197, 24, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.tarifa-sup-nota strong { color: var(--yellow); }

/* ── ESTIMADOR / CALCULADORA ── */
#estimador { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #estimador { padding: 5.5rem 0; } }

.calc-wrap {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .calc-wrap { grid-template-columns: 1.2fr 1fr; gap: 2rem; }
}

.calc-form {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.calc-field { display: flex; flex-direction: column; }
.calc-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.calc-field select {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23aaa' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 11px;
  padding-right: 2.5rem;
  transition: border-color var(--transition);
}
.calc-field select:focus { border-color: var(--yellow); }
.calc-btn {
  margin-top: 0.5rem;
  justify-content: center;
}

/* RESULTADO del cálculo */
.calc-result {
  background: linear-gradient(180deg, var(--card) 0%, rgba(245,197,24,0.04) 100%);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}
.calc-result-placeholder {
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.calc-result-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(245, 197, 24, 0.3);
}
.calc-result-placeholder p {
  font-size: 0.9rem;
  max-width: 220px;
  line-height: 1.5;
}

/* Spinner calculando */
.calc-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gray-light);
}
.calc-spinner-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(245, 197, 24, 0.15);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: calc-spin 0.8s linear infinite;
}
@keyframes calc-spin {
  to { transform: rotate(360deg); }
}

/* Resultado final */
.calc-result-final { animation: calc-fade-in 0.4s ease; }
@keyframes calc-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.calc-result-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.calc-result-value {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.calc-result-tarifa {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--yellow);
  background: var(--yellow-soft);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.calc-result-note {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.calc-result-note strong { color: var(--white); font-weight: 600; }

.calc-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}
.calc-result-cta:hover { background: var(--yellow-dark); }

.calc-result-error {
  color: #ef4444;
  font-size: 0.9rem;
}

/* ── RANGOS DE PRECIO ── */
#rangos { background: var(--dark); padding: 4.5rem 0; }
@media (min-width: 900px) { #rangos { padding: 5.5rem 0; } }

.rango-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .rango-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .rango-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.rango-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.rango-card:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.rango-destacado {
  border-color: rgba(245, 197, 24, 0.4);
  background: linear-gradient(180deg, var(--card) 0%, rgba(245,197,24,0.03) 100%);
}
.rango-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.rango-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  display: inline-block;  /* necesario para que transform funcione en emoji */
}
.rango-icon--flip {
  transform: scaleX(-1);  /* gira el avión → punta a la izquierda (T2) */
}
.rango-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.rango-precio {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.rango-precio span {
  display: inline-block;
  margin: 0 0.25rem;
  color: rgba(245, 197, 24, 0.6);
  font-weight: 400;
}
.rango-info {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Aviso legal */
.rango-legal {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rango-legal svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.rango-legal p {
  font-size: 0.87rem;
  color: var(--gray-light);
  line-height: 1.55;
  margin: 0;
}
.rango-legal strong { color: var(--white); }

/* ── CONFIANZA ── */
#confianza { background: var(--black); padding: 4.5rem 0; }
@media (min-width: 900px) { #confianza { padding: 5.5rem 0; } }

.confianza-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .confianza-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .confianza-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.confianza-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.confianza-item:hover {
  border-color: rgba(245, 197, 24, 0.4);
  transform: translateY(-3px);
}
.confianza-icon {
  width: 46px;
  height: 46px;
  background: var(--yellow-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.confianza-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.confianza-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.confianza-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── CTA banner tarifas ── */
#cta-banner-tarifas {
  background: var(--yellow);
  padding: 2.5rem 0;
}
#cta-banner-tarifas .cta-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#cta-banner-tarifas h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
}
#cta-banner-tarifas p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 0.35rem;
}
#cta-banner-tarifas .cta-banner-btns {
  display: flex; flex-direction: column; gap: 0.75rem;
}
@media (min-width: 900px) {
  #cta-banner-tarifas .cta-banner-inner {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
  #cta-banner-tarifas .cta-banner-btns { flex-direction: row; }
}

/* ── Enlaces tarifas ── */
#enlaces-tarifas { background: var(--dark); padding: 3rem 0 4rem; }


/* ═══════════════════════════════════════════════════════════════
   PÁGINA SERVICIOS — diseño profesional, mobile-first
   Patrón hero 2 columnas reutilizado de Tarifas pero con paleta
   azul-amarillo en lugar de verde para diferenciar.
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO SERVICIOS ─────────────────────────────────────── */
.serv-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  isolation: isolate;
}

/* Capa 1: Mesh gradient con luces azul-amarillo + parte inferior oscura */
.serv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 12% 20%, rgba(96, 165, 250, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 88% 30%, rgba(245, 197, 24, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 35%, #060606 75%, #000000 100%);
  z-index: 0;
}
/* Capa 2: blobs blur */
.serv-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}
.serv-hero-shape-1 {
  width: 440px;
  height: 440px;
  top: -130px;
  right: -90px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.22) 0%, transparent 65%);
  opacity: 0.7;
}
.serv-hero-shape-2 {
  width: 320px;
  height: 320px;
  top: 6%;
  left: -70px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.20) 0%, transparent 65%);
  opacity: 0.6;
}
/* Capa 3: grid técnico sutil */
.serv-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 85%);
}
/* Línea spotlight superior */
#hero-servicios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.4), transparent);
  z-index: 3;
}

/* Container hero servicios */
.serv-hero-container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

/* Contenido (col izq) */
.serv-hero-content {
  max-width: 720px;
  width: 100%;
}

/* Badge superior */
.serv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.serv-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: serv-pulse 2s ease-in-out infinite;
}
@keyframes serv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Título hero */
.serv-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

/* Subtítulo hero */
.serv-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 2rem;
}

/* Botones CTA hero */
.serv-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2.25rem;
}

/* Mini-badges hero */
.serv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
}
.serv-hero-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.serv-hero-mini svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* COL DCHA: logo con halo */
.serv-hero-logo-wrap {
  position: relative;
  width: clamp(180px, 50vw, 280px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.serv-hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.30) 0%, transparent 60%);
  filter: blur(30px);
  z-index: -1;
  animation: serv-logo-pulse 3s ease-in-out infinite;
}
@keyframes serv-logo-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.serv-hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(245, 197, 24, 0.20));
  animation: serv-logo-float 4s ease-in-out infinite;
}
@keyframes serv-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Desktop: hero 2 columnas */
@media (min-width: 900px) {
  .serv-hero {
    min-height: 620px;
  }
  .serv-hero-container {
    flex-direction: row;
    text-align: left;
    gap: 4rem;
    justify-content: space-between;
  }
  .serv-hero-content {
    flex: 1;
    max-width: none;
  }
  .serv-hero-cta,
  .serv-hero-badges {
    justify-content: flex-start;
  }
  .serv-hero-logo-wrap {
    width: 320px;
  }
}

/* ─── INTRO SEO ─────────────────────────────────────── */
#serv-intro {
  padding: 4rem 0 2.5rem;
  background: var(--dark);
}
.serv-intro-container {
  max-width: 820px;
  text-align: center;
}
.serv-intro-text {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
  text-align: left;
}
.serv-intro-text:first-of-type {
  margin-top: 1.5rem;
}
.serv-intro-text strong {
  color: var(--white);
  font-weight: 600;
}
.serv-intro-link {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 197, 24, 0.4);
  transition: border-color 0.2s ease;
}
.serv-intro-link:hover {
  border-bottom-color: var(--yellow);
}

/* ─── GRID DE SERVICIOS ─────────────────────────────────────── */
#servicios-grid {
  padding: 3rem 0 5rem;
  background: var(--dark);
}
.serv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .serv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .serv-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

/* Card servicio */
.serv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s, box-shadow 0.35s;
  isolation: isolate;
}
/* Halo radial al hover */
.serv-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(245, 197, 24, 0.4) 0%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.serv-card:hover,
.serv-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.30);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(245, 197, 24, 0.1);
}
.serv-card:hover::before,
.serv-card:focus-visible::before {
  opacity: 1;
}
a.serv-card { cursor: pointer; }

/* Card destacada */
.serv-card-featured {
  background: linear-gradient(180deg, #1c1a12 0%, #161410 100%);
  border-color: rgba(245, 197, 24, 0.18);
}

/* Tag superior derecho */
.serv-card-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

/* Icono */
.serv-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.12) 0%, rgba(245, 197, 24, 0.04) 100%);
  border: 1px solid rgba(245, 197, 24, 0.20);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.serv-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--yellow);
}

/* Título card */
.serv-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 0.85rem;
}

/* Descripción card */
.serv-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.serv-card p strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* Link card */
.serv-card-link {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--yellow);
  margin-top: auto;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.serv-card:hover .serv-card-link {
  transform: translateX(4px);
}

/* ─── BLOQUE ¿POR QUÉ ELEGIR? ─────────────────────────────────────── */
#serv-porque {
  padding: 5rem 0;
  background: var(--black);
  position: relative;
}
#serv-porque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.15), transparent);
}

.serv-porque-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .serv-porque-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .serv-porque-text { flex: 1.1; }
  .serv-porque-img { flex: 1; }
}

.serv-porque-intro {
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 1rem 0 2rem;
}

.serv-porque-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.serv-porque-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.serv-porque-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 10px;
}
.serv-porque-icon svg {
  width: 20px;
  height: 20px;
  color: var(--yellow);
}
.serv-porque-list li > div { flex: 1; }
.serv-porque-list strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.serv-porque-list span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

/* Imagen porqué */
.serv-porque-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
  aspect-ratio: 836 / 403;
}
.serv-porque-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.serv-porque-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.serv-porque-img-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(245, 197, 24, 0.95);
  color: #0a0a0a;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ─── CÓMO FUNCIONA — 4 PASOS ─────────────────────────────────────── */
#serv-como {
  padding: 5rem 0;
  background: var(--dark);
}
.serv-pasos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .serv-pasos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .serv-pasos { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.serv-paso {
  position: relative;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  overflow: hidden;
}
.serv-paso-num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(245, 197, 24, 0.12);
  pointer-events: none;
}
.serv-paso-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.serv-paso-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}
.serv-paso h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 0.65rem;
}
.serv-paso p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}
.serv-paso p strong { color: var(--yellow); }

/* ─── BLOQUE CONFIANZA (con imagen 5) ─────────────────────────────────────── */
#serv-confianza {
  padding: 5rem 0;
  background: var(--black);
  position: relative;
}
.serv-confianza-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .serv-confianza-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .serv-confianza-img-wrap { flex: 0.9; max-width: 450px; }
  .serv-confianza-text { flex: 1.1; }

  /* Barra superior: misma longitud que la inferior, anclada a esquina superior derecha */
  .serv-confianza-img-wrap::before { width: 62%; right: 0; left: auto; }
}

/* ── Wrapper: contiene imagen + barras decorativas amarillas ── */
.serv-confianza-img-wrap {
  position: relative;
  padding: 1.1rem 0;        /* espacio vertical para que las barras no se corten */
}

/* Tablet: imagen centrada (el layout aún es columna apilada) */
@media (min-width: 600px) and (max-width: 899px) {
  .serv-confianza-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* Barra amarilla — superior derecha */
.serv-confianza-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 14px;
  background: var(--yellow);
  transform: skewX(-15deg);
  transform-origin: right center;
}

/* Barra amarilla — inferior izquierda */
.serv-confianza-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 14px;
  background: var(--yellow);
  transform: skewX(-15deg);
  transform-origin: left center;
}

.serv-confianza-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
  aspect-ratio: 3 / 4;
  max-height: 600px;
}
.serv-confianza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.serv-confianza-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
}
.serv-confianza-text p strong {
  color: var(--white);
  font-weight: 600;
}

.serv-confianza-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.serv-confianza-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.serv-confianza-stat span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

/* ─── CTA BANNER ─────────────────────────────────────── */
#serv-cta {
  padding: 4rem 0;
  background: var(--dark);
}
.serv-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(245, 197, 24, 0.35);
  position: relative;
  overflow: hidden;
}
.serv-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.serv-cta-content {
  position: relative;
  z-index: 1;
}
.serv-cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
  color: #0a0a0a;
  margin: 0 0 0.75rem;
}
.serv-cta-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.85);
  margin: 0;
  max-width: 600px;
}
.serv-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* Colores de botón CTA → gestionados por el bloque compartido .xxx-cta-banner */
@media (min-width: 768px) {
  .serv-cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }
  .serv-cta-content { flex: 1; }
}

/* ─── FAQ SERVICIOS — reutiliza .faq-layout ───────────────── */
#serv-faq {
  padding: 5rem 0 4rem;
  background: var(--dark);
}

/* ─── INTERLINKING ─────────────────────────────────────── */
.serv-interlink {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.serv-interlink h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  text-align: center;
  margin: 0 0 1.75rem;
}
.serv-interlink-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card horizontal: icono izquierda, texto derecha — fina y rectangular */
.serv-interlink-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  /* Ancho por breakpoint */
  flex: 0 0 calc(50% - 0.35rem);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}
@media (min-width: 600px) {
  .serv-interlink-card { flex: 0 0 calc(33.333% - 0.47rem); }
}
@media (min-width: 1200px) {
  .serv-interlink-card { flex: 0 0 calc(16.666% - 0.6rem); }
}

/* Línea superior animada al hover */
.serv-interlink-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.serv-interlink-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(245, 197, 24, 0.1);
  background: linear-gradient(180deg, #1c1a14 0%, #161410 100%);
}
.serv-interlink-card:hover::before { transform: scaleX(1); }

/* Icono */
.serv-interlink-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.65rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.serv-interlink-card:hover .serv-interlink-icon { transform: scale(1.12); }

/* Texto */
.serv-interlink-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.serv-interlink-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.serv-interlink-card:hover strong { color: var(--yellow); }

.serv-interlink-card span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
  .serv-interlink-grid { grid-template-columns: repeat(6, 1fr); gap: 0.7rem; }
}

/* Card horizontal: icono izquierda, texto derecha */
.serv-interlink-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
}
/* Línea superior animada que aparece en hover */
.serv-interlink-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.serv-interlink-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 197, 24, 0.35);
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(245, 197, 24, 0.1);
  background: linear-gradient(180deg, #1c1a14 0%, #161410 100%);
}
.serv-interlink-card:hover::before { transform: scaleX(1); }

/* Icono — emoji directo, sin círculo, más sobrio y visible */
.serv-interlink-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1.85rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.serv-interlink-card:hover .serv-interlink-icon {
  transform: scale(1.12);
}

.serv-interlink-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.serv-interlink-card strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.serv-interlink-card:hover strong { color: var(--yellow); }

.serv-interlink-card span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}



/* ═══════════════════════════════════════════════════════════════
   PÁGINA CONTACTO (Reservas) — minimalista, conversión primero
   Hero híbrido + 3 cards rápidas + form + confianza + mapa NAP
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO CONTACTO ─────────────────────────────────────── */
.cont-hero {
  position: relative;
  padding: 5.5rem 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
}
.cont-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.055) 1.5px, transparent 1.5px),
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(245, 197, 24, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(245, 197, 24, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
  background-size: 22px 22px, auto, auto, auto;
  z-index: 0;
}
.cont-hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Imagen circular logo teléfono */
.cont-hero-logo-wrap {
  position: relative;
  width: clamp(180px, 38vw, 240px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cont-hero-logo-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.40) 0%, transparent 65%);
  filter: blur(35px);
  z-index: -1;
  animation: cont-pulse 3s ease-in-out infinite;
}
@keyframes cont-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.cont-hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(245, 197, 24, 0.25));
}

/* Texto hero */
.cont-hero-content { max-width: 600px; }
.cont-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 1rem;
}
.cont-hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: cont-blink 1.5s ease-in-out infinite;
}
@keyframes cont-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.cont-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.cont-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.75rem;
}

/* CTAs hero (la llamada destaca como principal) */
.cont-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.cont-cta-call {
  padding: 0.85rem 1.5rem !important;
  font-size: 1.05rem !important;
  flex: 1 1 auto;
  min-width: 200px;
}
.cont-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.cont-cta-label { font-size: 0.78rem; font-weight: 600; opacity: 0.8; letter-spacing: 0.04em; }
.cont-cta-phone { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.cont-cta-form {
  flex: 1 1 auto;
  min-width: 180px;
}

/* Mini-badges hero */
.cont-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}
.cont-hero-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.cont-hero-mini svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* Desktop: hero 2 columnas (logo izq, texto dcha) */
@media (min-width: 768px) {
  .cont-hero { padding: 5.5rem 0 4.5rem; }
  .cont-hero-container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }
  .cont-hero-cta,
  .cont-hero-badges {
    justify-content: flex-start;
  }
  .cont-cta-call,
  .cont-cta-form {
    flex: 0 1 auto;
  }
}

/* ─── CONTACTO RÁPIDO — 3 cards ─────────────────────────────────────── */
#contacto-rapido {
  padding: 0 0 4rem;
  background: var(--dark);
}
#contacto-rapido .container { padding-top: 0; }

.cont-rapido-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cont-rapido-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.cont-rapido-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cont-rapido-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.30);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}
a.cont-rapido-card { cursor: pointer; }

/* Card destacada (teléfono) */
.cont-rapido-featured {
  background: linear-gradient(180deg, #1c1a12 0%, #161410 100%);
  border-color: rgba(245, 197, 24, 0.25);
}
.cont-rapido-featured:hover {
  border-color: rgba(245, 197, 24, 0.5);
  box-shadow: 0 20px 40px -10px rgba(245, 197, 24, 0.18);
}

.cont-rapido-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 12px;
  margin-bottom: 1.15rem;
}
.cont-rapido-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow);
}

.cont-rapido-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.cont-rapido-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.cont-rapido-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
}

/* Bloque teléfonos en card destacada */
.cont-rapido-phones {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cont-rapido-phone-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.01em;
}
.cont-rapido-phone-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}
.cont-rapido-phone-secondary {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
}

/* Meta de las otras cards */
.cont-rapido-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cont-rapido-meta strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
}
.cont-rapido-meta span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}
.cont-rapido-email {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
  text-decoration: none;
  word-break: break-all;
}
.cont-rapido-email:hover { text-decoration: underline; }

/* ─── FORMULARIO RESERVA — refuerzos sobre .reserva-form base ─────── */
#reserva-form { padding: 4rem 0; background: var(--black); }
#reserva-form .section-title { text-align: center; }
#reserva-form .section-sub { text-align: center; }

/* Contenedor del formulario (caja oscura con sombra) */
.form-box {
  background: linear-gradient(180deg, #161616 0%, #121212 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.7);
}

/* Form base */
.reserva-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Campo individual — label arriba, input debajo, gap claro */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.825rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Inputs / select / textarea — diseño premium */
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="datetime-local"],
.form-field select,
.form-field textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1.5px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  font-weight: 500;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--yellow);
  background: #0c0c0c;
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.10);
}
.form-field input:invalid:not(:placeholder-shown):not(:focus):not([type="date"]):not([type="time"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]) {
  border-color: rgba(239, 68, 68, 0.5);
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  font-family: 'Barlow', sans-serif;
}

/* Select — chevron amarillo personalizado */
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23F5C518' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-field select option {
  background: #0a0a0a;
  color: var(--white);
}

/* Datetime-local — fix calendario picker icono blanco */
.form-field input[type="datetime-local"] {
  color-scheme: dark;
  cursor: pointer;
}
.form-field input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(85%) sepia(36%) saturate(1450%) hue-rotate(0deg) brightness(1.05);
  cursor: pointer;
  opacity: 0.85;
}

/* Row de 2 columnas — móvil apilado, desktop lado a lado */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Checkbox de privacidad — diseño custom */
.form-checkbox {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-top: 0.25rem;
}
.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--yellow);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
  font-weight: 400 !important;
}
.form-checkbox label a {
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 197, 24, 0.4);
}
.form-checkbox label a:hover { border-bottom-color: var(--yellow); }

/* Botón submit — más grande y prominente */
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1.05rem 1.5rem !important;
  font-size: 1.05rem !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -8px rgba(245, 197, 24, 0.4);
}
.form-submit:active { transform: translateY(0); }

/* Sidebar info izquierdo */
.form-info {
  padding: 1.5rem 0.5rem;
}
.form-info > h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.form-info > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* ─── PASOS "¿Cómo funciona?" — diseño timeline elegante ─── */
/* SOLO se aplica a listas que contengan círculos numerados (.form-info-num).
   Listas planas en otras páginas (index.php) no se ven afectadas. */

/* Reset del UL para evitar bullets nativos y conflictos heredados */
.form-info > ul:has(.form-info-num) {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
}

/* Línea vertical que conecta los círculos (timeline) */
.form-info > ul:has(.form-info-num)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(245, 197, 24, 0.5) 0%,
    rgba(245, 197, 24, 0.25) 50%,
    rgba(245, 197, 24, 0.05) 100%);
  z-index: 0;
}

/* Neutraliza el bulletpoint amarillo legacy de .form-info li::before
   solo en items que contienen círculo numerado */
.form-info > ul:has(.form-info-num) > li::before {
  content: none !important;
  display: none !important;
}

/* Cada item del timeline */
.form-info > ul:has(.form-info-num) > li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Círculo numerado — protagonista, más grande y nítido */
.form-info-num {
  /* Reset crítico para evitar herencia */
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* Diseño */
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: #0a0a0a;
  border-radius: 50%;

  /* Tipografía del NÚMERO (mayor especificidad para vencer reglas heredadas) */
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  text-align: center;

  /* Profundidad y brillo */
  box-shadow:
    0 6px 16px -4px rgba(245, 197, 24, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15);

  /* Anillo decorativo amarillo difuso alrededor */
  position: relative;
}
.form-info-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(3px);
}

/* Contenido al lado del círculo (título + descripción) */
.form-info > ul:has(.form-info-num) > li > div {
  flex: 1;
  padding-top: 0.4rem;
  min-width: 0;
}

/* Título del paso (selector específico para no chocar con span heredado) */
.form-info > ul:has(.form-info-num) > li > div > strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

/* Descripción del paso (selector específico) */
.form-info > ul:has(.form-info-num) > li > div > span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* Hover sutil — el círculo se eleva ligeramente */
.form-info > ul:has(.form-info-num) > li:hover .form-info-num {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 10px 22px -4px rgba(245, 197, 24, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}
.form-info-num {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.3s ease;
}

/* Caja CTA dentro de form-info */
.form-info-box {
  margin-top: 1.75rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.08) 0%, rgba(245, 197, 24, 0.03) 100%);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.form-info-box::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.15) 0%, transparent 70%);
  filter: blur(15px);
}
.form-info-box strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  position: relative;
}
.form-info-box p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.95rem;
  position: relative;
}
.form-info-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: -0.01em;
  position: relative;
  transition: all 0.2s ease;
}
.form-info-phone svg { width: 16px; height: 16px; }
.form-info-phone:hover {
  background: rgba(245, 197, 24, 0.18);
  border-color: rgba(245, 197, 24, 0.5);
  transform: translateY(-1px);
}

/* Logo decorativo de marca en sidebar — visible en todos los breakpoints */
.form-info-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  isolation: isolate;
  /* GPU-accelerated parallax: evita reflows y garantiza 60fps */
  will-change: transform;
  /* Suaviza los saltos entre frames con una transición muy corta */
  transition: transform 0.05s linear;
}
/* En móvil: desactiva will-change para no desperdiciar memoria */
@media (max-width: 899px) {
  .form-info-logo {
    will-change: auto;
    transition: none;
    transform: none !important;
  }
}
.form-info-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.20) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.form-info-logo img {
  /* Móvil: ~190px · Tablet: ~220px · Desktop sidebar: 240px (cabe en 320px) */
  width: clamp(180px, 32vw, 240px);
  height: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 12px 28px rgba(245, 197, 24, 0.20));
  animation: form-info-logo-float 5s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.form-info-logo img:hover {
  opacity: 1;
  transform: scale(1.03);
}
@keyframes form-info-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Móvil: márgenes ajustados para que respire entre form y logo */
@media (max-width: 899px) {
  .form-info-logo { margin-top: 2rem; margin-bottom: 0.5rem; }
}

/* Selector visual de pasajeros — premium */
.form-pasajeros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.form-pasajero-opt {
  cursor: pointer;
  position: relative;
  display: block;
}
.form-pasajero-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-pasajero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.1rem 0.5rem 1rem;
  background: #0a0a0a;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.form-pasajero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Icono taxi (envoltorio) — soporta tanto vista frontal cuadrada como lateral */
.form-pasajero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 52px;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
/* SVG (minivan lateral) — ocupa todo el ancho del wrapper */
.form-pasajero-icon svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  filter: saturate(0.4) brightness(0.7);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
/* Contenedor más ancho cuando contiene la minivan PNG (ratio 2.4:1) */
.form-pasajero-icon:has(.form-pasajero-img--minivan) {
  width: 88px; /* más ancho que los taxis (64px) */
  height: 48px;
  overflow: visible;
}

/* PNG (taxi front cuadrado) — más pequeño para no dominar visualmente */
.form-pasajero-img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(0.4) brightness(0.7);
  opacity: 0.75;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

/* Minivan PNG — más grande y sin fondo negro
   ratio 774:322 ≈ 2.4:1 — necesita más espacio horizontal */
.form-pasajero-img--minivan {
  height: 115%; /* ligeramente más alta que los taxis para compensar la proporción ancha */
  width: auto;
  /* Transparencia: background del padre debe ser transparent */
}

.form-pasajero-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.form-pasajero-card span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Hover */
.form-pasajero-opt:hover .form-pasajero-card {
  border-color: rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.03);
  transform: translateY(-2px);
}
.form-pasajero-opt:hover .form-pasajero-icon {
  color: rgba(245, 197, 24, 0.75);
  transform: scale(1.05);
}
.form-pasajero-opt:hover .form-pasajero-img,
.form-pasajero-opt:hover .form-pasajero-icon svg {
  filter: saturate(1) brightness(1);
  opacity: 1;
}

/* Selected (radio checked) */
.form-pasajero-opt input:checked + .form-pasajero-card {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.08);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12),
              0 8px 20px -8px rgba(245, 197, 24, 0.3);
}
.form-pasajero-opt input:checked + .form-pasajero-card::before {
  transform: scaleX(1);
}
.form-pasajero-opt input:checked + .form-pasajero-card .form-pasajero-icon {
  color: var(--yellow);
}
.form-pasajero-opt input:checked + .form-pasajero-card .form-pasajero-img,
.form-pasajero-opt input:checked + .form-pasajero-card .form-pasajero-icon svg {
  filter: saturate(1) brightness(1);
  opacity: 1;
}
.form-pasajero-opt input:checked + .form-pasajero-card strong {
  color: var(--yellow);
}
.form-pasajero-opt input:focus-visible + .form-pasajero-card {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* En móvil: cards más compactas */
@media (max-width: 480px) {
  .form-pasajeros { gap: 0.5rem; }
  .form-pasajero-card { padding: 0.85rem 0.35rem 0.75rem; }
  .form-pasajero-icon { width: 56px; height: 44px; }
  .form-pasajero-card strong { font-size: 1.2rem; }
  .form-pasajero-card span { font-size: 0.68rem; }
}

/* ─── Aviso informativo de disponibilidad minivan ─── */
.form-pasajeros-nota {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.95rem;
  background: rgba(245, 197, 24, 0.07);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-left: 3px solid rgba(245, 197, 24, 0.6);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.825rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.form-pasajeros-nota strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.form-pasajeros-nota-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  filter: saturate(1.2);
}

/* Cuando se selecciona la opción de 6 plazas → el aviso destaca */
.form-field:has(input[value*="5-6"]:checked) .form-pasajeros-nota {
  background: rgba(245, 197, 24, 0.13);
  border-color: rgba(245, 197, 24, 0.45);
  border-left-color: var(--yellow);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -6px rgba(245, 197, 24, 0.3);
}

/* Microcopy debajo del submit — chequecitos verdes inline */
.form-microcopy {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}
.form-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.form-microcopy svg {
  width: 14px;
  height: 14px;
  color: #22c55e;
  flex-shrink: 0;
}

/* Required mark */
.form-req { color: var(--yellow); }

/* ─── BLOQUE CONFIANZA — 4 items + stats ─────────────────────────── */
#cont-confianza { padding: 4.5rem 0; background: var(--dark); }
.cont-confianza-wrap { text-align: center; }
.cont-confianza-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
  text-align: left;
}
@media (min-width: 600px) {
  .cont-confianza-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .cont-confianza-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.cont-confianza-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.cont-confianza-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.30);
}
.cont-confianza-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.cont-confianza-icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
}
.cont-confianza-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.cont-confianza-item p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Stats de confianza */
.cont-confianza-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cont-confianza-stats > div {
  text-align: center;
}
.cont-confianza-stats strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cont-confianza-stats span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
}

/* ─── MAPA + NAP ─────────────────────────────────────── */
#cont-mapa { padding: 4.5rem 0; background: var(--black); }
.cont-mapa-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .cont-mapa-layout {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }
  .cont-mapa-info { flex: 0 0 360px; }
  .cont-mapa-embed { flex: 1; min-height: 420px; }
}

.cont-mapa-info {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}
.cont-mapa-nap { display: flex; flex-direction: column; gap: 1.35rem; }
.cont-mapa-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.cont-mapa-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 9px;
}
.cont-mapa-icon svg {
  width: 18px;
  height: 18px;
  color: var(--yellow);
}
.cont-mapa-row > div { flex: 1; min-width: 0; }
.cont-mapa-row strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.cont-mapa-row span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.cont-mapa-link {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 197, 24, 0.3);
  transition: border-color 0.2s ease;
}
.cont-mapa-link:hover { border-bottom-color: var(--yellow); }
.cont-mapa-link-sec {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.cont-mapa-link-sec:hover { border-bottom-color: rgba(255, 255, 255, 0.6); }

/* Embed Google Maps */
.cont-mapa-embed {
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card);
}
.cont-mapa-embed iframe { display: block; width: 100%; height: 100%; min-height: 320px; }

/* ─── FAQ CONTACTO + CTA FINAL — usan estilos existentes ─────────── */
#cont-faq { padding: 4.5rem 0 4rem; background: var(--dark); }
#cont-cta { padding: 3.5rem 0 4.5rem; background: var(--black); }



/* ═══════════════════════════════════════════════════════════════
   PÁGINA QUIÉNES SOMOS — diseño elegante, humano, E-E-A-T
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO QUIÉNES SOMOS ─────────────────────────────────────── */
.qs-hero {
  position: relative;
  padding: 4rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}
.qs-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.055) 1.5px, transparent 1.5px),
    radial-gradient(ellipse 55% 50% at 25% 30%, rgba(245, 197, 24, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 80% 70%, rgba(245, 197, 24, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0e0e0e 100%);
  background-size: 22px 22px, auto, auto, auto;
  z-index: 0;
}
.qs-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}
.qs-hero-shape-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.18) 0%, transparent 65%);
  opacity: 0.6;
}
.qs-hero-shape-2 {
  width: 240px;
  height: 240px;
  bottom: -50px;
  left: -40px;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 65%);
  opacity: 0.5;
}

.qs-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.qs-hero-logo-wrap {
  position: relative;
  width: clamp(150px, 30vw, 200px);
  aspect-ratio: 878 / 1136;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  padding: 1.25rem;
}
.qs-hero-logo-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.30) 0%, transparent 60%);
  filter: blur(35px);
  z-index: -1;
  animation: qs-pulse 3s ease-in-out infinite;
}
@keyframes qs-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.qs-hero-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(245, 197, 24, 0.18));
}

.qs-hero-content { max-width: 620px; }
.qs-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.qs-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}
.qs-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

@media (min-width: 768px) {
  .qs-hero-container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }
}

/* ─── INTRO ─────────────────────────────────────── */
#qs-intro {
  padding: 4rem 0 2rem;
  background: var(--dark);
}
.qs-intro-container { max-width: 800px; text-align: center; }
.qs-intro-text {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 1.5rem 0 0;
  text-align: left;
}
.qs-intro-text strong { color: var(--white); font-weight: 600; }

/* ─── HISTORIA — 2 cols (texto + imagen) ─────────────────────── */
#qs-historia {
  padding: 4.5rem 0;
  background: var(--black);
}
.qs-historia-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.qs-historia-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 0;
}
.qs-historia-text p strong { color: var(--white); font-weight: 600; }
.qs-historia-text .section-label,
.qs-historia-text .section-title { text-align: left; }

.qs-historia-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.6);
  aspect-ratio: 1400 / 940;
}
.qs-historia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.qs-historia-img-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  padding: 0.85rem 1.15rem;
  background: rgba(245, 197, 24, 0.95);
  color: #0a0a0a;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.4);
}
.qs-historia-img-badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.qs-historia-img-badge span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

@media (min-width: 900px) {
  .qs-historia-layout {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .qs-historia-text { flex: 1.1; }
  .qs-historia-img { flex: 1; }
}

/* ─── FILOSOFÍA — 4 cards ─────────────────────────────────────── */
#qs-filosofia {
  padding: 4.5rem 0;
  background: var(--dark);
}
.qs-filosofia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) { .qs-filosofia-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .qs-filosofia-grid { grid-template-columns: repeat(4, 1fr); } }

.qs-filosofia-card {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.qs-filosofia-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.30);
}
.qs-filosofia-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 12px;
  margin-bottom: 1.15rem;
}
.qs-filosofia-icon svg { width: 24px; height: 24px; color: var(--yellow); }
.qs-filosofia-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 0.55rem;
}
.qs-filosofia-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ─── ZONA — 2 cols (imagen logo redondo + texto) ─────────────── */
#qs-zona {
  padding: 4.5rem 0;
  background: var(--black);
}
.qs-zona-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.qs-zona-img {
  position: relative;
  width: clamp(180px, 32vw, 260px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  flex-shrink: 0;
}
.qs-zona-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(245, 197, 24, 0.2));
}
.qs-zona-img-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.20) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
}
.qs-zona-text { flex: 1; }
.qs-zona-text .section-label,
.qs-zona-text .section-title { text-align: left; }
.qs-zona-text > p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 1.5rem;
}
.qs-zona-text > h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin: 1.5rem 0 1rem;
}
.qs-zona-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.qs-zona-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.4rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.qs-zona-list li:hover {
  background: rgba(245, 197, 24, 0.05);
  border-color: rgba(245, 197, 24, 0.25);
  transform: translateX(2px);
}
.qs-zona-list li::before {
  content: '';
  position: absolute;
  top: 0.95rem;
  left: 0.85rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 11px no-repeat,
    rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.3);
}
.qs-zona-list li strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 0.2rem;
}
.qs-zona-list li span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

@media (min-width: 900px) {
  .qs-zona-layout {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
}

/* ─── DIFERENCIA — 5 cards ─────────────────────────────────────── */
#qs-diferencia {
  padding: 4.5rem 0;
  background: var(--dark);
}

/* ─── BANNER VISUAL — imagen panorámica con caption ─── */
#qs-banner-img {
  padding: 0 0 4rem;
  background: var(--black);
}
.qs-banner-figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.7);
  aspect-ratio: 1200 / 480;
  isolation: isolate;
}
.qs-banner-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.qs-banner-figure:hover img { transform: scale(1.04); }

/* Overlay degradado para legibilidad del caption */
.qs-banner-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.0) 40%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.qs-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.75rem;
  z-index: 2;
  text-align: left;
}
.qs-banner-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--yellow);
  color: #0a0a0a;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.qs-banner-caption strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.005em;
  max-width: 560px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .qs-banner-caption { padding: 2.25rem 2.5rem; }
}

.qs-diferencia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) { .qs-diferencia-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .qs-diferencia-grid { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; } }

.qs-diferencia-item {
  padding: 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.qs-diferencia-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.30);
}
.qs-diferencia-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.qs-diferencia-icon svg { width: 22px; height: 22px; color: var(--yellow); }
.qs-diferencia-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin: 0 0 0.4rem;
}
.qs-diferencia-item p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ─── BLOQUE TAXI vs VTC ─────────────────────────────────────── */
#qs-vtc {
  padding: 4.5rem 0;
  background: var(--black);
  position: relative;
}
.qs-vtc-content {
  max-width: 880px;
  margin: 2rem auto 0;
}
.qs-vtc-content > p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
}
.qs-vtc-content > p strong { color: var(--white); font-weight: 600; }

/* Bloque "cuándo elegir cada opción" */
.qs-vtc-decision {
  margin: 2.5rem 0;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.04) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}
.qs-vtc-decision h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 0 1.25rem;
  text-align: center;
}
.qs-vtc-decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .qs-vtc-decision-grid { grid-template-columns: 1fr 1fr; }
}
.qs-vtc-decision-card {
  padding: 1.25rem 1.15rem;
  background: rgba(245, 197, 24, 0.06);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 12px;
}
.qs-vtc-decision-card-vtc {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.10);
}
.qs-vtc-decision-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  background: var(--yellow);
  color: #0a0a0a;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.qs-vtc-decision-card-vtc .qs-vtc-decision-tag {
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.85);
}
.qs-vtc-decision-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.qs-vtc-decision-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.qs-vtc-decision-card li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--yellow);
}
.qs-vtc-decision-card-vtc li::before {
  background: rgba(255, 255, 255, 0.4);
}
.qs-vtc-decision-card strong { color: var(--white); font-weight: 600; }

.qs-vtc-cierre {
  margin: 0 0 2rem !important;
  padding-top: 0.5rem;
}
.qs-vtc-cierre strong { color: var(--white); }

/* Botón abrir modal tabla */
.qs-vtc-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  background: rgba(245, 197, 24, 0.10);
  border: 1.5px solid rgba(245, 197, 24, 0.4);
  border-radius: 10px;
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.qs-vtc-modal-btn:hover {
  background: rgba(245, 197, 24, 0.18);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.qs-vtc-modal-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ─── MODAL TABLA COMPARATIVA ─────────────────────────────────────── */
.qs-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.qs-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.qs-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.qs-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid rgba(245, 197, 24, 0.3);
  border-radius: 18px;
  box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qs-modal[aria-hidden="false"] .qs-modal-dialog { transform: scale(1); }

.qs-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}
.qs-modal-close:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: rgba(245, 197, 24, 0.4);
  color: var(--yellow);
}

.qs-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 0 0.4rem;
  padding-right: 2.5rem;
  letter-spacing: -0.01em;
}
.qs-modal-subtitle {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.5rem;
}

.qs-modal-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.qs-modal-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
}
.qs-modal-table th,
.qs-modal-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.qs-modal-table thead th {
  background: rgba(245, 197, 24, 0.08);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(245, 197, 24, 0.2);
}
.qs-modal-table tbody th {
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  width: 30%;
}
.qs-modal-table tbody td {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}
.qs-modal-table tbody td:first-of-type {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.qs-modal-table tbody tr:last-child th,
.qs-modal-table tbody tr:last-child td { border-bottom: none; }

.qs-modal-note {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.qs-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .qs-modal-dialog { padding: 1.5rem 1.25rem 1.25rem; }
  .qs-modal-title { font-size: 1.25rem; }
  .qs-modal-actions { flex-direction: column; }
  .qs-modal-actions a, .qs-modal-actions button { width: 100%; justify-content: center; }
}

/* Bloquea scroll del body cuando el modal está abierto */
body.qs-modal-open { overflow: hidden; }

/* ─── CTA BANNER ─────────────────────────────────────── */
#qs-cta {
  padding: 4rem 0;
  background: var(--dark);
}
.qs-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(245, 197, 24, 0.35);
  position: relative;
  overflow: hidden;
}
.qs-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.qs-cta-content { position: relative; z-index: 1; }
.qs-cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.15;
  color: #0a0a0a;
  margin: 0 0 0.75rem;
}
.qs-cta-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.85);
  margin: 0;
  max-width: 620px;
}
.qs-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* Colores de botón CTA → gestionados por el bloque compartido .xxx-cta-banner */
@media (min-width: 768px) {
  .qs-cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }
  .qs-cta-content { flex: 1; }
}

/* ─── FAQ QUIÉNES SOMOS — reusa estilos faq existentes ─── */
#qs-faq { padding: 4.5rem 0 4rem; background: var(--black); }



/* ═══════════════════════════════════════════════════════════════
   PÁGINA FLOTA — diseño visual premium, mobile-first
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO FLOTA — imagen + franja diagonal amarilla ─────── */
.flota-hero {
  position: relative;
  min-height: clamp(480px, 65vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.flota-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.flota-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.flota-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.80) 45%,
    rgba(10, 10, 10, 0.40) 75%,
    transparent 100%
  );
}
/* Franja diagonal amarilla — más a la derecha */
.flota-hero-franja {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 74%,
    rgba(245, 197, 24, 0.18) 75%,
    rgba(245, 197, 24, 0.08) 78%,
    transparent 79%
  );
  pointer-events: none;
}
.flota-hero-container {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  display: flex;
  justify-content: flex-start; /* izquierda en desktop */
}
.flota-hero-content {
  max-width: 580px;
  width: 100%;
}

/* ─── Móvil: padding lateral para que no quede pegado al borde ─── */
@media (max-width: 767px) {
  .flota-hero-container {
    padding: 6rem 1.5rem 3rem; /* padding lateral explícito en móvil */
  }
  .flota-hero-content { max-width: 100%; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .flota-hero-container {
    padding: 7rem 2rem 4rem;
  }
}
.flota-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.flota-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.flota-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin: 0 0 1.5rem;
}
.flota-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.flota-hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.flota-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ─── INTRO ────────────────────────────── */
#flota-intro {
  padding: 4.5rem 0;
  background: var(--dark);
}
.flota-intro-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.flota-intro-text .section-label,
.flota-intro-text .section-title { text-align: left; }
.flota-intro-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 0;
}
.flota-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 500px) {
  .flota-intro-stats { grid-template-columns: repeat(4, 1fr); }
}
.flota-intro-stat {
  padding: 1.25rem 1rem;
  background: var(--card);
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 12px;
  text-align: center;
}
.flota-intro-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.flota-intro-stat span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 900px) {
  .flota-intro-layout { flex-direction: row; align-items: center; gap: 4rem; }
  .flota-intro-text { flex: 1.2; }
  .flota-intro-stats { flex: 1; grid-template-columns: repeat(2, 1fr); }
}

/* ─── GALERÍA DE VEHÍCULOS ─────────────── */
#flota-vehiculos {
  padding: 4.5rem 0;
  background: var(--black);
}
.flota-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) {
  .flota-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .flota-grid { grid-template-columns: repeat(3, 1fr); }
  .flota-card-wide { grid-column: span 1; }
}

.flota-card {
  background: linear-gradient(180deg, var(--card) 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.flota-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 197, 24, 0.30);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(245, 197, 24, 0.08);
}

/* Imagen con botón de zoom */
.flota-card-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /* Transparente para que los PNGs con canal alpha
     se vean sobre el fondo oscuro de la card */
  background: transparent;
  cursor: zoom-in;
  border: none;
  padding: 0;
}
.flota-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  /* Padding para que el coche no quede pegado a los bordes */
  padding: 0.75rem 1rem;
}
.flota-card-img-wrap:hover img { transform: scale(1.05); }
.flota-card-zoom {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.flota-card-zoom svg { width: 16px; height: 16px; }
.flota-card-img-wrap:hover .flota-card-zoom { opacity: 1; }
.flota-card-img-label {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  background: rgba(245, 197, 24, 0.90);
  color: #0a0a0a;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.flota-card-img-label svg { width: 12px; height: 12px; }

/* Body de la card */
.flota-card-body { padding: 1.25rem 1.25rem 1.5rem; }
.flota-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
.flota-card-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.005em;
}
/* Badges de tipo */
.flota-card-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.flota-badge-hibrido  { background: rgba(34, 197, 94, 0.15);  color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.30); }
.flota-badge-berlina  { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; border: 1px solid rgba(99, 102, 241, 0.30); }
.flota-badge-familiar { background: rgba(245, 197, 24, 0.12); color: var(--yellow); border: 1px solid rgba(245, 197, 24, 0.30); }
.flota-badge-minivan  { background: rgba(249, 115, 22, 0.12); color: #fb923c; border: 1px solid rgba(249, 115, 22, 0.30); }
.flota-badge-electrico{ background: rgba(6, 182, 212, 0.12);  color: #67e8f9; border: 1px solid rgba(6, 182, 212, 0.30); }
.flota-badge-local    { background: rgba(245, 197, 24, 0.10); color: var(--yellow); border: 1px solid rgba(245, 197, 24, 0.25); }

.flota-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1rem;
}
.flota-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.flota-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
.flota-card-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5C518' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 9px no-repeat,
    rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.25);
}

/* ─── LIGHTBOX ─────────────────────────── */
.flota-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.flota-lightbox[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.flota-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.flota-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.flota-lightbox[aria-hidden="false"] .flota-lightbox-content {
  transform: scale(1);
}
.flota-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
}
.flota-lightbox-close:hover { background: rgba(245, 197, 24, 0.2); }
.flota-lightbox-img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  background: transparent;
}
.flota-lightbox-caption {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.75rem 0 0;
}
.flota-lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 -2rem;
}
.flota-lightbox-nav button {
  pointer-events: all;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: 0 -1.5rem;
}
.flota-lightbox-nav button:hover { background: rgba(245, 197, 24, 0.25); }
.flota-lightbox-nav svg { width: 20px; height: 20px; }

/* ─── TIPOS ─────────────────────────────── */
#flota-tipos {
  padding: 4.5rem 0;
  background: var(--dark);
}
.flota-tipos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 700px) {
  .flota-tipos-grid { grid-template-columns: repeat(3, 1fr); }
}
.flota-tipo-card {
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.flota-tipo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.25);
}
.flota-tipo-card-featured {
  border-color: rgba(245, 197, 24, 0.30);
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.06) 0%, var(--card) 100%);
}
.flota-tipo-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.25);
  border-radius: 14px;
  margin-bottom: 1.25rem;
}
.flota-tipo-icon svg { width: 26px; height: 26px; color: var(--yellow); }
.flota-tipo-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 0 0.65rem;
}
.flota-tipo-card p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1rem;
}
.flota-tipo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.flota-tipo-card li {
  font-family: 'Barlow', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 1.2rem;
  position: relative;
}
.flota-tipo-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ─── CONFORT ───────────────────────────── */
#flota-confort {
  padding: 4.5rem 0;
  background: var(--black);
}
.flota-confort-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.flota-confort-text .section-label,
.flota-confort-text .section-title { text-align: left; }
.flota-confort-text > p {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 1rem 0 2rem;
}
.flota-confort-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.flota-confort-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.flota-confort-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 10px;
}
.flota-confort-icon svg { width: 20px; height: 20px; color: var(--yellow); }
.flota-confort-item div strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.flota-confort-item div span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}
.flota-confort-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.flota-confort-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flota-confort-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.flota-confort-badge span {
  padding: 0.35rem 0.8rem;
  background: rgba(245, 197, 24, 0.92);
  color: #0a0a0a;
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
}
@media (min-width: 900px) {
  .flota-confort-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .flota-confort-text { flex: 1.2; }
  .flota-confort-img {
    flex: 1;
    /* Baja la imagen para alinearla con el cuerpo del texto, no con el H2
       section-label (1rem) + h2 clamp(~2rem) + margin ~1rem = ~5rem aprox */
    margin-top: 5.5rem;
  }
}

/* ─── DIFERENCIAL ───────────────────────── */
#flota-diferencial {
  padding: 4.5rem 0;
  background: var(--dark);
}
.flota-diferencial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) { .flota-diferencial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .flota-diferencial-grid { grid-template-columns: repeat(4, 1fr); } }

.flota-dif-item {
  padding: 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.flota-dif-item:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.25);
}
.flota-dif-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 50%;
  margin-bottom: 1rem;
  overflow: hidden;
}
.flota-dif-icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow);
  position: relative;
  z-index: 1;
}
.flota-dif-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.flota-dif-item p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ─── SECCIÓN RESERVA — reutiliza reserva-layout de contacto.php ─── */
#flota-reserva {
  padding: 4.5rem 0;
  background: var(--black);
}
.flota-reserva-header {
  text-align: center;
  margin-bottom: 3rem;
}
.flota-reserva-header .section-sub {
  max-width: 560px;
  margin: 0.75rem auto 0;
}
/* El .reserva-layout ya existe en styles.css desde contacto.php
   Solo necesitamos asegurar que #flota-reserva lo hereda correctamente */
#flota-reserva .reserva-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 900px) {
  #flota-reserva .reserva-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
  #flota-reserva .form-info {
    flex: 0 0 300px;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  #flota-reserva .form-box {
    flex: 1;
    min-width: 0;
  }
}
/* Móvil: form-info usa display:contents igual que contacto.php
   para que el logo quede al final */
@media (max-width: 899px) {
  #flota-reserva .form-info { display: contents; }
  #flota-reserva .form-info > h3,
  #flota-reserva .form-info > ul,
  #flota-reserva .form-info > .form-info-box { order: 0; }
  #flota-reserva .form-info > .form-info-logo { order: 99; }
}

/* ─── CTA BANNER FLOTA ──────────────────── */
#flota-cta { padding: 4rem 0; background: var(--dark); }
.flota-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(245, 197, 24, 0.35);
  position: relative;
  overflow: hidden;
}
.flota-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.flota-cta-content { position: relative; z-index: 1; }
.flota-cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: #0a0a0a;
  margin: 0 0 0.65rem;
}
.flota-cta-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.82);
  margin: 0;
}
.flota-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* Colores de botón CTA → gestionados por el bloque compartido .xxx-cta-banner */
@media (min-width: 768px) {
  .flota-cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 2.5rem 3rem;
    gap: 2.5rem;
  }
  .flota-cta-content { flex: 1; }
}

/* ─── INTERLINK FLOTA ───────────────────── */
#flota-interlink { padding: 3rem 0 4.5rem; background: var(--black); }



/* ═══════════════════════════════════════════════════════════════
   PÁGINA TRABAJA CON NOSOTROS — captación segmentada
   ═══════════════════════════════════════════════════════════════ */

/* ─── HERO — split: texto izquierda + barras imagen derecha ── */
.trabaja-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 740px);
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: stretch;
}
.trabaja-hero-container {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  padding-left: clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  margin-left: 0;       /* anclar a la izquierda en desktop */
  margin-right: auto;
  max-width: 48vw;      /* limitar para no invadir el panel visual */
}
.trabaja-hero-content {
  max-width: 520px;
  width: 100%;
}
.trabaja-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.30);
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.trabaja-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.trabaja-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
  margin: 0 0 2rem;
}
.trabaja-hero-btns { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ── PANEL VISUAL DERECHO: franjas diagonales editorial ──── */
/*
  El panel NO ocupa todo el alto del hero:
  top/bottom con margen para que flote con aire arriba y abajo.
*/
.trabaja-hero-visual {
  position: absolute;
  top: 3.5rem;       /* margen superior → no toca el borde del hero */
  right: 0;
  bottom: 3.5rem;    /* margen inferior → deja aire en la base     */
  width: 56%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* Fondo oscuro con patrón de puntos visible entre las franjas */
  background-color: var(--black);
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
/* Fusión suave en el borde izquierdo — blende con la zona de texto */
.trabaja-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(10,10,10,0.6) 4%, transparent 10%);
  z-index: 10;
  pointer-events: none;
}
/*
  Geometría de las franjas (todas con el mismo ángulo):
  ─ shift   = 15%  (desplazamiento diagonal top→bottom)
  ─ width   = 27%  (ancho de cada franja)
  ─ gap     = 2.5% (separación entre franjas — fina y precisa)
  ─ Fórmula: polygon(L 0%, R 0%, R+shift 100%, L+shift 100%)

  Franja 1: L=3,    R=30    → bottom: 18,   45
  Franja 2: L=32.5, R=59.5  → bottom: 47.5, 74.5  (gap=2.5 desde 30)
  Franja 3: L=62,   R=89    → bottom: 77,   104    (gap=2.5 desde 59.5)

  Acento amarillo: anclado al borde derecho, mismo ángulo.
  Width ≈ 10%  |  height = 38%
  Borde derecho en 100% (top) → shift para 38% = 0.15×38 = 5.7% ≈ 6%
  L-top=90, R-top=100  →  L-bot=96, R-bot=106 (overflow:hidden recorta la derecha)
*/
.tbar {
  position: absolute;
  inset: 0;
  background-image: url('../images/flota/hero-flota.jpg');
  background-size: cover;
  background-position: center 20%;
}

/* Franja 1 — la más corta, empieza ~30% desde arriba (pegada al nivel del copy) */
.tbar-1 {
  clip-path: polygon(7.5% 30%, 34.5% 30%, 45% 100%, 18% 100%);
}

/* Franja 2 — media, empieza ~15% desde arriba */
.tbar-2 {
  clip-path: polygon(35% 15%, 62% 15%, 74.5% 100%, 47.5% 100%);
}

/* Franja 3 — ocupa todo el alto del hero (0% → 100%); overflow:hidden recorta limpio */
.tbar-3 {
  clip-path: polygon(62% 0%, 89% 0%, 104% 100%, 77% 100%);
}

/*
  Acento amarillo — pegado al borde derecho, top-right corner, mismo ángulo.
  El borde derecho del paralelogramo arranca en 100% (esquina) y el
  overflow:hidden recorta la parte que saldría fuera → corte diagonal limpio.
*/
.tbar-accent {
  background-image: none;
  background-color: var(--yellow);
  clip-path: polygon(90% 0%, 100% 0%, 106% 38%, 96% 38%);
}

/* ── Responsive ──────────────────────────────────────────── */

/* TABLET (768px – 1023px): columna — texto arriba, imagen abajo */
@media (max-width: 1023px) {
  .trabaja-hero {
    flex-direction: column;
    min-height: auto;
    align-items: stretch;
  }
  .trabaja-hero-container {
    max-width: 100%;
    padding: 4.5rem clamp(1.5rem, 5vw, 3rem) 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
  .trabaja-hero-content { max-width: 600px; }

  /* Texto primero, imagen después — reordenar sin tocar el HTML */
  .trabaja-hero-container { order: 1; }

  /* Panel visual: sale del flujo absoluto y se convierte en bloque debajo del texto */
  .trabaja-hero-visual {
    order: 2;
    position: relative;
    width: 100%;
    height: 360px;
    top: auto;
    bottom: auto;
    right: auto;
    flex-shrink: 0;
  }
  /* Gradiente de fusión: ahora en la parte superior para enlazar con el texto */
  .trabaja-hero-visual::before {
    background: linear-gradient(180deg, var(--black) 0%, rgba(10,10,10,0.5) 12%, transparent 30%);
  }
}

/* MÓVIL (< 768px): igual que tablet pero más compacto */
@media (max-width: 767px) {
  /* Asegurar que no queda background-image residual de versiones anteriores */
  .trabaja-hero {
    background-image: none;
  }
  .trabaja-hero::after { display: none; }

  .trabaja-hero-container {
    padding: 3.5rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin-left: 0;
  }
  .trabaja-hero-content { max-width: 100%; }

  /* Imagen más baja en móvil */
  .trabaja-hero-visual {
    display: block;
    height: 270px;
  }
}

/* ─── TABS DE NAVEGACIÓN ─────────────────────────────────── */
.trabaja-tabs {
  position: sticky;
  top: 62px; /* debajo del header */
  z-index: 100;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.trabaja-tabs-inner {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.trabaja-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.trabaja-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.trabaja-tab:hover { color: rgba(255, 255, 255, 0.85); }
.trabaja-tab.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}
@media (max-width: 400px) {
  .trabaja-tab { padding: 0.85rem 0.9rem; font-size: 0.875rem; }
}

/* ─── SECCIONES PERFIL ───────────────────────────────────── */
.trabaja-perfil {
  padding: 4.5rem 0;
  background: var(--dark);
}
.trabaja-perfil--conductores { background: var(--black); }

.trabaja-perfil-header { text-align: center; margin-bottom: 3rem; }
.trabaja-perfil-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.trabaja-perfil-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.trabaja-perfil-badge--autonomo {
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.35);
  color: var(--yellow);
}
.trabaja-perfil-badge--conductor {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  color: #4ade80;
}
.trabaja-perfil-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0.75rem auto 0.5rem;
  max-width: 560px;
}
.trabaja-microcopy {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--yellow);
  opacity: 0.85;
  margin: 0.5rem auto 0;
}

/* Grid 2 cols */
.trabaja-perfil-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .trabaja-perfil-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.trabaja-perfil-col {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.trabaja-col-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin: 0 0 1.25rem;
}
.trabaja-col-title svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }

/* Listas */
.trabaja-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trabaja-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.trabaja-list-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.12);
  border: 1px solid rgba(245, 197, 24, 0.28);
  border-radius: 50%;
  margin-top: 2px;
}
.trabaja-list-icon svg { width: 11px; height: 11px; color: var(--yellow); }
.trabaja-list-icon--req {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 700;
}
.trabaja-list li strong {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}
.trabaja-list li span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

/* CTA de perfil */
.trabaja-perfil-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ─── SEPARADOR ─────────────────────────────────────────── */
.trabaja-divider { padding: 0; background: var(--black); }
.trabaja-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.25), transparent);
}

/* ─── CÓMO FUNCIONA — 4 pasos ────────────────────────────── */
#trabaja-como-funciona {
  padding: 4.5rem 0;
  background: var(--dark);
}
.trabaja-pasos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) { .trabaja-pasos { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trabaja-pasos { grid-template-columns: repeat(4, 1fr); } }

.trabaja-paso {
  position: relative;
  padding: 1.75rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  text-align: center;
}
.trabaja-paso-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trabaja-paso h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.55rem;
}
.trabaja-paso p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
/* Conector entre pasos en desktop */
.trabaja-paso-connector { display: none; }
@media (min-width: 900px) {
  .trabaja-paso { position: relative; }
  .trabaja-paso-connector {
    display: block;
    position: absolute;
    top: 1.75rem;
    right: -0.85rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 197, 24, 0.4), transparent);
    z-index: 1;
  }
}

/* ─── DIFERENCIAL ────────────────────────────────────────── */
#trabaja-diferencial { padding: 4.5rem 0; background: var(--black); }
.trabaja-dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 600px) { .trabaja-dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .trabaja-dif-grid { grid-template-columns: repeat(4, 1fr); } }

.trabaja-dif-item {
  padding: 1.5rem 1.25rem;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.trabaja-dif-item:hover { transform: translateY(-3px); border-color: rgba(245, 197, 24, 0.25); }
.trabaja-dif-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.trabaja-dif-icon svg { width: 22px; height: 22px; color: var(--yellow); }
.trabaja-dif-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.45rem;
}
.trabaja-dif-item p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ─── FORMULARIO ─────────────────────────────────────────── */
#trabaja-formulario { padding: 4.5rem 0; background: var(--dark); }
.trabaja-form-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.trabaja-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--white);
  margin: 0 0 0.5rem;
}
.trabaja-form-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.5rem;
}
@media (min-width: 900px) {
  .trabaja-form-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
  }
  .trabaja-form-layout > .form-info { flex: 0 0 300px; }
  .trabaja-form-layout > .form-box { flex: 1; }
}
@media (max-width: 899px) {
  .trabaja-form-layout > .form-info { display: contents; }
  .trabaja-form-layout > .form-info > h3,
  .trabaja-form-layout > .form-info > ul,
  .trabaja-form-layout > .form-info > .form-info-box { order: 0; }
  .trabaja-form-layout > .form-info > .form-info-logo { order: 99; }
}

/* Selector visual tipo perfil */
.trabaja-tipo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.trabaja-tipo-opt { cursor: pointer; }
.trabaja-tipo-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.trabaja-tipo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 1.1rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.trabaja-tipo-opt:hover .trabaja-tipo-card {
  border-color: rgba(245, 197, 24, 0.35);
  background: rgba(245, 197, 24, 0.04);
}
.trabaja-tipo-opt input:checked + .trabaja-tipo-card {
  border-color: var(--yellow);
  background: rgba(245, 197, 24, 0.08);
}
.trabaja-tipo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245, 197, 24, 0.10);
  border: 1px solid rgba(245, 197, 24, 0.22);
  border-radius: 50%;
}
.trabaja-tipo-icon svg { width: 18px; height: 18px; color: var(--yellow); }
.trabaja-tipo-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}
.trabaja-tipo-card span {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
}
.form-label-block {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}

/* ─── CTA FINAL ──────────────────────────────────────────── */
#trabaja-cta-final { padding: 4rem 0; background: var(--black); }
.trabaja-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(245, 197, 24, 0.35);
  position: relative;
  overflow: hidden;
}
.trabaja-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.trabaja-cta-content { position: relative; z-index: 1; }
.trabaja-cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  color: #0a0a0a;
  margin: 0 0 0.6rem;
  max-width: 680px;
}
.trabaja-cta-content p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: rgba(10, 10, 10, 0.80);
  margin: 0;
}
.trabaja-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}
/* Colores de botón CTA → gestionados por el bloque compartido .xxx-cta-banner */
@media (min-width: 768px) {
  .trabaja-cta-banner { flex-direction: row; text-align: left; padding: 2.5rem 3rem; gap: 2.5rem; }
  .trabaja-cta-content { flex: 1; }
}

/* ─── INTERLINK ──────────────────────────────────────────── */
#trabaja-interlink { padding: 3rem 0 4.5rem; background: var(--dark); }


/* ============================================================
   AVISO LEGAL — POLÍTICA DE PRIVACIDAD — POLÍTICA DE COOKIES
   Estilos compartidos para páginas de contenido legal
   ============================================================ */

/* ── HERO LEGAL ── */
.legal-hero {
  position: relative;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
  background: var(--dark);
}
.legal-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(245,197,24,.07) 0%, transparent 70%);
  pointer-events: none;
}
.legal-hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.legal-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray);
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.legal-breadcrumb ol li a { color: var(--yellow); }
.legal-breadcrumb ol li a:hover { text-decoration: underline; }
.legal-breadcrumb ol li span { color: var(--gray); }

.legal-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--yellow-soft);
  border: 1px solid rgba(245,197,24,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-top: 0.5rem;
}
.legal-hero-title {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.legal-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--gray);
  max-width: 480px;
  line-height: 1.6;
}
.legal-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--gray);
}
.legal-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.legal-hero-meta svg { color: var(--yellow); }

/* ── ÍNDICE DE NAVEGACIÓN ── */
.legal-index-section {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2rem 0;
}
.legal-nav { max-width: 700px; margin: 0 auto; }
.legal-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}
.legal-nav-list {
  list-style: decimal;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}
.legal-nav-list li { color: var(--gray-light); font-size: 0.88rem; }
.legal-nav-list li a { color: var(--gray-light); transition: color var(--transition); }
.legal-nav-list li a:hover { color: var(--yellow); }

@media (min-width: 640px) {
  .legal-nav-list { grid-template-columns: 1fr 1fr; gap: 0.35rem 2rem; }
}

/* ── CUERPO DEL AVISO LEGAL ── */
.legal-content { padding: 3rem 0 2rem; }
.legal-container { max-width: 860px; }

.legal-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.legal-section:last-child { border-bottom: none; }

.legal-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.legal-section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  opacity: 0.7;
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.legal-section-header h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.legal-section-body { display: flex; flex-direction: column; gap: 0.9rem; }
.legal-section-body p { font-size: 0.92rem; color: var(--gray-light); line-height: 1.75; }
.legal-section-body strong { color: var(--white); font-weight: 600; }
.legal-section-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}
.legal-section-body a { color: var(--yellow); }
.legal-section-body a:hover { text-decoration: underline; }

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 0.25rem;
}
.legal-list li {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.65;
  padding-left: 1.2rem;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── TABLA DE DATOS IDENTIFICATIVOS ── */
.legal-data-table {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.legal-data-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-data-row:last-child { border-bottom: none; }
.legal-data-row:nth-child(even) { background: rgba(255,255,255,.02); }
.legal-data-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  opacity: 0.85;
}
.legal-data-value {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.legal-data-value a { color: var(--yellow); }
.legal-data-value a:hover { text-decoration: underline; }

@media (min-width: 640px) {
  .legal-data-row {
    grid-template-columns: 180px 1fr;
    gap: 0.5rem;
    align-items: center;
  }
}

/* ── BOX ENLACE INTERNO ── */
.legal-link-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--yellow-soft);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.legal-link-box svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.legal-link-box a { color: var(--yellow); font-weight: 600; }
.legal-link-box a:hover { text-decoration: underline; }

/* ── FECHA DE ACTUALIZACIÓN ── */
.legal-update-date {
  font-size: 0.82rem;
  color: var(--gray);
  font-style: italic;
}

/* ── CTA SUAVE ── */
.legal-cta {
  padding: 3rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.legal-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
}
.legal-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--yellow-soft);
  border: 1px solid rgba(245,197,24,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.legal-cta-text h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}
.legal-cta-text p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.65;
}
.legal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.legal-cta-tel {
  background: rgba(245,197,24,.08) !important;
  border-color: rgba(245,197,24,.3) !important;
  color: var(--yellow) !important;
}
.legal-cta-tel:hover {
  background: rgba(245,197,24,.14) !important;
}

@media (min-width: 768px) {
  .legal-cta-inner {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
  .legal-cta-text p { max-width: none; }
  .legal-cta-actions { justify-content: flex-start; }
}

/* ── INTERLINKING LEGAL ── */
.legal-links-section {
  padding: 2.5rem 0 4rem;
  background: var(--black);
}
.legal-links-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
  text-align: center;
}
.legal-links-grid {
  display: grid;
  grid-template-columns: 1fr;   /* móvil: 1 columna */
  gap: 0.75rem;
}
.legal-links-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.legal-links-card:hover {
  border-color: rgba(245,197,24,.3);
  background: rgba(245,197,24,.04);
}
.legal-links-card--active {
  border-color: rgba(245,197,24,.3) !important;
  background: var(--yellow-soft) !important;
  pointer-events: none;
  cursor: default;
}
.legal-links-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--yellow-soft);
  border: 1px solid rgba(245,197,24,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}
.legal-links-card--active .legal-links-card-icon {
  background: rgba(245,197,24,.2);
}
.legal-links-card > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.legal-links-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  overflow-wrap: break-word;
  word-break: break-word;
}
.legal-links-card span {
  font-size: 0.75rem;
  color: var(--gray);
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 480px) {
  .legal-links-grid { grid-template-columns: 1fr 1fr; }   /* tablet pequeña: 2 columnas */
}
@media (min-width: 768px) {
  .legal-links-grid { grid-template-columns: repeat(4, 1fr); }  /* tablet/desktop: 4 columnas */
}
@media (min-width: 768px) {
  .legal-nav-list { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SCROLL TO TOP
   ─ Aparece tras 250px de scroll (controlado por JS)
   ─ z-index 800: encima de contenido, debajo de header/modales
   ─ Oculto en móvil (barra sticky LLAMAR/RESERVAR ocupa ese espacio)
   ============================================================ */
.scroll-top-btn {
  /* Posición fija — esquina inferior derecha */
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 800;

  /* Forma circular */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);

  /* Paleta oscura del proyecto */
  background: rgba(26, 26, 26, 0.92);
  color: rgba(255, 255, 255, 0.75);

  /* Centrar icono */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Cursor + sin outline nativo feo */
  cursor: pointer;
  outline: none;

  /* Transiciones suaves (opacidad + transform + colores) */
  transition:
    opacity        0.3s ease,
    transform      0.3s ease,
    background     0.22s ease,
    color          0.22s ease,
    border-color   0.22s ease,
    box-shadow     0.22s ease;

  /* Estado inicial: invisible y ligeramente abajo */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  /* Backdrop blur sutil — modernidad sin peso */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Estado visible — activado por JS al añadir .is-visible */
.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hover — acento amarillo taxi */
.scroll-top-btn:hover {
  background:    var(--yellow);
  color:         #0a0a0a;
  border-color:  var(--yellow);
  box-shadow:    0 6px 20px rgba(245, 197, 24, 0.30);
  transform:     translateY(-3px);
}

/* Focus visible — accesibilidad teclado */
.scroll-top-btn:focus-visible {
  outline:        2px solid var(--yellow);
  outline-offset: 3px;
}

/* Active — feedback táctil */
.scroll-top-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(245, 197, 24, 0.20);
}

/* Tablet y móvil (< 900px): sticky bar visible → subir el botón por encima */
@media (max-width: 899px) {
  .scroll-top-btn {
    /* La barra sticky mide ~62px; 62px + 12px de aire = 74px ≈ 4.75rem */
    bottom: 4.75rem;
    right:  1.1rem;
    /* Ligeramente más pequeño para no competir visualmente */
    width:  40px;
    height: 40px;
  }
}

/* ============================================================
   COOKIE CONSENT — Banner + Modal
   ============================================================ */

/* ── BANNER ─────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--dark);
  border-top: 3px solid var(--yellow);
  box-shadow: 0 -4px 40px rgba(0,0,0,.65);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-body {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.cookie-banner-icon {
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: .1rem;
}

.cookie-banner-text p {
  font-size: .9rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

/* ── BOTONES ────────────────────────────────────────────────── */
.cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: .6rem 1.3rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  line-height: 1;
}

.cookie-btn-accept {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-cta);
}
.cookie-btn-accept:hover { background: var(--yellow-dark); }

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,.07); color: var(--white); }

.cookie-btn-settings {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,.1);
}
.cookie-btn-settings:hover { background: rgba(255,255,255,.05); color: var(--gray-light); }

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    padding: .9rem 1.5rem;
    gap: 1.5rem;
  }
  .cookie-banner-body { flex: 1; }
  .cookie-banner-actions { flex-shrink: 0; flex-wrap: nowrap; }
}

/* ── MODAL ──────────────────────────────────────────────────── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cookie-modal.is-hidden { display: none; }

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(3px);
  cursor: pointer;
}

.cookie-modal-box {
  position: relative;
  z-index: 1;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.75rem 1.25rem 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 -8px 48px rgba(0,0,0,.6);
  animation: cookieSlideUp .3s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (min-width: 640px) {
  .cookie-modal { align-items: center; }
  .cookie-modal-box {
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    max-height: 85vh;
  }
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.cookie-modal-close {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--gray);
  border-radius: var(--radius-sm);
  padding: .35rem .45rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ── CATEGORÍAS ─────────────────────────────────────────────── */
.cookie-category {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-bottom: .75rem;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .4rem;
}

.cookie-category-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cookie-category-desc {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.cookie-always-on {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}

/* ── TOGGLE SWITCH ──────────────────────────────────────────── */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  cursor: pointer;
  transition: background .22s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .22s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--yellow); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: .45; cursor: not-allowed; }

/* ── ACCIONES MODAL ─────────────────────────────────────────── */
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}
.cookie-modal-actions .cookie-btn { flex: 1; justify-content: center; min-width: 110px; }

/* ── BOTÓN REABRIR (footer) ─────────────────────────────────── */
.cookie-reopen-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .82rem;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.cookie-reopen-btn:hover { color: var(--yellow); }

