/* =============================================
   VIRTUAL PLUS VIAJES — Styles + Animations
   Colors: #154570 | #266ca5 | #4a9fd7 | #5e6061 | #939393
   ============================================= */

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

:root {
  --blue-dark:   #154570;
  --blue-mid:    #266ca5;
  --blue-light:  #4a9fd7;
  --gray-dark:   #5e6061;
  --gray-mid:    #939393;
  --gray-light:  #f0f2f5;
  --white:       #ffffff;

  --font-base: 'Segoe UI', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(21, 69, 112, 0.10);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  color: var(--gray-dark);
  background: 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; }

/* =============================================
   KEYFRAMES
   ============================================= */

/* Hero entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroScale {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

/* Ken Burns — zoom suave en fondo de hero */
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0)   translateY(0); }
  50%  { transform: scale(1.06) translateX(-1%) translateY(-1%); }
  100% { transform: scale(1)    translateX(0)   translateY(0); }
}

/* Navbar slide down */
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* Scroll reveal — up */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal — left */
@keyframes revealLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal — right */
@keyframes revealRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Fade only */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Pulse WhatsApp */
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Float — pilar icons */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Shimmer — placeholders */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

/* Underline expand — nav links */
@keyframes underlineIn {
  from { width: 0; }
  to   { width: 100%; }
}

/* Tab fade in */
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide fade — slider items */
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* =============================================
   SCROLL REVEAL SYSTEM
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal--fade  { transform: none; }
.reveal--scale { transform: scale(0.88); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }
.reveal--d4 { transition-delay: 0.4s; }
.reveal--d5 { transition-delay: 0.5s; }
.reveal--d6 { transition-delay: 0.6s; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }

.section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  display: block;          /* bloque completo — sin overflow horizontal */
  width: 100%;
}

/* Línea decorativa bajo el título */
.section__title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width 0.6s ease 0.3s;
}
.section__title.is-visible::after { width: 60%; }

.section__title--left {
  text-align: left;
}
.section__title--left::after { margin: 10px 0 0; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ripple pseudo-element */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: inherit;
}
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 4px 16px rgba(21,69,112,0.35);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}
.btn--outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38,108,165,0.3);
}

.btn--destination {
  background: var(--blue-light);
  color: var(--white);
  border-color: var(--blue-light);
  width: 100%;
  margin-top: 12px;
}
.btn--destination:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  padding: 12px 32px;
  font-size: 1rem;
  animation: waPulse 2.5s infinite;
}

/* Flotante WhatsApp */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  animation: waPulse 2.5s infinite;
  transition: transform .2s, background .2s;
}
.wa-float:hover {
  background: #1ebe5b;
  transform: scale(1.1);
}
.btn--whatsapp:hover {
  background: #1ebe5b;
  border-color: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

/* =============================================
   PLACEHOLDERS — shimmer loading effect
   ============================================= */
.logo-placeholder,
.hero__image-placeholder,
.card__image,
.video-placeholder,
.destino-card__image {
  background: linear-gradient(90deg, var(--gray-light) 25%, #e2e6ea 50%, var(--gray-light) 75%);
  background-size: 800px 100%;
  animation: shimmer 2s infinite linear;
  border: 2px dashed var(--gray-mid);
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  animation: navSlideDown 0.5s ease both;
}

/* Navbar scrolled — más compacta y con sombra */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  transition: height 0.3s ease;
}
.navbar.scrolled .navbar__container { height: 68px; }

/* -----------------------------------------------
   Logo — Navbar
   El logo es azul oscuro sobre fondo blanco PNG.
   Se envuelve en un círculo blanco para que sea
   visible sobre el fondo oscuro del navbar.
   ----------------------------------------------- */
.navbar__logo a {
  display: flex;
  align-items: center;
  background: none;
  border-radius: 0;
  padding: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.navbar__logo a:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.navbar__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

/* Logo más compacto cuando el navbar hace scroll */
.navbar.scrolled .navbar__logo a  { padding: 0; }
.navbar.scrolled .navbar__logo-img { height: 60px; width: auto; }

/* -----------------------------------------------
   Logo — Footer
   Mismo tratamiento: círculo blanco que lo separa
   del fondo oscuro (#0e2f4e) del footer.
   ----------------------------------------------- */
.footer__logo-wrap {
  display: inline-flex;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.navbar__mobile-cta { display: none; }

/* Nav links con underline animado */
.navbar__menu ul { display: flex; gap: 32px; }

.navbar__menu a {
  color: #154570;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.navbar__menu a:hover::after,
.navbar__menu a.active::after { width: 100%; }
.navbar__menu a:hover { color: #266ca5; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #154570;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero__image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  background-size: 800px 100%;
  animation: kenBurns 14s ease-in-out infinite;
  color: rgba(255,255,255,0.25);
  font-size: 1.1rem;
  z-index: 0;
}

/* Overlay degradado sobre la imagen */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(21,69,112,0.3) 0%, rgba(21,69,112,0.65) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
  animation: heroScale 0.9s ease both;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  animation: heroFadeUp 0.9s ease 0.25s both;
}

.hero .btn {
  animation: heroFadeUp 0.9s ease 0.5s both;
}

/* =============================================
   CARDS GRID — Promociones
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(21, 69, 112, 0.18);
}

/* Imagen con zoom en hover */
.card__image {
  height: 180px;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.card:hover .card__image { transform: scale(1.05); }

.card__body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__destination {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
}

.card__price {
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.card__desc {
  font-size: 0.9rem;
  color: var(--gray-dark);
}

/* =============================================
   TEMPORADA
   ============================================= */
.temporada { background: var(--gray-light); }

.temporada__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(21,69,112,0.2);
}

.temporada__desc {
  font-size: 1.05rem;
  color: var(--gray-dark);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =============================================
   SLIDER — Nacionales
   ============================================= */
.nacionales { background: var(--blue-dark); }

.nacionales .section__title--left { color: var(--white); }
.nacionales .section__title--left::after {
  background: linear-gradient(90deg, var(--blue-light), var(--blue-mid));
}

.slider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-light);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__btn:hover:not(:disabled) {
  background: var(--blue-light);
  color: var(--blue-dark);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(74,159,215,0.5);
}
.slider__btn:disabled { opacity: 0.35; cursor: default; }

.slider__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

/* Items del slider con animación al aparecer */
.slider__item {
  animation: slideFadeIn 0.4s ease both;
}

.slider__item .card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}
.slider__item .card:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}

.slider__item .card__image {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  animation: shimmer 2s infinite linear;
  background-size: 800px 100%;
}

.slider__item .card__desc { color: rgba(255,255,255,0.82); }

/* Dots indicadores */
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.slider__dot.is-active {
  background: var(--blue-light);
  transform: scale(1.4);
}

/* =============================================
   TABS — Internacionales
   ============================================= */
.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tabs__btn {
  padding: 8px 28px;
  border-radius: 24px;
  border: 2px solid var(--gray-mid);
  background: transparent;
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              border-color 0.25s ease, transform 0.2s ease;
}
.tabs__btn:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  transform: translateY(-2px);
}
.tabs__btn--active {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38,108,165,0.3);
}

.tabs__content { display: none; }
.tabs__content--active {
  display: block;
  animation: tabFadeIn 0.45s ease both;
}

/* =============================================
   DEST BANNER — Imagen hero por destino/tab
   ============================================= */

.dest-banner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.dest-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, opacity 0.35s ease;
}

.dest-banner:hover .dest-banner__img { transform: scale(1.04); }

/* Fade al cambiar imagen de sub-tab */
.dest-banner__img.is-switching {
  opacity: 0;
  transform: scale(1.06);
}

.dest-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 47, 78, 0.82) 0%,
    rgba(14, 47, 78, 0.35) 55%,
    rgba(14, 47, 78, 0.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  pointer-events: none;
}

.dest-banner__region {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 6px;
}

.dest-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* =============================================
   SUBTABS — Selector de región dentro de América
   ============================================= */

.subtabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.subtabs__btn {
  padding: 6px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-mid);
  background: transparent;
  color: var(--gray-dark);
  font-family: var(--font-base);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.2s ease;
}

.subtabs__btn:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  transform: translateY(-1px);
}

.subtabs__btn--active {
  background: var(--blue-dark);
  color: var(--white);
  border-color: var(--blue-dark);
  box-shadow: 0 3px 10px rgba(21, 69, 112, 0.30);
}

/* =============================================
   NOSOTROS
   ============================================= */
.nosotros { background: var(--gray-light); }

.nosotros__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.nosotros__divider::before,
.nosotros__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-mid), transparent);
}

.nosotros__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
  text-align: center;
}

.nosotros__desc {
  text-align: center;
  font-size: 1rem;
  color: var(--gray-dark);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pilar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pilar__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: float 4.5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  flex-shrink: 0;
}
.pilar:hover .pilar__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(38,108,165,0.25);
}
.pilar:nth-child(2) .pilar__icon { animation-delay: 1.5s; }
.pilar:nth-child(3) .pilar__icon { animation-delay: 3s; }

.pilar__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
  transition: color 0.3s ease;
}
.pilar:hover .pilar__label { color: var(--blue-mid); }

.nosotros__cta { text-align: right; }

/* =============================================
   CONTACTO
   ============================================= */
.contacto { background: var(--gray-light); }

.contacto__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(21,69,112,0.15);
}

/* Panel izquierdo — info */
.contacto__info {
  background: var(--blue-dark);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contacto__info-badge {
  display: inline-block;
  background: rgba(74,159,215,0.2);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid rgba(74,159,215,0.3);
}

.contacto__info-title {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.contacto__info-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contacto__datos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
}

.contacto__datos li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contacto__dato-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.contacto__datos li:hover .contacto__dato-icon {
  background: rgba(74,159,215,0.25);
}

.contacto__dato-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 2px;
}

.contacto__dato-value {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

/* Panel derecho — formulario */
.contacto__form {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: 0.03em;
}

.form__optional {
  font-weight: 400;
  color: var(--gray-mid);
  font-size: 0.78rem;
}

/* Wrap input + ícono */
.form__input-wrap {
  position: relative;
}

.form__input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-mid);
  pointer-events: none;
  transition: color 0.25s ease;
}

.form__textarea + .form__input-icon,
.form__group:has(.form__textarea) .form__input-icon { top: 14px; transform: none; }

.form__input {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid #e2e6ea;
  border-radius: var(--radius);
  background: var(--gray-light);
  font-size: 0.88rem;
  font-family: var(--font-base);
  color: var(--gray-dark);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

.form__input:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(38,108,165,0.12);
}

.form__input-wrap:focus-within .form__input-icon { color: var(--blue-mid); }

.form__input::placeholder { color: var(--gray-mid); font-size: 0.85rem; }

.form__select {
  cursor: pointer;
  appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23939393' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 11px;
}

.form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 0.9rem;
}

.form__success {
  display: none;
  align-items: center;
  gap: 8px;
  color: #1ebe5b;
  font-size: 0.88rem;
  font-weight: 600;
}

.form__success.is-visible { display: flex; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0e2f4e;
}

/* Top: cuatro columnas */
.footer__top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand col */
.footer__logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.footer__social-icon:hover {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
  transform: translateY(-3px);
}

/* Column titles */
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}

/* Nav links */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}
.footer__links a:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Contact list */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-light);
}

/* Bottom bar */
.footer__bottom {
  padding: 18px 0;
}

.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom-inner span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s ease;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }

.footer__divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
}

/* =============================================
   MEGA SLIDER — Promociones Mega Travel
   ============================================= */

.mega-slider {
  position: relative;
}

.mega-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(21, 69, 112, 0.18);
  background: var(--gray-light);
}

.mega-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.mega-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;      /* necesario para el overlay de info */
}

.mega-slider__slide img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mega-slider__slide:hover img {
  transform: scale(1.03);
}

/* ----- Info overlay sobre cada slide ----- */
.mega-slider__slide-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 47, 78, 0.92) 0%,
    rgba(14, 47, 78, 0.50) 38%,
    rgba(14, 47, 78, 0.08) 68%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 36px;
  gap: 8px;
  pointer-events: none;  /* clicks pasan al <a> padre */
}

/* Chips: días / noches */
.ms-chips {
  display: flex;
  gap: 8px;
}

.ms-chip {
  background: rgba(74, 159, 215, 0.22);
  border: 1px solid rgba(74, 159, 215, 0.55);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}

/* Nombre del paquete */
.ms-title {
  font-size: clamp(1.05rem, 2.8vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  max-width: 68%;
}

/* Fila precio + CTA */
.ms-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  pointer-events: all;  /* re-habilita clicks en el row inferior */
}

.ms-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ms-price__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
}

.ms-price__value {
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.ms-price__value sup {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.8;
  vertical-align: super;
}

.ms-price__imp {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Botón CTA */
.ms-cta {
  display: inline-block;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 28px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: background var(--transition), color var(--transition),
              transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-slider__slide:hover .ms-cta {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

/* Flechas de navegación superpuestas al viewport */
.mega-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-slider__btn--prev { left: 16px; }
.mega-slider__btn--next { right: 16px; }

.mega-slider__btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(21, 69, 112, 0.25);
}

/* Indicadores de posición */
.mega-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 0;
}

.mega-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mega-slider__dot.is-active {
  background: var(--blue-mid);
  transform: scale(1.4);
}

.mega-slider__attr {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 16px;
}

.mega-slider__attr strong { color: var(--blue-mid); }

/* =============================================
   MEGA IFRAME — Mega Conexión Nacionales
   ============================================= */

.mega-iframe-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.mega-iframe {
  width: 100%;
  min-height: 640px;
  border: none;
  display: block;
}

/* ==============================================
   RESPONSIVE
   Breakpoints utilizados:
     ≤ 1024px  Tablet
     ≤ 768px   Mobile / Tablet portrait
     ≤ 480px   Small mobile
     ≤ 360px   Extra small
   + Landscape orientation para teléfonos
   + Reduced motion (accesibilidad)
   ============================================== */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {

  /* Grids de 3 columnas pasan a 2 en tablet */
  .cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .slider__track { grid-template-columns: repeat(2, 1fr); }

  /* Temporada: reducir separación entre columnas */
  .temporada__layout { gap: 28px; }

  /* Footer: brand ocupa fila completa + 3 cols restantes */
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* ---------- LANDSCAPE MOBILE
   Teléfonos girados horizontalmente (alto ≤ 500px)
   ------------------------------------------------ */
@media (max-height: 500px) and (orientation: landscape) {

  /* Hero compacto: el espacio vertical es limitado en landscape */
  .hero { min-height: 260px; }

  /* Navbar: permite scroll en el menú para no tapar la pantalla */
  .navbar__menu {
    max-height: 80vh;
    overflow-y: auto;
  }

  /* Temporada mantiene layout de dos columnas en landscape */
  .temporada__layout { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Iframe más bajo para evitar scroll excesivo */
  .mega-iframe { min-height: 380px; }

  /* ----- Mega Slider info overlay ----- */
  .mega-slider__slide-info { padding: 22px 28px; gap: 6px; }
  .ms-title { max-width: 80%; }

  /* ----- Dest banner ----- */
  .dest-banner         { height: 260px; }
  .dest-banner__overlay{ padding: 22px 24px; }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {

  /* ----- Espaciado general ----- */
  .section { padding: 44px 0; }

  /* Reveal: menor distancia de entrada para pantallas pequeñas */
  .reveal        { transform: translateY(28px); }
  .reveal--left  { transform: translateX(-28px); }
  .reveal--right { transform: translateX(28px); }

  /* ----- Navbar ----- */
  .navbar__logo-img { height: 62px; width: auto; }

  .navbar__toggle { display: flex; }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: none;
    padding: 8px 0 0;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    border-top: 1px solid #e8eef5;
  }
  .navbar__menu.is-open {
    display: block;
    animation: heroFadeUp 0.3s ease both;
  }
  .navbar__menu ul { flex-direction: column; gap: 0; }
  .navbar__menu a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    color: #154570 !important;
    border-bottom: 1px solid #f0f4f8;
  }
  .navbar__menu a:last-child { border-bottom: none; }
  /* Botón WA en menú móvil */
  .navbar__mobile-cta { padding: 16px 20px; border-top: 1px solid #e8eef5; display: block; }
  .navbar__mobile-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
  }
  /* top-bar en móvil en 2 columnas */
  .top-bar__inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
  }
  .top-bar__inner span:nth-child(n+3) { display: flex !important; }

  /* ----- Hero ----- */
  .hero { min-height: 420px; }

  /* ----- Mega Slider (Promociones) ----- */
  .mega-slider__btn       { width: 38px; height: 38px; font-size: 1.4rem; }
  .mega-slider__btn--prev { left: 8px; }
  .mega-slider__btn--next { right: 8px; }
  .mega-slider__slide img { aspect-ratio: 16 / 9; }

  /* ----- Slide overlay en móvil ----- */
  .mega-slider__slide-info { padding: 16px 18px; gap: 5px; }
  .ms-title  { max-width: 100%; font-size: 1rem; }
  .ms-chips  { gap: 5px; }
  .ms-chip   { font-size: 0.68rem; padding: 2px 9px; }
  .ms-price__value { font-size: 1.25rem; }
  .ms-cta    { font-size: 0.78rem; padding: 7px 16px; }

  /* ----- Cards ----- */
  .cards-grid { grid-template-columns: 1fr; }

  /* ----- Temporada ----- */
  .temporada__layout { grid-template-columns: 1fr; gap: 24px; }

  /* ----- Mega Iframe (Nacionales) ----- */
  .mega-iframe { min-height: 500px; }

  /* ----- Internacionales ----- */
  .tabs          { justify-content: center; }
  .dest-banner   { height: 240px; }

  /* Sub-tabs: scroll horizontal si no caben */
  .subtabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .subtabs::-webkit-scrollbar { display: none; }

  /* ----- Slider genérico ----- */
  .slider__track { grid-template-columns: 1fr; }

  /* ----- Pilares (Nosotros) ----- */
  .pilares       { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pilar__icon   { width: 56px; height: 56px; }
  .nosotros__cta { text-align: center; }

  /* ----- Contacto ----- */
  .contacto__layout { grid-template-columns: 1fr; border-radius: 12px; }
  .contacto__info   { padding: 36px 28px; }
  .contacto__form   { padding: 36px 28px; }
  .form__row        { grid-template-columns: 1fr; }

  /* ----- Footer ----- */
  .footer__container    { grid-template-columns: 1fr 1fr; }
  .footer__col--brand   { grid-column: 1 / -1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {

  /* ----- Hero ----- */
  .hero { min-height: 360px; }

  /* ----- Mega Slider ----- */
  .mega-slider__dots { gap: 6px; }
  .mega-slider__dot  { width: 7px; height: 7px; }

  /* ----- Mega Iframe ----- */
  .mega-iframe { min-height: 460px; }

  /* ----- Tabs ----- */
  .tabs      { justify-content: center; gap: 8px; }
  .tabs__btn { padding: 7px 18px; font-size: 0.85rem; }

  /* ----- Dest banner ----- */
  .dest-banner         { height: 200px; }
  .dest-banner__overlay{ padding: 16px 20px; }

  /* ----- Sub-tabs ----- */
  .subtabs__btn { padding: 5px 16px; font-size: 0.82rem; }

  /* ----- Nosotros ----- */
  .pilares           { gap: 12px; }
  .pilar__label      { font-size: 0.8rem; }
  .nosotros__divider { gap: 10px; }
  .nosotros__title   { font-size: 1rem; white-space: normal; text-align: center; }

  /* ----- Footer: una sola columna ----- */
  .footer__container { grid-template-columns: 1fr; }
}

/* ---------- EXTRA SMALL (≤ 360px) ---------- */
@media (max-width: 360px) {

  /* Menos padding horizontal para aprovechar espacio */
  .container { padding: 0 14px; }
  .section   { padding: 36px 0; }

  /* ----- Hero ----- */
  .hero { min-height: 320px; }

  /* ----- Mega Iframe ----- */
  .mega-iframe { min-height: 400px; }

  /* ----- Contacto ----- */
  .contacto__info { padding: 28px 20px; }
  .contacto__form { padding: 28px 20px; }

  /* ----- Pilares: fila única cuando el ancho es muy reducido ----- */
  .pilares { grid-template-columns: 1fr; }
  .pilar   { flex-direction: row; gap: 16px; text-align: left; }
}

/* ---------- REDUCED MOTION
   Respeta la preferencia del sistema operativo del usuario
   -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==============================================
   BLOQUE DE ESTILOS V5 — Rediseño completo
   Hero · Paquetes Destacados · Nosotros · Revista
   ============================================== */

/* ---- Nuevos keyframes ---- */
@keyframes particleFloat {
  0%   { transform: translateY(0)    translateX(0)    scale(1);    opacity: 0.55; }
  33%  { transform: translateY(-24px) translateX(12px)  scale(1.1); opacity: 0.85; }
  66%  { transform: translateY(-12px) translateX(-9px)  scale(0.95); opacity: 0.65; }
  100% { transform: translateY(0)    translateX(0)    scale(1);    opacity: 0.55; }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(7px); }
}
@keyframes cardFloat3d {
  0%, 100% { transform: perspective(800px) translateZ(0) rotateX(0deg); }
  50%       { transform: perspective(800px) translateZ(12px) rotateX(-1.5deg); }
}

/* =============================================
   SECTION HEADER — utilitario reutilizable
   ============================================= */
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__header--left             { text-align: left; }
.section__header--left .section__title {
  text-align: left;
}
.section__header--left .section__subtitle { margin-left: 0; }

.section__subtitle {
  font-size: 1rem;
  color: var(--gray-mid);
  max-width: 540px;
  margin: -26px auto 0;
  line-height: 1.6;
}

/* Span de acento en títulos */
.title-accent { color: var(--blue-mid); }

/* =============================================
   HERO v2 — Parallax 3D · Partículas · Stats
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-dark);
  --rx: 0px;
  --ry: 0px;
}

/* Imagen de fondo con parallax via CSS custom props actualizados por JS */
.hero__layer {
  position: absolute;
  inset: 0;
}
.hero__layer--bg {
  transform: translateX(calc(var(--rx) * -0.28))
             translateY(calc(var(--ry) * -0.28))
             scale(1.14);
  transition: transform 0.08s linear;
  will-change: transform;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: kenBurns 22s ease-in-out infinite;
}
.hero__layer--overlay {
  background: linear-gradient(
    160deg,
    rgba(14, 47, 78, 0.80) 0%,
    rgba(21, 69, 112, 0.62) 50%,
    rgba(38, 108, 165, 0.42) 100%
  );
  z-index: 1;
}

/* Partículas flotantes */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(74, 159, 215, 0.14);
  border: 1px solid rgba(74, 159, 215, 0.28);
  animation: particleFloat linear infinite;
}
.particle:nth-child(1) { width: 90px;  height: 90px;  top: 12%;  left: 7%;   animation-duration: 13s; animation-delay: 0s;   }
.particle:nth-child(2) { width: 55px;  height: 55px;  top: 58%;  left: 14%;  animation-duration: 9s;  animation-delay: 2.2s; }
.particle:nth-child(3) { width: 130px; height: 130px; top: 20%;  right: 8%;  animation-duration: 16s; animation-delay: 1.1s; }
.particle:nth-child(4) { width: 42px;  height: 42px;  top: 72%;  right: 18%; animation-duration: 8s;  animation-delay: 3.5s; }
.particle:nth-child(5) { width: 70px;  height: 70px;  top: 42%;  left: 48%;  animation-duration: 12s; animation-delay: 0.7s; }
.particle:nth-child(6) { width: 28px;  height: 28px;  top: 82%;  left: 32%;  animation-duration: 7s;  animation-delay: 4.8s; }

/* Contenido principal */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  width: 100%;
}

/* Badge de credencial */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 159, 215, 0.14);
  border: 1px solid rgba(74, 159, 215, 0.38);
  color: var(--blue-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 28px;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
  animation: heroFadeUp 0.8s ease 0.1s both;
}

/* Título */
.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.08;
  text-shadow: 0 4px 24px rgba(0,0,0,0.38);
  animation: heroScale 0.9s ease 0.25s both;
  letter-spacing: -0.025em;
}
.hero__title-highlight {
  display: block;
  background: linear-gradient(90deg, var(--blue-light) 0%, #9ee0ff 60%, var(--blue-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Subtítulo */
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.84);
  max-width: 580px;
  margin: 0 auto 38px;
  line-height: 1.75;
  animation: heroFadeUp 0.9s ease 0.4s both;
}

/* CTAs */
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: heroFadeUp 0.9s ease 0.55s both;
}

/* Variantes de botón nuevas */
.btn--ghost {
  background: rgba(255,255,255,0.11);
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 14px 30px;
  font-size: 0.97rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 22px 36px;
  backdrop-filter: blur(12px);
  max-width: 520px;
  margin: 0 auto;
  animation: heroFadeUp 0.9s ease 0.7s both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 30px;
  flex: 1;
}
.hero__stat strong {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero__stat strong span { color: var(--blue-light); font-size: 0.7em; }
.hero__stat > span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}
.hero__stat-div {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Scroll hint animado */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.45);
  animation: heroFadeUp 1s ease 1.2s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* =============================================
   NACIONALES — actualización de fondo
   ============================================= */
.nacionales { background: var(--white); }
.nacionales .section__title   { color: var(--blue-dark); }
.nacionales .section__subtitle { color: var(--gray-mid); }

/* =============================================
   PAQUETES DESTACADOS — Flip Cards 3D
   ============================================= */
.paq-dest { background: var(--gray-light); }

.paq-grid {
  display: grid;
  /* 5 columnas en desktop → 2 filas limpias con los 10 paquetes */
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* La tarjeta necesita perspective para el efecto 3D */
.paq-card {
  /* Relación 9:16 para encajar las imágenes portrait de Mega Travel */
  height: 420px;
  perspective: 1100px;
  cursor: pointer;
}

.paq-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 14px;
  will-change: transform;
}
.paq-card:hover .paq-card__inner,
.paq-card:focus-within .paq-card__inner {
  transform: rotateY(180deg);
}

/* Cara delantera y trasera */
.paq-card__front,
.paq-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 69, 112, 0.15);
}

/* Frente — object-position: top para imágenes portrait (9:16) de Mega Travel */
.paq-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.paq-card:hover .paq-card__front img { transform: scale(1.06); }

.paq-card__front-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 47, 78, 0.92) 0%,
    rgba(14, 47, 78, 0.40) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  gap: 8px;
}

.paq-card__region {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.paq-card__front-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.paq-card__flip-hint {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

/* Reverso */
.paq-card__back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--blue-dark) 0%, #0d3a5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.paq-card__back-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.paq-card__back-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.paq-card__back-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.paq-card__back-detail {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.paq-card__back-detail li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
}
.paq-card__back-detail li svg { color: var(--blue-light); flex-shrink: 0; }

.paq-card__back-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
}
.paq-card__back-price span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.48);
}
.paq-card__back-price strong {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.paq-card__back-price strong sup {
  font-size: 0.5em;
  font-weight: 700;
  opacity: 0.75;
  vertical-align: super;
}
.paq-card__back-price small {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.45);
}
.paq-card__back-content .btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  justify-content: center;
}

.paq-dest__cta {
  text-align: center;
  margin-top: 44px;
}

/* =============================================
   NOSOTROS v2 — Stats · Cuerpo · Pilares
   ============================================= */
.nosotros { background: var(--gray-light); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--blue-dark);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 72px;
  box-shadow: 0 12px 48px rgba(21, 69, 112, 0.28);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 24px;
  text-align: center;
  position: relative;
  transition: background 0.3s ease;
}
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item__number {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-item__number span { color: var(--blue-light); font-size: 0.65em; }
.stat-item__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  line-height: 1.4;
}

/* Cuerpo: texto + imagen */
.nosotros__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 80px;
}
.nosotros__text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.nosotros__text p {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}
.nosotros__visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(21, 69, 112, 0.22);
}
.nosotros__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.nosotros__visual:hover img { transform: scale(1.04); }

.nosotros__visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--blue-dark);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nosotros__visual-badge svg { color: var(--blue-light); flex-shrink: 0; }
.nosotros__visual-badge strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--white); }
.nosotros__visual-badge span  { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* Pilares rediseñados */
.pilares-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 36px;
}
.pilares {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pilar {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(21, 69, 112, 0.07);
  border: 1px solid rgba(21, 69, 112, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pilar:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px rgba(21, 69, 112, 0.18);
}
.pilar__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  animation: float 4.5s ease-in-out infinite;
  /* Anular estilos de placeholder */
  border: none;
  background-image: none;
  background-size: unset;
}
.pilar:nth-child(2) .pilar__icon { animation-delay: 1.5s; }
.pilar:nth-child(3) .pilar__icon { animation-delay: 3s;   }
.pilar__text { display: flex; flex-direction: column; gap: 8px; }
.pilar__label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.pilar__desc {
  font-size: 0.86rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

/* =============================================
   REVISTA — Mega Traveler
   ============================================= */
.revista { background: var(--white); }

.revista__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}
.revista__info {
  position: sticky;
  top: 88px;
}
.revista__info-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.revista__info h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.revista__info p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}
.revista__info-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.revista__info-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--gray-dark);
}
.revista__info-features li svg { color: var(--blue-mid); flex-shrink: 0; }

/* Iframe de la revista */
.mega-iframe-wrap--revista {
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border-radius: 12px;
  overflow: hidden;
}
.mega-iframe-wrap--revista iframe {
  width: 100%;
  min-height: 680px;
  border: none;
  display: block;
}

/* =============================================
   RESPONSIVE — Nuevos componentes
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero__stats   { padding: 18px 24px; }
  .hero__stat    { padding: 0 20px; }
  .paq-grid      { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .nosotros__body{ gap: 44px; }
  .revista__inner{ grid-template-columns: 1fr; gap: 36px; }
  .revista__info { position: static; }
}

/* Mobile */
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero__stats   { flex-direction: column; gap: 16px; padding: 20px; }
  .hero__stat    { flex-direction: row; justify-content: center; gap: 10px; padding: 0; }
  .hero__stat strong { font-size: 1.5rem; }
  .hero__stat-div { width: 100%; height: 1px; }
  .paq-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .paq-card      { height: 380px; }
  .stats-row     { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { top: 0; left: 15%; width: 70%; height: 1px; }
  .nosotros__body{ grid-template-columns: 1fr; gap: 36px; }
  .nosotros__body .nosotros__visual { order: -1; }
  .pilares       { grid-template-columns: 1fr; gap: 16px; max-width: 440px; }
  .pilar         { flex-direction: row; text-align: left; gap: 20px; padding: 24px; }
  .pilar__icon   { flex-shrink: 0; width: 58px; height: 58px; }
  .section__subtitle { margin-top: -20px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__badge   { font-size: 0.65rem; padding: 5px 13px; }
  .hero__actions { gap: 10px; }
  .btn--lg       { padding: 12px 22px; font-size: 0.9rem; }
  .paq-grid      { grid-template-columns: 1fr; }
  .paq-card      { height: 360px; }
  .stats-row     { border-radius: 12px; }
  .stat-item     { padding: 28px 16px; }
}

/* ==========================================
   Aviso de Privacidad
 ========================================== */
 
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease forwards; /* animación de fondo */
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 25px;
  width: 60%;
  border-radius: 10px;
  max-height: 80vh;
  overflow-y: auto;
  line-height: 1.6;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.3s ease; /* transición del contenido */
}

/* Cuando el modal está activo */
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Espaciado y estilos de texto */
.modal-content p { margin-bottom: 15px; }
.modal-content h2 { margin-bottom: 15px; }
.modal-content h3 { margin-top: 20px; margin-bottom: 10px; }
.modal-content ul { margin-bottom: 15px; padding-left: 20px; }

/* Scroll personalizado */
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

/* Botón cerrar */
.close {
  float: right;
  font-size: 25px;
  cursor: pointer;
}

/* Animación fadeIn del fondo */
@keyframes fadeIn {
  from { background-color: rgba(0,0,0,0); }
  to { background-color: rgba(0,0,0,0.5); }
}

.btn-regresar-nacionales {
  
              position: absolute;
              top: 110px;        
              right: 50px;       
              padding: 10px 20px;
              background: #266ca5;
              color: white;
              border: none;
              border-radius: 150px;
              cursor: pointer;
              z-index: 10;
              transition: transform 0.3s ease, background 0.3s ease;
            
}

.btn-regresar-nacionales:hover {
  background-color: #266ca5;
  transform: scale(1.1);
}

.mega-iframe-wrap {
  position: relative;
}

.btn-regresar-internacionales {
  position: absolute;    
  top: 110px;           
  right: 50px;

  padding: 10px 20px;
  background: #266ca5;
  color: white;
  border: none;
  border-radius: 150px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-regresar-internacionales:hover {
  background-color: #266ca5;
  transform: scale(1.1);
}

/* =============================================
   NUEVOS ESTILOS v8 — pegar al FINAL de styles.css
   Trust Bar · Cómo Funciona · Testimonios
   Nosotros Preview · CTA Final
   ============================================= */

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e8eef5;
  border-top: 1px solid #e8eef5;
}
.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: #154570;
}
.trust-bar__item svg { color: #5aabf0; flex-shrink: 0; }
.trust-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  line-height: 1.3;
}
.trust-bar__item span {
  display: block;
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.3;
}
.trust-bar__sep {
  width: 1px;
  height: 36px;
  background: #e8eef5;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar__sep { display: none; }
  .trust-bar__item { padding: 8px 16px; width: 50%; }
}

/* ── CÓMO FUNCIONA ───────────────────────────── */
.como-funciona { background: #f8fafc; }

.pasos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}
.paso {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}
.paso__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #266ca5;
  margin-bottom: 14px;
}
.paso__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e1eaf3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #154570;
  transition: all 0.3s ease;
}
.paso:hover .paso__icon {
  background: #154570;
  color: #fff;
  border-color: #154570;
  transform: translateY(-4px);
}
.paso__title {
  font-size: 15px;
  font-weight: 600;
  color: #154570;
  margin: 0 0 8px;
}
.paso__desc {
  font-size: 13px;
  color: #6b7a8d;
  line-height: 1.6;
  margin: 0;
}
.paso__conector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #266ca5, #5aabf0);
  margin-top: 32px;
  border-radius: 2px;
}
.como-funciona__cta { text-align: center; margin-top: 8px; }

@media (max-width: 768px) {
  .pasos { flex-direction: column; align-items: center; gap: 32px; }
  .paso__conector { width: 2px; height: 32px; margin: 0; background: linear-gradient(180deg, #266ca5, #5aabf0); }
  .paso { max-width: 280px; }
}

/* ── TESTIMONIOS ─────────────────────────────── */
.testimonios { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0 48px;
}
.testi-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.10);
}
.testi-card__stars {
  font-size: 16px;
  color: #f0a500;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card__texto {
  font-size: 14px;
  color: #3d4f63;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.testi-card__autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #154570;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card__autor strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #154570;
}
.testi-card__autor span { font-size: 12px; color: #8a9bb0; }
.testimonios__cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #0d3553 0%, #154570 100%);
  border-radius: 16px;
  color: #fff;
}
.testimonios__cta p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

/* ── NOSOTROS PREVIEW ────────────────────────── */
.nosotros-preview { background: #f0f2f5; }
.nosotros-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(21,69,112,0.10);
}
.nosotros-preview__badge {
  display: inline-block;
  background: #e6f1fb;
  color: #154570;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.nosotros-preview__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #154570;
  line-height: 1.25;
  margin-bottom: 16px;
}
.nosotros-preview__text p {
  font-size: 0.95rem;
  color: #5e6061;
  line-height: 1.8;
  margin-bottom: 0;
}
.nosotros-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.np-stat {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.np-stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #154570;
  margin-bottom: 6px;
}
.np-stat span {
  font-size: 12px;
  color: #8a9bb0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .nosotros-preview__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* ── CTA FINAL ───────────────────────────────── */
.cta-final { background: #fff; padding-top: 0; }
.cta-final__inner {
  background: linear-gradient(135deg, #154570 0%, #266ca5 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}
.cta-final__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
}
.cta-final__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin: 0 0 32px;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-final__inner { padding: 40px 24px; }
  .cta-final__btns { flex-direction: column; align-items: center; }
}


/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e8eef5;
  border-top: 1px solid #e8eef5;
}
.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: #154570;
}
.trust-bar__item svg { color: #5aabf0; flex-shrink: 0; }
.trust-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  line-height: 1.3;
}
.trust-bar__item span {
  display: block;
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.3;
}
.trust-bar__sep {
  width: 1px;
  height: 36px;
  background: #e8eef5;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar__sep { display: none; }
  .trust-bar__item { padding: 8px 16px; width: 50%; }
}

/* ── CÓMO FUNCIONA ───────────────────────────── */
.como-funciona { background: #f8fafc; }

.pasos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}
.paso {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}
.paso__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #266ca5;
  margin-bottom: 14px;
}
.paso__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e1eaf3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #154570;
  transition: all 0.3s ease;
}
.paso:hover .paso__icon {
  background: #154570;
  color: #fff;
  border-color: #154570;
  transform: translateY(-4px);
}
.paso__title {
  font-size: 15px;
  font-weight: 600;
  color: #154570;
  margin: 0 0 8px;
}
.paso__desc {
  font-size: 13px;
  color: #6b7a8d;
  line-height: 1.6;
  margin: 0;
}
.paso__conector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #266ca5, #5aabf0);
  margin-top: 32px;
  border-radius: 2px;
}
.como-funciona__cta { text-align: center; margin-top: 8px; }

@media (max-width: 768px) {
  .pasos { flex-direction: column; align-items: center; gap: 32px; }
  .paso__conector { width: 2px; height: 32px; margin: 0; background: linear-gradient(180deg, #266ca5, #5aabf0); }
  .paso { max-width: 280px; }
}

/* ── TESTIMONIOS ─────────────────────────────── */
.testimonios { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0 48px;
}
.testi-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.10);
}
.testi-card__stars {
  font-size: 16px;
  color: #f0a500;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card__texto {
  font-size: 14px;
  color: #3d4f63;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.testi-card__autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #154570;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card__autor strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #154570;
}
.testi-card__autor span { font-size: 12px; color: #8a9bb0; }
.testimonios__cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #0d3553 0%, #154570 100%);
  border-radius: 16px;
  color: #fff;
}
.testimonios__cta p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

/* ── NOSOTROS PREVIEW ────────────────────────── */
.nosotros-preview { background: #f0f2f5; }
.nosotros-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(21,69,112,0.10);
}
.nosotros-preview__badge {
  display: inline-block;
  background: #e6f1fb;
  color: #154570;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.nosotros-preview__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #154570;
  line-height: 1.25;
  margin-bottom: 16px;
}
.nosotros-preview__text p {
  font-size: 0.95rem;
  color: #5e6061;
  line-height: 1.8;
  margin-bottom: 0;
}
.nosotros-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.np-stat {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.np-stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #154570;
  margin-bottom: 6px;
}
.np-stat span {
  font-size: 12px;
  color: #8a9bb0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .nosotros-preview__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* ── CTA FINAL ───────────────────────────────── */
.cta-final { background: #fff; padding-top: 0; }
.cta-final__inner {
  background: linear-gradient(135deg, #154570 0%, #266ca5 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}
.cta-final__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
}
.cta-final__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin: 0 0 32px;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-final__inner { padding: 40px 24px; }
  .cta-final__btns { flex-direction: column; align-items: center; }
}

/* ── PAGE HERO (header interno de páginas) ───── */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,47,78,0.82) 0%, rgba(21,69,112,0.70) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5aabf0;
  margin-bottom: 14px;
  background: rgba(74,159,215,0.15);
  border: 1px solid rgba(74,159,215,0.35);
  padding: 5px 16px;
  border-radius: 20px;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.page-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-hero { height: 260px; }
}

/* ── EQUIPO ──────────────────────────────────── */
.equipo { background: #fff; }
.equipo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.equipo-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(21,69,112,0.12);
}
.equipo-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #154570, #266ca5);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipo-card__initials {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.equipo-card__nombre {
  font-size: 16px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 4px;
}
.equipo-card__rol {
  display: block;
  font-size: 12px;
  color: #266ca5;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.equipo-card__bio {
  font-size: 13px;
  color: #5e6061;
  line-height: 1.7;
  margin-bottom: 16px;
}
.equipo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #8a9bb0;
}
.equipo__nota {
  font-size: 11px;
  color: #939393;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── CERTIFICACIONES ─────────────────────────── */
.cert-section { background: #f8fafc; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(21,69,112,0.10);
}
.cert-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #154570, #266ca5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cert-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 6px;
}
.cert-item p {
  font-size: 13px;
  color: #5e6061;
  line-height: 1.6;
  margin: 0;
}


/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e8eef5;
  border-top: 1px solid #e8eef5;
}
.trust-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: #154570;
}
.trust-bar__item svg { color: #5aabf0; flex-shrink: 0; }
.trust-bar__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  line-height: 1.3;
}
.trust-bar__item span {
  display: block;
  font-size: 12px;
  color: #6b7a8d;
  line-height: 1.3;
}
.trust-bar__sep {
  width: 1px;
  height: 36px;
  background: #e8eef5;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .trust-bar__sep { display: none; }
  .trust-bar__item { padding: 8px 16px; width: 50%; }
}

/* ── CÓMO FUNCIONA ───────────────────────────── */
.como-funciona { background: #f8fafc; }

.pasos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 48px 0 40px;
  flex-wrap: wrap;
}
.paso {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 0 16px;
}
.paso__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #266ca5;
  margin-bottom: 14px;
}
.paso__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e1eaf3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #154570;
  transition: all 0.3s ease;
}
.paso:hover .paso__icon {
  background: #154570;
  color: #fff;
  border-color: #154570;
  transform: translateY(-4px);
}
.paso__title {
  font-size: 15px;
  font-weight: 600;
  color: #154570;
  margin: 0 0 8px;
}
.paso__desc {
  font-size: 13px;
  color: #6b7a8d;
  line-height: 1.6;
  margin: 0;
}
.paso__conector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #266ca5, #5aabf0);
  margin-top: 32px;
  border-radius: 2px;
}
.como-funciona__cta { text-align: center; margin-top: 8px; }

@media (max-width: 768px) {
  .pasos { flex-direction: column; align-items: center; gap: 32px; }
  .paso__conector { width: 2px; height: 32px; margin: 0; background: linear-gradient(180deg, #266ca5, #5aabf0); }
  .paso { max-width: 280px; }
}

/* ── TESTIMONIOS ─────────────────────────────── */
.testimonios { background: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0 48px;
}
.testi-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.10);
}
.testi-card__stars {
  font-size: 16px;
  color: #f0a500;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card__texto {
  font-size: 14px;
  color: #3d4f63;
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.testi-card__autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #154570;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card__autor strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #154570;
}
.testi-card__autor span { font-size: 12px; color: #8a9bb0; }
.testimonios__cta {
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, #0d3553 0%, #154570 100%);
  border-radius: 16px;
  color: #fff;
}
.testimonios__cta p {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

/* ── NOSOTROS PREVIEW ────────────────────────── */
.nosotros-preview { background: #f0f2f5; }
.nosotros-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  box-shadow: 0 8px 40px rgba(21,69,112,0.10);
}
.nosotros-preview__badge {
  display: inline-block;
  background: #e6f1fb;
  color: #154570;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.nosotros-preview__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #154570;
  line-height: 1.25;
  margin-bottom: 16px;
}
.nosotros-preview__text p {
  font-size: 0.95rem;
  color: #5e6061;
  line-height: 1.8;
  margin-bottom: 0;
}
.nosotros-preview__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.np-stat {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.np-stat strong {
  display: block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #154570;
  margin-bottom: 6px;
}
.np-stat span {
  font-size: 12px;
  color: #8a9bb0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .nosotros-preview__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

/* ── CTA FINAL ───────────────────────────────── */
.cta-final { background: #fff; padding-top: 0; }
.cta-final__inner {
  background: linear-gradient(135deg, #154570 0%, #266ca5 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}
.cta-final__inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
}
.cta-final__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  margin: 0 0 32px;
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cta-final__inner { padding: 40px 24px; }
  .cta-final__btns { flex-direction: column; align-items: center; }
}

/* ── PAGE HERO (header interno de páginas) ───── */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(14,47,78,0.82) 0%, rgba(21,69,112,0.70) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5aabf0;
  margin-bottom: 14px;
  background: rgba(74,159,215,0.15);
  border: 1px solid rgba(74,159,215,0.35);
  padding: 5px 16px;
  border-radius: 20px;
}
.page-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.page-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .page-hero { height: 260px; }
}

/* ── EQUIPO ──────────────────────────────────── */
.equipo { background: #fff; }
.equipo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.equipo-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.equipo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(21,69,112,0.12);
}
.equipo-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #154570, #266ca5);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipo-card__initials {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.equipo-card__nombre {
  font-size: 16px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 4px;
}
.equipo-card__rol {
  display: block;
  font-size: 12px;
  color: #266ca5;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.equipo-card__bio {
  font-size: 13px;
  color: #5e6061;
  line-height: 1.7;
  margin-bottom: 16px;
}
.equipo-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #8a9bb0;
}
.equipo__nota {
  font-size: 11px;
  color: #939393;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── CERTIFICACIONES ─────────────────────────── */
.cert-section { background: #f8fafc; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(21,69,112,0.10);
}
.cert-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #154570, #266ca5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cert-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 6px;
}
.cert-item p {
  font-size: 13px;
  color: #5e6061;
  line-height: 1.6;
  margin: 0;
}

/* ── IFRAME WRAPPER (nacionales e internacionales) ── */
.iframe-wrapper {
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21,69,112,0.10);
}
.iframe-wrapper__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: #f0f4f8;
  border-bottom: 1px solid #e1eaf3;
  flex-wrap: wrap;
}
.iframe-wrapper__title {
  font-size: 14px;
  font-weight: 600;
  color: #154570;
  margin: 0 0 2px;
}
.iframe-wrapper__sub {
  font-size: 11px;
  color: #8a9bb0;
  margin: 0;
}
.iframe-wrapper__footer {
  padding: 12px 20px;
  background: #f8fafc;
  border-top: 1px solid #e1eaf3;
  font-size: 13px;
  color: #5e6061;
}

/* ── DEST MINI CARDS (paquetes destacados en nacionales) ── */
.dest-section { background: #f8fafc; }
.dest-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.dest-mini-card {
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.12);
}
.dest-mini-card__img {
  height: 140px;
  background-size: cover;
  background-position: center;
}
.dest-mini-card__body {
  padding: 16px;
}
.dest-mini-card__region {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #266ca5;
  display: block;
  margin-bottom: 4px;
}
.dest-mini-card__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 6px;
}
.dest-mini-card__body p {
  font-size: 13px;
  color: #5e6061;
  margin: 0;
}

/* ── FRICCIÓN (anti-fricción de precios) ── */
.friccion-section { background: #f0f2f5; }
.friccion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.friccion-item {
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.friccion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(21,69,112,0.10);
}
.friccion-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #154570, #266ca5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.friccion-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 8px;
}
.friccion-item p {
  font-size: 13px;
  color: #5e6061;
  line-height: 1.65;
  margin: 0;
}



/* ── WHATSAPP CTA SECTION ────────────────────── */
.wa-cta-section {
  background: #f0f2f5;
  padding: 40px 0;
}
.wa-cta-block {
  background: linear-gradient(135deg, #1a8a44 0%, #25d366 100%);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.wa-cta-block__icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-cta-block__text { flex: 1; min-width: 200px; }
.wa-cta-block__text h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.wa-cta-block__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}
.wa-cta-block__btn {
  display: inline-block;
  background: #fff;
  color: #1a8a44;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.wa-cta-block__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
@media (max-width: 600px) {
  .wa-cta-block { padding: 28px 24px; flex-direction: column; text-align: center; }
  .wa-cta-block__btn { width: 100%; text-align: center; }
}

/* ── REDES SOCIALES ──────────────────────────── */
.redes-section { background: #fff; }
.redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.red-card {
  background: #f8fafc;
  border: 1px solid #e1eaf3;
  border-radius: 18px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.red-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(21,69,112,0.12);
}
.red-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.red-card__info { flex: 1; }
.red-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 3px;
}
.red-card__handle {
  font-size: 12px;
  color: #266ca5;
  font-weight: 600;
  margin: 0 0 8px;
}
.red-card__desc {
  font-size: 12px;
  color: #8a9bb0;
  line-height: 1.5;
  margin: 0;
}
.red-card__btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 20px;
  border: 1.5px solid #e1eaf3;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.red-card:hover .red-card__btn { opacity: 0.85; }

/* ── HORARIO Y UBICACIÓN ─────────────────────── */
.horario-section { background: #f0f2f5; }
.horario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.horario-card {
  background: #fff;
  border: 1px solid #e1eaf3;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.horario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.10);
}
.horario-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #154570, #266ca5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.horario-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #154570;
  margin: 0 0 16px;
}
.horario-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.horario-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f5;
}
.horario-list li:last-child { border-bottom: none; padding-bottom: 0; }
.horario-list li span { color: #5e6061; }
.horario-list li strong { color: #154570; font-weight: 600; }
.horario-nota {
  font-size: 11px;
  color: #939393;
  font-style: italic;
  margin: 0;
}


/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-section { background: #f0f2f5; padding: 48px 0; }
.newsletter-block {
  background: linear-gradient(135deg, #154570 0%, #266ca5 100%);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-block__text { flex: 1; min-width: 220px; }
.newsletter-block__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.25);
}
.newsletter-block__text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.newsletter-block__text p {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  margin: 0;
  line-height: 1.65;
}
.newsletter-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.newsletter-block__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
@media (max-width: 600px) {
  .newsletter-block { padding: 32px 24px; flex-direction: column; }
  .newsletter-block__btn { width: 100%; justify-content: center; }
}

/* ── BLOG / ARTÍCULOS ────────────────────────── */
/* ── TIPOGRAFÍA BLOG ── */
.blog-section { background: #fff; }
.blog-section .section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a9bb0;
}
.blog-section .section__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
}
.blog-section .title-accent {
  color: #185FA5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.blog-card {
  background: #fff;
  border: 0.5px solid #e1eaf3;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,69,112,0.10);
}
.blog-card__img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #185FA5;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-card__body { padding: 22px 22px 18px; }
.blog-card__fecha {
  font-size: 11px;
  color: #8a9bb0;
  margin: 0 0 8px;
}
.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0e2f4e;
  line-height: 1.3;
  margin: 0 0 10px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: #5e6e82;
  line-height: 1.65;
  margin: 0 0 16px;
}
.blog-card__btn {
  background: none;
  border: 1.5px solid #185FA5;
  color: #185FA5;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-card__btn:hover {
  background: #185FA5;
  color: #fff;
}

/* Contenido expandible */
.blog-card__full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  border-top: 0 solid #e1eaf3;
}
.blog-card__full.is-open {
  max-height: 2000px;
  border-top: 0.5px solid #e1eaf3;
}
.blog-article { padding: 24px 22px; }
.blog-article h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0e2f4e;
  margin: 0 0 14px;
}
.blog-article p {
  font-size: 13px;
  color: #3d4f63;
  line-height: 1.75;
  margin: 0 0 14px;
}
.blog-article ol, .blog-article ul {
  padding-left: 20px;
  margin: 0 0 16px;
}
.blog-article ol li, .blog-article ul li {
  font-size: 13px;
  color: #3d4f63;
  line-height: 1.7;
  margin-bottom: 8px;
}
.blog-article li strong { color: #0e2f4e; }
.blog-article__cerrar {
  background: #f4f7fb;
  border: 0.5px solid #e1eaf3;
  color: #5e6e82;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease;
}
.blog-article__cerrar:hover { background: #e1eaf3; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section .section__title { font-size: 30px; }
}
@media (max-width: 480px) {
  .blog-section .section__title { font-size: 26px; }
  .blog-card__img { height: 160px; }
  .blog-card__title { font-size: 15px; }
}

/* ── FILTROS INTELIGENTES (index — paquetes destacados) ── */
.filtros-wrap {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filtros-grupo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.filtros-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 72px;
  flex-shrink: 0;
}
.filtros-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filtro-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 24px;
  border: 1.5px solid #e1eaf3;
  background: #fff;
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filtro-pill:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  transform: translateY(-1px);
}
.filtro-pill--active {
  background: var(--blue-dark);
  color: #fff;
  border-color: var(--blue-dark);
  box-shadow: 0 3px 10px rgba(21,69,112,0.25);
}
.filtro-pill--active:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: #fff;
}
.filtro-pill__hint {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 400;
}
.filtros-resultado {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-mid);
  padding-top: 4px;
}
.filtros-resultado strong { color: var(--blue-dark); }
.filtros-reset {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--blue-mid);
  background: none;
  border: 1px solid var(--blue-mid);
  border-radius: 20px;
  padding: 3px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filtros-reset:hover {
  background: var(--blue-mid);
  color: #fff;
}

/* Sin resultados */
.paq-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  color: var(--gray-mid);
  text-align: center;
}
.paq-empty svg { opacity: 0.4; }
.paq-empty p { font-size: 15px; }

/* Responsive filtros */
@media (max-width: 640px) {
  .filtros-grupo { flex-direction: column; align-items: flex-start; }
  .filtros-label { min-width: auto; }
  .filtro-pill__hint { display: none; }
}

/* =============================================
   VP-CARD — Tarjetas de paquetes Virtual Plus
   Diseño propio, diferente al catálogo Mega Travel
   ============================================= */

/* Grid — 3 columnas desktop, adaptable */
#paqGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 1024px) { #paqGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { #paqGrid { grid-template-columns: 1fr; } }

.vp-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21,69,112,0.08);
  border: 1px solid #e8eef5;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.vp-card:hover, .vp-card:focus {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(21,69,112,0.16);
}

/* Imagen */
.vp-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.vp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.vp-card:hover .vp-card__img { transform: scale(1.05); }

/* Tag de región */
.vp-card__region-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(21,69,112,0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Badge de precio — el elemento diferenciador */
.vp-card__precio-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 12px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  line-height: 1.2;
}
.vp-card__precio-badge-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.vp-card__precio-badge strong {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}
.vp-card__precio-badge strong sup {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  opacity: 0.8;
}

/* Colores de badge según rango */
.badge--eco { background: linear-gradient(135deg, #1a8a44, #25d366); color: #fff; }
.badge--mid { background: linear-gradient(135deg, #154570, #266ca5); color: #fff; }
.badge--pre { background: linear-gradient(135deg, #7a3a1e, #c0622a); color: #fff; }

/* Cuerpo de la tarjeta */
.vp-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vp-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vp-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #6b7a8d;
  background: #f0f4f8;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.vp-card__chip svg { color: #266ca5; flex-shrink: 0; }

.vp-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #154570;
  line-height: 1.3;
  margin: 0;
}

.vp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f4f8;
  margin-top: 2px;
}
.vp-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.vp-card__desde {
  font-size: 11px;
  color: #939393;
}
.vp-card__price {
  font-size: 17px;
  font-weight: 800;
  color: #154570;
}
.vp-card__price sup { font-size: 0.55em; vertical-align: super; }
.vp-card__imp {
  font-size: 10px;
  color: #939393;
}
.vp-card__cta-hint {
  font-size: 12px;
  font-weight: 600;
  color: #266ca5;
  white-space: nowrap;
}

/* =============================================
   MODAL PAQUETE
   ============================================= */
.modal-paq {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-paq.is-open {
  display: flex;
  animation: fadeIn 0.2s ease both;
}
.modal-paq__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,47,0.65);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal-paq__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s ease both;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-paq__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-paq__close:hover { background: rgba(0,0,0,0.7); }

.modal-paq__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.modal-paq__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.modal-paq__badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  color: #fff;
}

.modal-paq__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-paq__region {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #266ca5;
}
.modal-paq__title {
  font-size: 22px;
  font-weight: 800;
  color: #154570;
  line-height: 1.2;
  margin: 0;
}
.modal-paq__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-paq__destino {
  font-size: 14px;
  color: #6b7a8d;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-paq__precio-wrap {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 16px 20px;
}
.modal-paq__precio {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.modal-paq__precio span {
  font-size: 12px;
  color: #939393;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.modal-paq__precio strong {
  font-size: 32px;
  font-weight: 900;
  color: #154570;
  line-height: 1;
}
.modal-paq__precio strong sup { font-size: 0.45em; vertical-align: super; }
.modal-paq__precio small { font-size: 12px; color: #939393; }

.modal-paq__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-paq__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  animation: none;
}
.modal-paq__ver {
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .modal-paq__box { border-radius: 16px; }
  .modal-paq__body { padding: 20px; }
  .modal-paq__title { font-size: 18px; }
  .modal-paq__precio strong { font-size: 26px; }
  .vp-card__img-wrap { height: 180px; }
}

/* ── FIXES NOSOTROS ──────────────────────────── */

/* Centrar tarjeta única del equipo */
.equipo__grid--single {
  grid-template-columns: 1fr;
  max-width: 380px;
  margin: 0 auto;
}

/* Fix iconos pilares — anular shimmer heredado del CSS viejo */
.pilar .pilar__icon {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-light)) !important;
  background-image: none !important;
  animation: float 4.5s ease-in-out infinite !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
}
.pilar:nth-child(2) .pilar__icon { animation-delay: 1.5s !important; }
.pilar:nth-child(3) .pilar__icon { animation-delay: 3s !important; }

/* ── MODAL NACIONALES — incluye/no incluye ───── */
.modal-nac__incluye,
.modal-nac__noincluye {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-nac__incluye h4,
.modal-nac__noincluye h4 {
  font-size: 13px;
  font-weight: 700;
  color: #154570;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.modal-nac__incluye h4::before {
  content: '✓';
  color: #25d366;
  font-weight: 800;
}
.modal-nac__noincluye h4::before {
  content: '✕';
  color: #e24b4a;
  font-weight: 800;
}
.modal-nac__incluye ul,
.modal-nac__noincluye ul {
  list-style: none;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-nac__incluye ul li,
.modal-nac__noincluye ul li {
  font-size: 12px;
  color: #3d4f63;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.modal-nac__incluye ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 800;
}
.modal-nac__noincluye ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #e24b4a;
  font-weight: 800;
}
.modal-nac__hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #e6f1fb;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: #154570;
  line-height: 1.5;
}
.modal-nac__hint svg { flex-shrink: 0; margin-top: 1px; }
.modal-nac__hint strong { font-weight: 700; }

/* Hint debajo del grid de cards */
.paq-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 18px;
  background: #e6f1fb;
  border-radius: 10px;
  font-size: 13px;
  color: #154570;
  font-weight: 500;
}
.paq-hint svg { color: #266ca5; flex-shrink: 0; }

/* Botón regresar mejorado */
.btn-regresar-nacionales {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 16px;
  background: #266ca5;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.btn-regresar-nacionales:hover {
  background: #154570;
  transform: translateY(-1px);
}

/* ── TOP BAR ─────────────────────────────────── */
.top-bar {
  background: #0d3553;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.top-bar__inner span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .top-bar__inner { gap: 12px; font-size: 11px; }
  .top-bar__inner span:nth-child(n+3) { display: none; }
}

/* ── NAVBAR CTA ──────────────────────────────── */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.navbar__cta:hover { background: #1da851; transform: translateY(-1px); }
@media (max-width: 900px) { .navbar__cta { display: none; } }

/* ── HERO SPLIT ──────────────────────────────── */
.hero__content--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero__left { color: #fff; }
.hero__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero__title-highlight { color: #4a9fd7; display: block; }
.hero__subtitle { font-size: 16px; opacity: 0.9; margin-bottom: 20px; line-height: 1.6; }
.hero__trust-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__trust-pills span {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUSCADOR ────────────────────────────────── */
.hero__buscador {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero__buscador-tabs {
  display: flex;
  border-bottom: 1px solid #e8eef5;
}
.hero__buscador-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7a8d;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero__buscador-tab.active {
  color: #154570;
  border-bottom-color: #266ca5;
}
.hero__buscador-tab:hover { color: #266ca5; }

.hero__buscador-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.hero__buscador-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero__buscador-field { display: flex; flex-direction: column; gap: 5px; }
.hero__buscador-field label {
  font-size: 11px;
  font-weight: 700;
  color: #6b7a8d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__buscador-field input,
.hero__buscador-field select {
  padding: 10px 12px;
  border: 1.5px solid #e1eaf3;
  border-radius: 8px;
  font-size: 14px;
  color: #2d3748;
  background: #f8fafc;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}
.hero__buscador-field input:focus,
.hero__buscador-field select:focus { border-color: #266ca5; background: #fff; }

.hero__buscador-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #266ca5;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: 4px;
}
.hero__buscador-btn:hover { background: #154570; transform: translateY(-1px); }

.hero__buscador-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7a8d;
  margin: 0;
  text-align: center;
}

/* ── PASOS 3 ─────────────────────────────────── */
.pasos--3 { grid-template-columns: 1fr auto 1fr auto 1fr; }
.section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #266ca5;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Responsive hero split */
@media (max-width: 900px) {
  .hero__content--split {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 30px;
  }
  .hero__buscador-row { grid-template-columns: 1fr; }
  .pasos--3 { grid-template-columns: 1fr; }
}


/* ── TOP BAR ─────────────────────────────────── */
.top-bar {
  background: #0d3553;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 7px 0;
}
.top-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__inner span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .top-bar__inner span:nth-child(n+3) { display: none; }
}

/* ── NAVBAR CTA ──────────────────────────────── */
.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.navbar__cta:hover { background: #1da851; }
@media (max-width: 900px) { .navbar__cta { display: none; } }

/* ── HERO NUEVO ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,25,47,0.45) 0%, rgba(10,25,47,0.2) 55%, rgba(10,25,47,0.0) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero__copy { 
  
  color: #fff; 
  text-align: left;
  padding-left: 40px;
}

.hero__title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero__title-accent { color: #4a9fd7; }
.hero__subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 28px;
  line-height: 1.6;
  max-width: 440px;
}
.hero__pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}
.hero__pill svg { color: #4a9fd7; flex-shrink: 0; }
.hero__pill strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.hero__pill span { font-size: 11px; color: rgba(255,255,255,0.7); }

/* ── BUSCADOR ────────────────────────────────── */
.hero__buscador {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.hero__buscador-tabs {
  display: flex;
  border-bottom: 1px solid #e8eef5;
}
.hero__buscador-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7a8d;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero__buscador-tab.active { color: #154570; border-bottom-color: #266ca5; }
.hero__buscador-tab:hover { color: #266ca5; }

.hero__buscador-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.hero__buscador-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.hero__buscador-field { display: flex; flex-direction: column; gap: 4px; }
.hero__buscador-field label {
  font-size: 10px;
  font-weight: 700;
  color: #939393;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__buscador-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.hero__buscador-input-wrap svg {
  position: absolute;
  left: 10px;
  color: #939393;
  pointer-events: none;
  flex-shrink: 0;
}
.hero__buscador-input-wrap input,
.hero__buscador-input-wrap select {
  width: 100%;
  padding: 9px 10px 9px 30px;
  border: 1.5px solid #e1eaf3;
  border-radius: 8px;
  font-size: 13px;
  color: #2d3748;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.hero__buscador-input-wrap input:focus,
.hero__buscador-input-wrap select:focus {
  border-color: #266ca5;
  background: #fff;
}

.hero__buscador-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  background: #266ca5;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
}
.hero__buscador-btn:hover { background: #154570; }

.hero__buscador-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #939393;
  margin: 0;
  text-align: center;
}

/* ── SECTION HEADER FLEX ─────────────────────── */
.section__header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #266ca5;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section__ver-todos {
  font-size: 13px;
  font-weight: 600;
  color: #266ca5;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 4px;
}
.section__ver-todos:hover { text-decoration: underline; }

/* ── POR QUÉ ELEGIRNOS ───────────────────────── */
.porque { background: #f8fafc; }
.porque__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.porque__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.porque__icon {
  width: 44px;
  height: 44px;
  background: #e6f1fb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #266ca5;
  flex-shrink: 0;
}
.porque__item h3 { font-size: 15px; font-weight: 700; color: #154570; margin: 0; }
.porque__item p { font-size: 13px; color: #6b7a8d; margin: 0; line-height: 1.5; }
@media (max-width: 768px) { .porque__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .porque__grid { grid-template-columns: 1fr; } }

/* ── BLOG GRID ───────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(21,69,112,0.07);
  border: 1px solid #e8eef5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(21,69,112,0.12); }
.blog-card__img-wrap { position: relative; height: 180px; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.05); }
.blog-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}
.blog-card__tag--tips { background: #266ca5; }
.blog-card__tag--dest { background: #e07b2a; }
.blog-card__tag--ahorra { background: #1a8a44; }
.blog-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-card__body h3 { font-size: 15px; font-weight: 700; color: #154570; margin: 0; line-height: 1.4; }
.blog-card__body p { font-size: 13px; color: #6b7a8d; margin: 0; line-height: 1.5; }
.blog-card__link { font-size: 13px; font-weight: 600; color: #266ca5; text-decoration: none; margin-top: 4px; }
.blog-card__link:hover { text-decoration: underline; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── CTA FINAL NUEVO ─────────────────────────── */
.cta-final { background: #f0f4f8; padding: 48px 0; }
.cta-final__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: #0d3553;
  border-radius: 20px;
  padding: 40px 48px;
}
.cta-final__left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.cta-final__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cta-final__left h2 { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.cta-final__left p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }
.cta-final__btns { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-final__link { font-size: 13px; color: rgba(255,255,255,0.8); text-decoration: none; }
.cta-final__link:hover { color: #fff; text-decoration: underline; }

/* ── PAQUETES GRID ──── solo para el index ─────── */
#paqGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 1024px) { #paqGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { #paqGrid { grid-template-columns: 1fr; } }

/* Hero responsive */
@media (max-width: 960px) {
  .hero__content { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero__buscador-row--2 { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}

/* ── CARRUSEL DE PAQUETES (index) ────────────── */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1.5px solid #e1eaf3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  color: #154570;
}
.carousel-btn:hover { background: #154570; color: #fff; border-color: #154570; }
.carousel-btn--prev { left: -24px; }
.carousel-btn--next { right: -24px; }

/* ── HERO RESPONSIVE FIX ─────────────────────── */
@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 28px;
    text-align: center;
  }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__subtitle { max-width: 100%; }
  .hero__pills { justify-content: center; }
  .hero__title { font-size: clamp(24px, 6vw, 40px); }
  .hero__buscador-row--2 { grid-template-columns: 1fr; }
  .paq-carousel-wrap #paqGrid .vp-card { min-width: calc(50% - 10px); }
  .carousel-btn--prev { left: 0; }
  .carousel-btn--next { right: 0; }
}
@media (max-width: 560px) {
  /* Fix: card 92% - solo se ve 1 completa */
  .paq-carousel-wrap #paqGrid .vp-card { min-width: 92% !important; max-width: 92% !important; }
  /* Fix: hero title alineado izquierda y más compacto */
  .hero__copy { align-items: flex-start !important; text-align: left !important; }
  .hero__title { font-size: 26px !important; line-height: 1.2; text-align: left !important; }
  .hero__subtitle { font-size: 14px; text-align: left !important; }
  /* Fix: pills en 3 columnas horizontales alineadas a la izquierda */
  .hero__pills { flex-direction: row !important; gap: 8px; align-items: stretch; justify-content: flex-start !important; }
  .hero__pill { flex: 1; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 10px 6px; }
  .hero__pill svg { width: 16px; height: 16px; }
  .hero__pill strong { font-size: 11px; }
  .hero__pill span { font-size: 10px; }
  /* Fix: formulario reseña con margen lateral */
  .opinion-form-wrap { margin-left: 16px !important; margin-right: 16px !important; }
}

/* ── TRUST BAR FIX COLOR ─────────────────────── */
.trust-bar__item strong { color: #154570; font-size: 14px; display: block; }
.trust-bar__item span { color: #6b7a8d; font-size: 12px; display: block; }
.trust-bar__item svg { color: #266ca5; flex-shrink: 0; }

/* ── CARRUSEL AUTOMÁTICO CON PUNTOS ──────────── */
.paq-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}
.paq-carousel-wrap #paqGrid {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  margin-bottom: 0;
  will-change: transform;
}
.paq-carousel-wrap #paqGrid .vp-card {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  flex-shrink: 0;
  flex-grow: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1dde8;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}
.carousel-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
}
.carousel-dot.active {
  background: #266ca5;
  width: 32px;
  border-radius: 6px;
}
@media (max-width: 960px) {
  .paq-carousel-wrap #paqGrid .vp-card { min-width: calc(50% - 10px); }
}
@media (max-width: 640px) {
  .paq-carousel-wrap #paqGrid .vp-card { min-width: calc(85% - 10px); }
}

/* ── VP-CARD COMO ENLACE ─────────────────────── */
a.vp-card {
  text-decoration: none;
  display: block;
  color: inherit;
}
a.vp-card:hover { color: inherit; }


/* ── ESTILOS PÁGINAS DE PAQUETE (pj-*) ─────── */
/* ── HERO ── */
    .pj-hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    .pj-hero__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .pj-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(5,10,25,0.25) 0%,
        rgba(5,10,25,0.1) 40%,
        rgba(5,10,25,0.75) 100%
      );
    }
    .pj-hero__content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 60px 64px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .pj-hero__back {
      position: absolute;
      top: 110px;
      left: 64px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
      z-index: 5;
    }
    .pj-hero__back:hover { color: #fff; }
    .pj-hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 24px;
      margin-bottom: 16px;
    }
    .pj-hero__title {
      font-size: clamp(44px, 7vw, 80px);
      font-weight: 900;
      color: #fff;
      line-height: 1.0;
      margin: 0 0 8px;
      text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    }
    .pj-hero__title span { color: #4a9fd7; }
    .pj-hero__sub {
      font-size: 18px;
      color: rgba(255,255,255,0.85);
      margin: 0 0 28px;
      max-width: 520px;
      line-height: 1.6;
    }
    .pj-hero__chips {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .pj-hero__chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.13);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.22);
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 18px;
      border-radius: 24px;
    }
    .pj-hero__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25d366;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 15px 32px;
      border-radius: 12px;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
    }
    .pj-hero__cta:hover { background: #1da851; transform: translateY(-2px); }

    /* ── LAYOUT PRINCIPAL ── */
    .pj-wrap {
      max-width: 1280px;
      margin: 0 auto;
      padding: 72px 64px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 56px;
      align-items: start;
    }
    .pj-main { display: flex; flex-direction: column; gap: 56px; }

    /* ── SECCIÓN GENÉRICA ── */
    .pj-sec { display: flex; flex-direction: column; gap: 20px; }
    .pj-sec__eyebrow {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #266ca5;
    }
    .pj-sec__title {
      font-size: 32px;
      font-weight: 800;
      color: #0d1f35;
      line-height: 1.15;
      margin: 0;
    }
    .pj-sec__text {
      font-size: 17px;
      color: #4a5a6a;
      line-height: 1.75;
      margin: 0;
    }

    /* ── HIGHLIGHTS ── */
    .pj-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .pj-hl {
      background: #f8fafc;
      border: 1px solid #e8eef5;
      border-radius: 16px;
      padding: 22px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .pj-hl:hover { box-shadow: 0 6px 24px rgba(21,69,112,0.1); transform: translateY(-2px); }
    .pj-hl__icon {
      width: 44px;
      height: 44px;
      background: #e6f1fb;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #266ca5;
      flex-shrink: 0;
    }
    .pj-hl__label { font-size: 11px; color: #939393; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
    .pj-hl__val { font-size: 15px; font-weight: 700; color: #0d1f35; line-height: 1.3; }

    /* ── GALERÍA ── */
    .pj-galeria {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      border-radius: 16px;
      overflow: hidden;
    }
    .pj-galeria img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: center;
      display: block;
      border-radius: 14px;
      transition: transform 0.5s ease;
    }
    .pj-galeria img:hover { transform: scale(1.02); }

    /* ── VIDEO ── */
    .pj-video {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: #000;
    }
    .pj-video video {
      width: 100%;
      height: 380px;
      object-fit: cover;
      display: block;
    }
    .pj-video__label {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
    }

    /* ── ITINERARIO ── */
    .pj-itinerario { display: flex; flex-direction: column; gap: 0; }
    .pj-dia {
      display: flex;
      gap: 20px;
      padding-bottom: 28px;
      position: relative;
    }
    .pj-dia:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 36px;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #266ca5, #e8eef5);
    }
    .pj-dia__num {
      width: 36px;
      height: 36px;
      background: #266ca5;
      color: #fff;
      border-radius: 50%;
      font-size: 12px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 1;
      box-shadow: 0 0 0 4px rgba(38,108,165,0.15);
    }
    .pj-dia__body { padding-top: 5px; }
    .pj-dia__etiqueta {
      font-size: 11px;
      font-weight: 800;
      color: #266ca5;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 4px;
    }
    .pj-dia__titulo { font-size: 17px; font-weight: 700; color: #0d1f35; margin-bottom: 6px; }
    .pj-dia__desc { font-size: 15px; color: #5a6a7a; line-height: 1.65; margin: 0; }

    /* ── INCLUYE / NO INCLUYE ── */
    .pj-inc-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .pj-inc__head {
      font-size: 15px;
      font-weight: 800;
      color: #0d1f35;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .pj-inc__list {
      list-style: none;
      padding: 14px 16px;
      background: #f8fafc;
      border-radius: 12px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pj-inc__list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #4a5a6a;
      line-height: 1.55;
    }
    .pj-inc__list--si li svg { color: #25d366; flex-shrink: 0; margin-top: 2px; }
    .pj-inc__list--no li svg { color: #e53e3e; flex-shrink: 0; margin-top: 2px; }

    /* ── HOTELES ── */
    .pj-hoteles {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .pj-hotel {
      background: #f8fafc;
      border: 1px solid #e8eef5;
      border-radius: 12px;
      padding: 16px 18px;
    }
    .pj-hotel__ciudad {
      font-size: 10px;
      font-weight: 800;
      color: #266ca5;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .pj-hotel__nombres {
      font-size: 13px;
      color: #5a6a7a;
      line-height: 1.65;
    }
    .pj-hotel__nota {
      font-size: 12px;
      color: #939393;
      margin-top: 6px;
      font-style: italic;
    }

    /* ── FECHAS ── */
    .pj-fechas {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .pj-fecha {
      background: #f0f4f8;
      border: 1px solid #e1eaf3;
      border-radius: 8px;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 600;
      color: #154570;
      transition: background 0.2s, border-color 0.2s;
      cursor: default;
    }
    .pj-fecha:hover { background: #e6f1fb; border-color: #266ca5; }
    .pj-fechas__nota {
      font-size: 13px;
      color: #939393;
      margin: 8px 0 0;
      font-style: italic;
    }

    /* ── SIDEBAR ── */
    .pj-sidebar {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .pj-precio-card {
      background: #fff;
      border: 1.5px solid #e8eef5;
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 8px 40px rgba(21,69,112,0.1);
    }
    .pj-precio-card__desde {
      font-size: 11px;
      color: #939393;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .pj-precio-card__precio {
      font-size: 44px;
      font-weight: 900;
      color: #0d1f35;
      line-height: 1;
      margin: 8px 0 4px;
    }
    .pj-precio-card__precio sup { font-size: 0.42em; vertical-align: super; font-weight: 700; color: #266ca5; }
    .pj-precio-card__imp { font-size: 12px; color: #939393; margin-bottom: 20px; }
    .pj-precio-card__div { height: 1px; background: #f0f4f8; margin: 16px 0; }
    .pj-precio-card__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      margin-bottom: 10px;
    }
    .pj-precio-card__row span:first-child { color: #939393; }
    .pj-precio-card__row span:last-child { font-weight: 700; color: #0d1f35; }
    .pj-precio-card__aero {
      display: flex;
      align-items: center;
      gap: 8px;
      background: #f8fafc;
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 13px;
      color: #154570;
      font-weight: 600;
      margin-bottom: 16px;
    }
    .pj-btn-wa {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px;
      background: #25d366;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      width: 100%;
      transition: background 0.2s, transform 0.2s;
    }
    .pj-btn-wa:hover { background: #1da851; transform: translateY(-1px); }
    .pj-trust {
      background: #f8fafc;
      border-radius: 14px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pj-trust__item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #154570;
      font-weight: 600;
    }
    .pj-trust__item svg { color: #266ca5; flex-shrink: 0; }
    .pj-codigo {
      text-align: center;
      font-size: 12px;
      color: #c0c8d0;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 8px;
    }

    /* ── FOOTER SIMPLE ── */
    .pj-footer {
      background: #0d1f35;
      padding: 28px 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .pj-footer p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }
    .pj-footer a { color: #4a9fd7; text-decoration: none; }
    .pj-footer a:hover { text-decoration: underline; }
    .pj-footer__wa {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #25d366;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .pj-wrap { grid-template-columns: 1fr; padding: 48px 32px; }
      .pj-sidebar { position: static; }
      .pj-hero__content { padding: 40px 32px; }
      .pj-hero__back { left: 32px; }
    }
    @media (max-width: 640px) {
      .pj-hero { height: 80vh; min-height: 500px; }
      .pj-hero__title { font-size: 40px; }
      .pj-hero__content { padding: 32px 20px; }
      .pj-hero__back { left: 20px; top: 90px; }
      .pj-wrap { padding: 40px 20px; gap: 40px; }
      .pj-highlights { grid-template-columns: 1fr; }
      .pj-inc-grid { grid-template-columns: 1fr; }
      .pj-hoteles { grid-template-columns: 1fr; }
      .pj-galeria img { height: 280px; }
      .pj-video video { height: 240px; }
      .pj-sec__title { font-size: 26px; }
      .pj-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
    }

/* ── FOOTER SIN FONDO BLANCO ABAJO ── */
html { background: #0e2f4e; }
