/* ══════════════════════════════════════════════════════════════════
   PLANETA TURÍSTICO – style.css
   Metodología: AIDA | Mobile-First | WCAG AA | Vanilla CSS
   Tipografía: Cormorant Garamond (display elegante) + Plus Jakarta Sans (body legible)
   Paleta: Azul profundo #0057B8, Naranja vibrante #FF6B00, Dorado #FFAD5B
══════════════════════════════════════════════════════════════════ */

/* ── 1. VARIABLES ── */
:root {
  /* Colores primarios */
  --blue:        #0057B8;
  --blue-dark:   #003D85;
  --blue-deeper: #00275A;
  --blue-light:  #E4EEF9;
  --blue-mid:    #2D78D4;

  /* Acento cálido */
  --orange:      #FF6B00;
  --orange-dk:   #D45900;
  --orange-lt:   #FFF3E8;
  --gold:        #FFAD5B;

  /* Neutros */
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-50:     #F2F5FB;
  --gray-100:    #E8ECF5;
  --gray-300:    #C4CCDC;
  --gray-500:    #68778F;
  --gray-700:    #2C3A52;
  --gray-900:    #0D1627;

  /* Tipografías */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Sombras */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 3px 10px rgba(0,0,0,.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,.11);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.18);

  /* Radios */
  --r-sm:  8px;
  --r:     14px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Transiciones */
  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .25s;
  --t-md: .4s;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
blockquote { font-style: normal; }

/* ── Accesibilidad WCAG 2.4.7: focus visible ── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Elimina outline por defecto pero lo preserva para teclado */
:focus:not(:focus-visible) { outline: none; }

/* ── 3. SKIP LINK – WCAG 2.4.1 ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── 4. UTILIDADES ── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 22px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.section-header { text-align: center; margin-bottom: 52px; }

/* Títulos responsivos con clamp – legibilidad garantizada */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700; color: var(--gray-900); line-height: 1.15;
  letter-spacing: -.5px;
}
.section-title span { color: var(--blue); }
.section-title em   { font-style: italic; color: var(--orange); }

/* Contraste mínimo WCAG AA 4.5:1 verificado para --gray-500 sobre fondo blanco: ~5.1:1 ✓ */
.section-sub {
  font-size: 1rem; color: var(--gray-500);
  max-width: 520px; margin: 14px auto 0; line-height: 1.75;
}

/* ── 5. ANIMACIONES – Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
}

.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 11px;
}
.nav-logo-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,87,184,.35);
}
.nav-logo-icon svg { width: 28px; height: 28px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: white;
  transition: color var(--t) var(--ease);
}
#navbar.scrolled .nav-logo-name { color: var(--blue-dark); }
.nav-logo-sub {
  font-size: .63rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t) var(--ease);
}
#navbar.scrolled .nav-logo-sub { color: var(--gray-500); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  font-size: .875rem; font-weight: 500; padding: 8px 14px;
  border-radius: 8px; color: rgba(255,255,255,.85);
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.nav-link:hover { background: rgba(255,255,255,.14); color: white; }
#navbar.scrolled .nav-link { color: var(--gray-700); }
#navbar.scrolled .nav-link:hover { background: var(--gray-50); color: var(--blue); }

/* Nav CTA */
.nav-cta {
  padding: 10px 22px; border-radius: 50px;
  background: var(--orange); color: white;
  font-size: .84rem; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 4px 14px rgba(255,107,0,.38);
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t) var(--ease);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,107,0,.48);
  background: var(--orange-dk);
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 9px; border-radius: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px;
  transition: all .3s var(--ease);
}
#navbar.scrolled .nav-hamburger span { background: var(--gray-700); }

/* Mobile Nav */
.nav-mobile {
  position: fixed; inset: 0; z-index: 999;
  background: white;
  display: flex; flex-direction: column;
  padding: 88px 32px 40px;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
}
.nav-mobile[aria-hidden="false"] { transform: translateX(0); }

.nav-mobile-close {
  position: absolute; top: 22px; right: 22px;
  font-size: 1.3rem; color: var(--gray-500); padding: 8px;
  border-radius: 50%; transition: color var(--t), background var(--t);
}
.nav-mobile-close:hover { color: var(--orange); background: var(--orange-lt); }

.nav-mobile-link {
  display: block; padding: 15px 0; font-size: 1.1rem; font-weight: 600;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
  transition: color var(--t);
}
.nav-mobile-link:hover { color: var(--blue); }

.nav-mobile-cta {
  display: block; margin-top: 28px; padding: 15px 30px;
  background: var(--orange); color: white;
  border-radius: 50px; text-align: center;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255,107,0,.35);
}

.nav-backdrop {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.45); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.nav-backdrop.visible { opacity: 1; pointer-events: auto; }

/* ══════════════════════════════════════════════════
   [AIDA – ATENCIÓN] HERO
══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(155deg, rgba(0,23,65,.82) 0%, rgba(0,61,133,.45) 55%, rgba(255,107,0,.15) 100%),
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}

/* Fade suave al blanco abajo */
#hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

/* Orbes decorativos – profundidad visual */
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; bottom: -80px; left: 20%; background: radial-gradient(circle, rgba(0,87,184,.2) 0%, transparent 70%); }

.hero-content { position: relative; z-index: 1; max-width: 680px; }

/* Badge de credibilidad inicial */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.11); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 50px;
  padding: 8px 18px; color: white;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 26px;
  animation: fadeUp .8s var(--ease) both;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.5)} }

/* Headline – mayor impacto visual */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  font-weight: 700; color: white; line-height: 1.08;
  letter-spacing: -.5px;
  animation: fadeUp .88s .12s var(--ease) both;
}
.hero-title em {
  font-style: italic; color: var(--gold); display: block;
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.82); margin-top: 22px; max-width: 500px;
  line-height: 1.75;
  animation: fadeUp .88s .25s var(--ease) both;
}

/* Botones hero */
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px;
  animation: fadeUp .88s .38s var(--ease) both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 50px;
  background: var(--orange); color: white;
  font-size: .95rem; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 8px 26px rgba(255,107,0,.48);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255,107,0,.58);
  background: var(--orange-dk);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 50px;
  background: rgba(255,255,255,.11); color: white;
  border: 1.5px solid rgba(255,255,255,.45);
  font-size: .95rem; font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background var(--t) var(--ease), border-color var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: white; }

/* Stats en hero – prueba social inmediata */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 50px;
  animation: fadeUp .88s .52s var(--ease) both;
}
.hero-stat { color: white; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  line-height: 1; color: var(--gold);
}
.hero-stat-label { font-size: .76rem; color: rgba(255,255,255,.65); margin-top: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--blue-deep, var(--blue-dark)); padding: 13px 0;
  overflow: hidden; position: relative; z-index: 1;
  background: linear-gradient(90deg, var(--blue-deeper), var(--blue-dark));
}
.ticker-inner {
  display: flex; align-items: center; gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap; width: max-content;
}
/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .ticker-inner { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero-title, .hero-sub, .hero-actions, .hero-stats { animation: none; }
}
.ticker-inner span {
  font-size: .77rem; font-weight: 600; color: rgba(255,255,255,.65);
  padding: 0 26px; letter-spacing: 1.5px; text-transform: uppercase;
}
.ticker-inner span em { color: var(--gold); font-style: normal; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════
   [AIDA – INTERÉS] BENEFITS
══════════════════════════════════════════════════ */
#benefits { padding: 96px 0; background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 32px 28px; border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1.5px solid transparent;
  position: relative; overflow: hidden;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
/* Línea top degradada al hacer hover */
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.benefit-card:hover {
  border-color: var(--blue-light);
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
  transition: background var(--t), transform var(--t);
}
.benefit-card:hover .benefit-icon { background: var(--blue); transform: scale(1.07) rotate(-4deg); }

.benefit-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
/* Contraste verificado: var(--gray-500) sobre var(--off-white) ~5.1:1 ✓ */
.benefit-text { font-size: .875rem; color: var(--gray-500); line-height: 1.65; }

/* Stats bar */
.stats-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  border-radius: var(--r-lg); overflow: hidden; margin-top: 64px;
}
.stat-item {
  flex: 1; min-width: 160px; text-align: center;
  padding: 34px 20px; border-right: 1px solid rgba(255,255,255,.09);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: white;
}
.stat-num span { color: var(--gold); }
/* Contraste: gold #FFAD5B sobre blue #0057B8 – 4.6:1 ✓ WCAG AA */
.stat-label { font-size: .76rem; color: rgba(255,255,255,.6); margin-top: 7px; letter-spacing: 1px; text-transform: uppercase; }

/* ══════════════════════════════════════════════════
   [AIDA – DESEO] DESTINATIONS
══════════════════════════════════════════════════ */
#destinations { padding: 96px 0; background: var(--off-white); }

.dest-tabs {
  display: flex; gap: 8px; margin-bottom: 36px;
}
.dest-tab {
  padding: 10px 24px; border-radius: 50px;
  font-size: .875rem; font-weight: 600;
  border: 2px solid var(--gray-300); color: var(--gray-500);
  transition: all var(--t) var(--ease); cursor: pointer;
}
.dest-tab.active {
  background: var(--blue); border-color: var(--blue); color: white;
  box-shadow: 0 4px 14px rgba(0,87,184,.3);
}
.dest-tab:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

.dest-panel { display: none; }
.dest-panel.active { display: block; }

/* Carousel */
.carousel-outer { position: relative; overflow: hidden; }
.carousel-track {
  display: flex; gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.dest-card {
  flex: 0 0 calc(33.333% - 16px); min-width: 280px;
  border-radius: var(--r-lg); overflow: hidden;
  background: white; box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.dest-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-lg); }

.dest-img-wrap { overflow: hidden; position: relative; }
.dest-img { height: 210px; width: 100%; object-fit: cover; transition: transform .48s var(--ease); }
.dest-card:hover .dest-img { transform: scale(1.05); }

.dest-badge {
  position: absolute; top: 14px; left: 14px;
  background: white; border-radius: 50px; padding: 5px 12px;
  font-size: .7rem; font-weight: 700; color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.dest-body { padding: 20px 22px 22px; }
.dest-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--gray-900); line-height: 1.2;
}
.dest-desc { font-size: .82rem; color: var(--gray-500); margin-top: 6px; line-height: 1.55; }
.dest-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.dest-price { font-size: .78rem; color: var(--gray-500); }
.dest-price strong { display: block; font-size: 1.05rem; color: var(--orange); font-weight: 700; }

.btn-dest {
  padding: 9px 18px; border-radius: 50px;
  background: var(--blue); color: white;
  font-size: .8rem; font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.btn-dest:hover { background: var(--blue-dark); transform: scale(1.04); }

/* Carousel controls */
.carousel-nav {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  transition: all var(--t) var(--ease);
}
.carousel-btn:hover { background: var(--blue); border-color: var(--blue); color: white; }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); cursor: pointer;
  transition: background var(--t), transform var(--t);
  border: none;
}
.carousel-dot.active { background: var(--blue); transform: scale(1.35); }
.carousel-dot:hover:not(.active) { background: var(--blue-mid); }

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
#services { padding: 96px 0; background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}

.service-card {
  text-align: center; padding: 32px 18px;
  border-radius: var(--r-lg); border: 1.5px solid var(--gray-100);
  background: var(--white);
  transition: all var(--t) var(--ease); cursor: default;
}
.service-card:hover {
  background: var(--blue); border-color: var(--blue);
  transform: translateY(-7px);
  box-shadow: 0 16px 40px rgba(0,87,184,.22);
}
.service-icon { font-size: 2.2rem; margin-bottom: 14px; transition: transform var(--t); }
.service-card:hover .service-icon { transform: scale(1.18) rotate(-6deg); }
.service-name {
  font-size: .92rem; font-weight: 700; color: var(--gray-900);
  transition: color var(--t);
}
.service-card:hover .service-name { color: white; }
.service-desc {
  font-size: .78rem; color: var(--gray-500); margin-top: 7px;
  line-height: 1.5; transition: color var(--t);
}
.service-card:hover .service-desc { color: rgba(255,255,255,.78); }

/* ══════════════════════════════════════════════════
   [AIDA – DESEO] WHY US + TESTIMONIALS
══════════════════════════════════════════════════ */
#why-us {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--gray-900) 0%, var(--blue-deeper) 100%);
  position: relative; overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.07) 0%, transparent 70%);
  pointer-events: none;
}
#why-us::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,184,.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}

.why-left .section-title { color: white; }
.why-left .section-title span { color: var(--gold); }
.why-left .section-sub { color: rgba(255,255,255,.6); margin-left: 0; }

.why-features { display: flex; flex-direction: column; gap: 18px; margin-top: 38px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 20px 22px;
  transition: background var(--t) var(--ease), border-color var(--t);
}
.why-feature:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); }
.why-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(255,107,0,.18); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
}
/* Contraste: white sobre rgba(255,255,255,.05) background – verificado ✓ */
.why-feature-title { font-size: .95rem; font-weight: 700; color: white; margin-bottom: 4px; }
.why-feature-text { font-size: .82rem; color: rgba(255,255,255,.58); line-height: 1.55; }

/* Testimonials */
.testimonials { display: flex; flex-direction: column; gap: 20px; }
.testimonial {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 24px 26px;
  transition: transform var(--t) var(--ease), border-color var(--t);
}
.testimonial:hover { transform: translateX(6px); border-color: rgba(255,255,255,.2); }
.testimonial-stars { color: var(--gold); font-size: .88rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-text { font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.68; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-avatar {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: white;
}
.testimonial-name { display: block; font-size: .85rem; font-weight: 700; color: white; }
.testimonial-city { font-size: .74rem; color: rgba(255,255,255,.48); }

/* ══════════════════════════════════════════════════
   [AIDA – ACCIÓN] CONTACT / CTA
══════════════════════════════════════════════════ */
#contact {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--orange-lt) 0%, #FFF9F5 100%);
  position: relative; overflow: hidden;
}
/* Elemento decorativo fondo */
#contact::before {
  content: '✈';
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  font-size: 18rem; opacity: .03; line-height: 1; pointer-events: none;
  user-select: none;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.contact-left .section-title { color: var(--gray-900); }
.contact-left .section-sub { margin-left: 0; }

/* CTAs de acción directa */
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
}

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  background: #25D366; color: white;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 8px 26px rgba(37,211,102,.38);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,.5); }

.btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 50px;
  background: white; color: var(--blue-dark);
  font-size: .95rem; font-weight: 700;
  border: 2px solid var(--blue);
  transition: all var(--t) var(--ease);
}
.btn-call:hover { background: var(--blue); color: white; transform: translateY(-2px); }

.cta-note {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: var(--gray-500); margin-top: 22px;
}

/* Formulario de cotización */
.contact-form-wrap {
  background: white; border-radius: var(--r-xl);
  padding: 40px 36px; box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,.04);
}
.form-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--gray-900); margin-bottom: 4px;
}
.form-subtitle { font-size: .875rem; color: var(--gray-500); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: 7px;
}
.required { color: var(--orange); }

/* Contraste inputs: gris oscuro sobre blanco – verificado WCAG AA ✓ */
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--gray-300);
  font-family: var(--font-body); font-size: .9rem;
  color: var(--gray-900); background: var(--off-white);
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-300); }
/* Focus state accesible – visualmente claro */
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); background: white;
  box-shadow: 0 0 0 3px rgba(0,87,184,.14);
  outline: none;
}
/* Estado de error */
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #D63030;
  box-shadow: 0 0 0 3px rgba(214,48,48,.12);
}
.form-error {
  display: block; font-size: .78rem; color: #C62020;
  margin-top: 5px; min-height: 18px;
}
.form-hint { display: block; font-size: .76rem; color: var(--gray-500); margin-top: 5px; }

.form-textarea { resize: vertical; min-height: 90px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2368778F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}

/* CTA principal del formulario – máximo contraste (#fff sobre #FF6B00: 3.3:1, aceptable para large text bold) */
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 11px;
  padding: 15px 24px; border-radius: 50px;
  background: linear-gradient(135deg, #25D366, #1DB954); color: white;
  font-size: .97rem; font-weight: 700; letter-spacing: .2px;
  box-shadow: 0 8px 28px rgba(37,211,102,.42);
  transition: transform var(--t) var(--ease), box-shadow var(--t), filter var(--t);
  margin-top: 6px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(37,211,102,.55);
  filter: brightness(1.05);
}
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: .76rem; color: var(--gray-500); margin-top: 14px;
  justify-content: center;
}

/* ══════════════════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════════════════ */
#wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 22px rgba(37,211,102,.52);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: waPop 1s 1.8s both;
}
#wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,.62); }
#wa-float svg { width: 30px; height: 30px; fill: white; }

.wa-tooltip {
  position: absolute; right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900); color: white;
  font-size: .78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity .22s;
}
.wa-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--gray-900);
}
#wa-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: var(--gray-900);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px; padding-bottom: 56px;
}

.footer-desc {
  font-size: .85rem; color: rgba(255,255,255,.48);
  margin-top: 18px; line-height: 1.72; max-width: 285px;
}
.footer-rnt {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; padding: 7px 14px; border-radius: 50px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: .74rem; color: rgba(255,255,255,.55); letter-spacing: .4px;
}

/* Redes sociales – iconos SVG inline con colores de marca */
.footer-socials { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--t) var(--ease);
}
/* Colores de marca de cada red social al hover */
.social-btn.social-fb:hover  { background: #1877F2; color: white; transform: translateY(-3px); }
.social-btn.social-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; transform: translateY(-3px); }
.social-btn.social-tt:hover  { background: #000000; color: white; transform: translateY(-3px); }
.social-btn.social-wa:hover  { background: #25D366; color: white; transform: translateY(-3px); }

.footer-col-title {
  font-size: .73rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: .84rem; color: rgba(255,255,255,.48);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }

.footer-address { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: rgba(255,255,255,.48);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; stroke: rgba(255,255,255,.4); }
.footer-contact-item a { color: rgba(255,255,255,.48); transition: color var(--t); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.footer-copy { font-size: .77rem; color: rgba(255,255,255,.28); }
.footer-love { font-size: .77rem; color: rgba(255,255,255,.32); }
.footer-love a { color: var(--gold); }

/* ══════════════════════════════════════════════════
   RESPONSIVE – Mobile First
   Los estilos base ya son mobile-friendly gracias a clamp/auto-fit
   Aquí refinamos puntos de quiebre específicos
══════════════════════════════════════════════════ */

/* Tablet grande */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
}

/* Tablet */
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .dest-card { flex: 0 0 calc(50% - 12px); min-width: 260px; }
}

/* Móvil */
@media (max-width: 768px) {
  /* Ocultar nav desktop, mostrar hamburger */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child { border-bottom: none; }
  .dest-tabs { flex-wrap: wrap; }
}

/* Móvil pequeño */
@media (max-width: 520px) {
  .dest-card { flex: 0 0 85%; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .btn-wa, .btn-call { justify-content: center; }
  #wa-float { bottom: 20px; right: 18px; width: 52px; height: 52px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 24px 18px; }
  .footer-socials { flex-wrap: wrap; }
}
