/* ============================================================
   TAXIS VILADECANS — core.css
   Estilos compartidos: reset, variables, tipografía, botones,
   header, nav, hero home, secciones home, footer, slider,
   formulario base, FAQ, testimonios, sticky bar, cookie banner.
   Mobile-first | Production | taxiviladecans.es
   ============================================================ */

/* ── 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; overflow-x: hidden; }

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 */
.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); }

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary,
  .btn-dark,
  .btn-dark-outline {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
  }
}

.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); }
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 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.mobile-nav-open .logo-img { transform: scale(1.18); }
.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 {
  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); }
.desktop-nav a.nav-active { color: var(--yellow); }
.desktop-nav a.nav-active::after { transform: scaleX(1); }

.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 ── */
.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;
  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); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  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;
}
.mobile-nav.open { visibility: visible; opacity: 1; pointer-events: auto; }
body.mobile-nav-open { overflow: hidden; }

.mobile-nav-topbar {
  flex-shrink: 0;
  height: 64px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.mobile-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  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); }

.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;
  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); }
}
.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); }
}

.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;
  opacity: 0;
  transform: translateX(-20px);
  transition: color 0.25s ease, font-weight 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.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;
  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;
}
.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%);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}
.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); }
}
.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);
}
.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); }
.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); }

.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); }
.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;
}
.mobile-nav.open .mob-cta {
  animation: mob-cta-pulse 4s ease-in-out infinite;
  animation-delay: 1.5s;
}
@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; box-shadow: 0 12px 28px -6px rgba(245, 197, 24, 0.55); }

@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;
  display: flex;
  align-items: center;
  padding-top: 86px;
  padding-bottom: 2rem;
  overflow: hidden;
}
#hero > .container { width: 100%; position: relative; z-index: 2; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero-taxi.jpg');
  background-size: cover;
  background-position: 30% 65%;
  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; }
.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; }
@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; }

/* ── 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 COMPARTIDO — form-reserva.php (todas las páginas)
   ══════════════════════════════════════════════════════════════ */
#reserva { background: var(--dark); }
.reserva-layout { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
@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; }
}

/* Contenedor del formulario */
.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);
}
@media (max-width: 599px) {
  .form-box {
    border: 1px solid rgba(245, 197, 24, 0.45);
    box-shadow: 0 0 12px rgba(245, 197, 24, 0.10), 0 0 28px rgba(245, 197, 24, 0.06);
  }
}

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

/* Campo individual */
.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;
}

/* Inputs / select / textarea */
.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 */
.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 */
.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 */
.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 */
.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 */
.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 */
.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 0 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.form-info > ul > li {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}
.form-info > ul > li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.55;
}

/* Pasos "¿Cómo funciona?" — timeline numerado */
.form-info > ul:has(.form-info-num) {
  padding: 0;
  margin: 0 0 1.5rem;
  gap: 1.4rem;
  position: relative;
}
.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,.5) 0%, rgba(245,197,24,.25) 50%, rgba(245,197,24,.05) 100%);
  z-index: 0;
}
.form-info > ul:has(.form-info-num) > li::before { content: none !important; display: none !important; }
.form-info > ul:has(.form-info-num) > li { list-style: none; display: flex; align-items: flex-start; gap: 1rem; position: relative; z-index: 1; padding-left: 0; }
.form-info-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: #0a0a0a;
  border-radius: 50%;
  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;
  box-shadow: 0 6px 16px -4px rgba(245,197,24,.5), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -2px 4px rgba(0,0,0,.15);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.form-info-num::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(3px);
}
.form-info > ul:has(.form-info-num) > li > div { flex: 1; padding-top: 0.4rem; min-width: 0; }
.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;
}
.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,.65);
  line-height: 1.5;
}
.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,.6), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -2px 4px rgba(0,0,0,.15);
}

/* Caja CTA dentro de form-info */
.form-info-box {
  margin-top: 1.75rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(245,197,24,.08) 0%, rgba(245,197,24,.03) 100%);
  border: 1px solid rgba(245,197,24,.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,.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,.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,.12);
  border: 1px solid rgba(245,197,24,.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,.18); border-color: rgba(245,197,24,.5); transform: translateY(-1px); }

/* Logo decorativo en sidebar */
.form-info-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.05s linear;
}
@media (max-width: 899px) {
  .form-info-logo { will-change: auto; transition: none; transform: none !important; margin-top: 2rem; margin-bottom: 0.5rem; }
}
.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,.20) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.form-info-logo img {
  width: clamp(180px, 32vw, 240px);
  height: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 12px 28px rgba(245,197,24,.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); }
}

/* Selector visual de pasajeros */
.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;
}
.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;
}
.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; }
.form-pasajero-icon:has(.form-pasajero-img--minivan) { width: 88px; height: 48px; overflow: visible; }
.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; }
.form-pasajero-img--minivan { height: 115%; width: auto; }
.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,.55); text-align: center; line-height: 1.3; letter-spacing: 0.02em; }
.form-pasajero-opt:hover .form-pasajero-card { border-color: rgba(245,197,24,.35); background: rgba(245,197,24,.03); transform: translateY(-2px); }
.form-pasajero-opt:hover .form-pasajero-icon { color: rgba(245,197,24,.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; }
.form-pasajero-opt input:checked + .form-pasajero-card {
  border-color: var(--yellow);
  background: rgba(245,197,24,.08);
  box-shadow: 0 0 0 4px rgba(245,197,24,.12), 0 8px 20px -8px rgba(245,197,24,.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; }
@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 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,.07);
  border: 1px solid rgba(245,197,24,.22);
  border-left: 3px solid rgba(245,197,24,.6);
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.825rem;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.form-pasajeros-nota strong { color: rgba(255,255,255,.95); font-weight: 600; }
.form-pasajeros-nota-icon { flex-shrink: 0; font-size: 1.05rem; line-height: 1.3; filter: saturate(1.2); }
.form-field:has(input[value*="5-6"]:checked) .form-pasajeros-nota {
  background: rgba(245,197,24,.13);
  border-color: rgba(245,197,24,.45);
  border-left-color: var(--yellow);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px -6px rgba(245,197,24,.3);
}

/* Microcopy */
.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,.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); }

/* Contact block (sidebar home) */
.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 message */
.form-msg { text-align: center; font-size: 0.82rem; margin-top: 0.65rem; min-height: 1.2em; }

/* ══════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON (presente en todas las páginas vía footer.php)
   ══════════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(26, 26, 26, 0.92);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  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;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.scroll-top-btn.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.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);
}
.scroll-top-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.scroll-top-btn:active { transform: translateY(-1px); box-shadow: 0 3px 10px rgba(245, 197, 24, 0.20); }
@media (max-width: 899px) {
  .scroll-top-btn { bottom: 4.75rem; right: 1.1rem; width: 40px; height: 40px; }
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #060606 100%);
  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; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2rem; margin-bottom: 1.5rem; position: relative; }
.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); }
.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); }
.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); }

/* ── 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; }

/* ── SLIDER ── */
.slider-wrap { position: relative; width: 100%; border-radius: var(--radius-xl); overflow: hidden; 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; }
.slider-track.no-transition { transition: none !important; }
.slide { 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; }
@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); }
.porque-layout .slider-wrap { width: 100%; min-height: 320px; }
@media (min-width: 600px) { .porque-layout .slider-wrap { min-height: 380px; } }
@media (min-width: 900px) { .porque-layout .slider-wrap { flex: 1 1 0; min-width: 0; min-height: 420px; } }

/* ── 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; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 0.25rem; }
  .footer-brand p { max-width: 100%; }
  .header-btns { display: none !important; }
  .header-inner { gap: 0.5rem; }
  .logo-img { width: 32px; height: 32px; }
  .logo-text { font-size: 1.1rem; }
}

/* ── RESPONSIVE: DESKTOP ── */
@media (min-width: 900px) {
  .desktop-nav { display: flex; }
  .header-btns { display: flex; flex-direction: column; }
  .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; }
  .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-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; }
  .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-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; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  #hero { min-height: 100vh; padding-top: 66px; padding-bottom: 0; }
  .hero-bg { background-position: center 55%; }
}

@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; }
}

@media (max-width: 899px) {
  body { padding-bottom: 72px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column-reverse; align-items: center; text-align: center; gap: 0.65rem; }
  .footer-bottom-legal { justify-content: center; }
}

@media (min-width: 600px) {
  #hero { min-height: 640px; padding-top: 96px; }
  .hero-bg { background-position: 30% 60%; }
}

@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; }
}

/* ============================================================
   COOKIE CONSENT — Banner + Modal
   ============================================================ */
.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; }

.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; }
}

.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); }

.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; }

.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; }

.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; }

.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); }
.cookie-reopen-btn--inline { text-decoration: underline; text-underline-offset: 2px; }
.btn-primary.cookie-reopen-btn { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; }

.cookie-table-wrap { overflow-x: auto; margin-top: .75rem; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cookie-table thead tr { background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.1); }
.cookie-table th { text-align: left; padding: .65rem .85rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--yellow); }
.cookie-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.cookie-table tbody tr:last-child { border-bottom: none; }
.cookie-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.cookie-table td { padding: .7rem .85rem; color: var(--gray-light); }
.cookie-table td.col-name { color: var(--white); font-weight: 600; }
.cookie-table .col-nowrap { white-space: nowrap; }
.cookie-code { background: rgba(255,255,255,.07); padding: .15rem .4rem; border-radius: 4px; font-size: .82rem; }
.cookie-table-wrap + .legal-link-box { margin-top: 1rem; }

/* ============================================================
   COMPONENTES COMPARTIDOS — usados en múltiples páginas
   ============================================================ */

/* ── CTA BANNER AMARILLO — servicios + contacto ── */
.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;
}
@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; }
}

/* ── INTERLINKING "EXPLORA OTRAS PÁGINAS" — todas las páginas ── */
.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;
}
.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;
  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); }
}
.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); }
.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;
}

/* ── EMP-INFO FEATURES — barra lateral formulario (aeropuerto + empresas) ── */
.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;
}

/* ── AERO-PASOS — pasos "Cómo funciona" (aeropuerto + empresas) ── */
.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; }

/* ── AERO-LIGHTBOX — lightbox galería (aeropuerto + empresas) ── */
.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);
}

/* ── AERO-GALERIA — galería de imágenes (aeropuerto + empresas) ── */
.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;
}
