/*
Theme Name: Limovan
Theme URI: https://www.limovan.cl
Author: Tu Nombre / Funnel ATF
Description: Tema personalizado para el transporte turístico Limovan.
Version: 1.0
Text Domain: limovan
*/

/* --- PEGA AQUÍ TODO TU CÓDIGO CSS ORIGINAL --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* ... (resto de tu style.css) ... */
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --dark: #0D0D0D;
  --dark2: #141414;
  --dark3: #1E1E1E;
  --dark4: #2A2A2A;
  --white: #FFFFFF;
  --gray: #A0A0A0;
  --gray-light: #D0D0D0;
  --nav-h: 80px;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.15);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4)); transition: var(--transition); }
.logo-img:hover { transform: scale(1.05); }
.nav-links {
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-link {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem; font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: var(--transition); border-radius: 2px;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { left: 10%; right: 10%; }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.5); }

.hamburger { display: none; }

/* ===== BOOTSTRAP NAVBAR OVERRIDES ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  min-height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--nav-h); padding: 0.5rem 1.5rem;
  width: 100%;
}
.logo-img { height: 56px; width: auto; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4)); transition: var(--transition); }
.logo-img:hover { transform: scale(1.05); }

/* Bootstrap navbar-toggler styled gold */
.navbar-toggler {
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapse menu */
.navbar-collapse {
  background: transparent;
}
@media (max-width: 991px) {
  .navbar-collapse.show, .navbar-collapse.collapsing {
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(201,168,76,0.15);
    margin: 0 -1.5rem;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 0.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1rem;
  }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; display: block; }
}

.nav-link {
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem; font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: var(--transition); border-radius: 2px;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { left: 10%; right: 10%; }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important; font-weight: 700; font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.5); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 1rem;
  border-radius: 50px; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,0.5); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--white); font-weight: 600; font-size: 1rem;
  border-radius: 50px; border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 12s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 50%, rgba(13,8,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: var(--nav-h) 2rem 2rem;
  text-align: center;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light); font-size: 0.85rem; font-weight: 600;
  padding: 0.45rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 40%, var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 720px; margin: 0 auto 2.5rem;
  animation: fadeUp 1s 0.4s ease both;
}
.hero-subtitle strong { color: var(--gold-light); }
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.2rem 2rem;
  animation: fadeUp 1s 0.6s ease both;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: var(--gray-light); }
.stat-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.3); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); margin-top: -5px;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 60%, var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc { color: var(--gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ===== SERVICIOS + SLIDER ===== */
.servicios { padding: 6rem 0 0; background: var(--dark2); }
.servicios .section-header { padding-bottom: 3rem; }

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}
.slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}
.slide {
  min-width: 100%;
  width: 100%;
  position: relative;
  height: 560px;
  overflow: hidden;
  flex-shrink: 0;
}
.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.slide:hover .slide-img { transform: scale(1.04); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}
.slide-tag {
  display: inline-block;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--gold-light);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1rem;
  max-width: 90%;
  word-break: break-word;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 700; color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
  margin-bottom: 0.75rem; line-height: 1.15;
  max-width: 90%;
  word-break: break-word;
}
.slide-desc {
  color: rgba(255,255,255,0.82);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  max-width: 90%;
  word-break: break-word;
}
.slide-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.slide-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 28px rgba(201,168,76,0.55); }

/* Arrow Buttons */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  background: rgba(13,13,13,0.65); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--white); font-size: 1.3rem;
  border-radius: 50%; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.dot.active {
  background: var(--gold); border-color: var(--gold);
  transform: scale(1.3);
}
.dot:hover { border-color: var(--gold); }

/* ── MOBILE: arrows move to the bottom bar ── */
@media (max-width: 767px) {
  .slider-wrapper {
    touch-action: pan-y;
  }
  .slider-btn {
    top: auto; bottom: 0.9rem;
    transform: none;
    width: 36px; height: 36px;
    font-size: 1rem;
  }
  .slider-btn:hover { transform: scale(1.08); }
  .slider-prev { left: 1rem; }
  .slider-next { right: 1rem; }
  /* push dots up slightly so arrows don't overlap them */
  .slider-dots { bottom: 1rem; }
  .slide-content {
    padding: 1.2rem;
    justify-content: center;
    align-items: center;
  }
  .slide-img {
    object-position: center center;
  }
}


/* ===== AEROPUERTO ===== */
.aeropuerto-section { padding: 6rem 0; background: var(--dark); }
.aeropuerto-inner { margin: 0 !important; }
.aeropuerto-desc { color: var(--gray); margin: 1.5rem 0; font-size: 1.05rem; }
.aeropuerto-desc strong { color: var(--gold-light); }
.aeropuerto-features { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.aeropuerto-features li {
  display: flex; align-items: center; gap: 0.85rem;
  color: rgba(255,255,255,0.85); font-size: 0.95rem;
}
.feat-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.aeropuerto-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.aeropuerto-img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); transition: var(--transition); }
.aeropuerto-img:hover { transform: scale(1.02); }
.aeropuerto-badge-float {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,13,13,0.9); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; padding: 0.85rem 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.badge-icon { font-size: 1.8rem; }
.aeropuerto-badge-float strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--gold); }
.aeropuerto-badge-float span { font-size: 0.8rem; color: var(--gray); }

/* ===== DESTINOS ===== */
.destinos { padding: 6rem 0; background: var(--dark2); }

/* Chile Map Card */
.chile-map-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 0 60px rgba(201,168,76,0.03);
}
.chile-map-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold-light);
}
.chile-km {
  font-size: 0.75rem; font-weight: 600;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); padding: 0.2rem 0.6rem; border-radius: 20px;
}
.chile-map-svg {
  width: 100%; height: auto; display: block;
}

/* Destino Cards */
.destino-card {
  background: var(--dark3); border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition); display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem;
}
.destino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: rgba(201,168,76,0.35); }
.destino-emoji { font-size: 2.2rem; flex-shrink: 0; }
.destino-card-body { flex: 1; }
.destino-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.destino-card p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* Destinos CTA button */
.destinos-cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.btn-destinos-cta {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 28px rgba(201,168,76,0.4);
}
.btn-destinos-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(201,168,76,0.55);
}

/* ===== RESERVAR ===== */
.reservar { padding: 6rem 0; background: var(--dark); }
.reservar-inner { margin: 0 !important; }
.info-card {
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 1.5rem;
  transition: var(--transition);
}
.info-card:hover { border-color: rgba(201,168,76,0.35); }
.info-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.info-card p { color: var(--gray); font-size: 0.88rem; margin-bottom: 1rem; flex: 1; }

/* Tall equal-height variant */
.info-card-tall {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.info-card-tall .btn-whatsapp { margin-top: auto; align-self: flex-start; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: #25D366; color: #fff;
  font-weight: 700; font-size: 0.9rem; border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ===== CONTACTO ===== */
.contacto { padding: 6rem 0; background: var(--dark2); }
.contacto-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem;
}
.contacto-card {
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; transition: var(--transition);
}
.contacto-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-gold); }
.contacto-card .c-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contacto-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--gold); }
.contacto-card p, .contacto-card a { color: var(--gray-light); font-size: 0.95rem; }
.contacto-card a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer { background: #080808; border-top: 1px solid rgba(201,168,76,0.15); padding: 4rem 0 0; }
.footer-inner { margin: 0 !important; padding-bottom: 3rem; }
.footer-logo { height: 70px; margin-bottom: 1rem; filter: drop-shadow(0 2px 8px rgba(201,168,76,0.3)); }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-links h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info h4 { color: var(--gold); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.footer-contact-info p { color: var(--gray); font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact-info a { color: var(--gray-light); }
.footer-contact-info a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: var(--gray); font-size: 0.82rem; }
#footer-designer-link { color: var(--gold); font-weight: 600; transition: var(--transition); }
#footer-designer-link:hover { color: var(--gold-light); text-decoration: underline; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 1.1rem;
  border: none; border-radius: 50%; cursor: pointer;
  opacity: 0; pointer-events: none; transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(201,168,76,0.5); }

/* ===== TESTIMONIOS ===== */
.testimonios { padding: 6rem 0; background: var(--dark); }

.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.5rem;
}
.testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-slide {
  min-width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.testi-card::before {
  content: '"';
  position: absolute; top: -10px; left: 2rem;
  font-size: 6rem; line-height: 1;
  color: rgba(201,168,76,0.12);
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}
.testi-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
}
.testi-author strong {
  display: block;
  font-size: 1rem; font-weight: 700;
  color: var(--white);
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* Controls */
.testi-btn {
  position: absolute; top: 50%; transform: translateY(-60%);
  z-index: 10;
  width: 46px; height: 46px;
  background: rgba(13,13,13,0.7); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--white); font-size: 1.2rem;
  border-radius: 50%; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-dots {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem;
}

/* Mobile */
@media (max-width: 767px) {
  .testi-card { padding: 1.8rem 1.3rem; }
  .testi-text { font-size: 0.92rem; }
  .testi-btn {
    top: auto;
    bottom: 0;
    transform: none;
    width: 36px; height: 36px; font-size: 1rem;
  }
  .testi-btn:hover { transform: scale(1.08); }
  .testi-prev { left: 1rem; }
  .testi-next { right: 1rem; }
  .testi-dots { bottom: 0.1rem; }
  .testi-slider-wrap { padding-bottom: 3rem; }
}

/* ===== WHATSAPP FLOAT ===== */

.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  background: #1da851;
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.wa-tooltip {
  position: absolute;
  right: 66px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(13, 13, 13, 0.92);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  :root { --nav-h: 68px; }
  .slide { height: 420px; }
  .slide-title { font-size: 1.5rem; max-width: 85%; margin-left: auto; margin-right: auto; }
  .slide-desc { font-size: 0.85rem; margin-bottom: 1.2rem; max-width: 85%; margin-left: auto; margin-right: auto; }
  .slide-tag { font-size: 0.7rem; padding: 0.3rem 0.8rem; }
  .slide-btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
  .slide-content {
    padding: 1rem 1rem 3rem;
  }
  .aeropuerto-img { height: 280px; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; }
  .form-row { display: block; }
  .form-row .form-group { margin-bottom: 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 4.5rem; width: 48px; height: 48px; }
  .scroll-top { bottom: 1.2rem; right: 1.2rem; }
}
@media (max-width: 480px) {
  .slide { height: 360px; }
  .slide-title { font-size: 1.25rem; }
  .slide-desc { font-size: 0.8rem; margin-bottom: 1rem; }
  .slide-tag { font-size: 0.65rem; }
  .slide-btn { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
  .slide-content {
    padding: 0.8rem 0.8rem 3rem;
  }
  .hero-title { font-size: 1.6rem; }
}
