/* RESET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  backdrop-filter: blur(5px);
  background: rgba(10, 25, 50, 0.55);
  /* background: rgba(190, 190, 190, 0.773); */

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* CONTENEDOR */
.navbar__container {
  max-width: 1200px;
  height: 100px;
  margin: auto;
  padding: 14px 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}




/* MENU */
.navbar__menu {
  display: flex;
  gap: 30px;
}



/* HOVER EFECTO (línea elegante) */
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, #00c6ff, #ffd700);
  transition: width 0.3s ease;
}

.navbar__link:hover::after {
  width: 100%;
}

/* ACTIVO */
.navbar__link.active {
  color: #ffd700;
}

/* HAMBURGUESA */
.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.navbar__toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}

/* LINKS */
.navbar__link {
  font-size: 1.2rem;
  font-weight: 500;
  transition: 0.3s;
}

/* LINKS */
.navbar__link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  /* color: #000000; */
  font-weight: 500;
  transition: all 0.3s ease;
}

/* HOVER MÁS PRO */
.navbar__link:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

/* LÍNEA ANIMADA + GLOW */
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #ffd700);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
  transition: width 0.3s ease;
}

.navbar__link:hover::after {
  width: 100%;
}

/* CLICK EFFECT (PRESIÓN) */
.navbar__link:active {
  transform: scale(0.95);
}


/* LOGO INTERACTIVO */
.navbar__logo {
  height: 100px;
  transition: transform 0.4s ease;
}

.navbar__logo:hover {
  transform: rotate(-5deg) scale(1.2);
}
.navbar__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;

  opacity: 0;
  transform: translateY(6px);

 animation: fadeBrand 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.ripple {
  position: absolute;
  top: -50%;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.4);
  width: 100px;
  height: 100px;
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}


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

  .navbar__menu {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 25, 50, 0.95);
    backdrop-filter: blur(15px);
    display: none;
    text-align: center;
    padding: 20px 0;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }
}


@keyframes fadeBrand {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* VIDEO */
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* OVERLAY (clave para elegancia) */
.hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.505) 0%, rgba(0,0,0,0) 20%),linear-gradient(
    to bottom,
    rgba(10, 25, 50, 0.4),
    rgba(10, 25, 50, 0.85)
  );
  z-index: 1;
}

/* CONTENIDO */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;

  animation: heroFade 1.2s ease forwards;
}

/* TÍTULO */
.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* SUBTEXTO */
.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

/* BOTONES */
.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BOTÓN PRIMARIO */
.btn--primary {
  /* background: linear-gradient(135deg, #ffd700, #ffb700); */
  /* background: linear-gradient(135deg, #e3f6f4, #317084); */
  background: #317084;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #e6f5f8;
}

/* BOTÓN SECUNDARIO */
.btn--secondary {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn--secondary:hover {
  background: rgb(255, 255, 255);
  color: #000;
}

/* ANIMACIÓN */
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;
  border-radius: 50%;

  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  z-index: 999;

  transition: all 0.3s ease;
}

/* ICONO */
.whatsapp__icon {
  width: 28px;
  height: 28px;
}

/* HOVER */
.whatsapp:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

/* CLICK */
.whatsapp:active {
  transform: scale(0.95);
}

.whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/* seccion beneficios */
.benefits-showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.benefits-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.benefits-showcase__bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.9s ease,
    transform 1.4s ease;
}

.benefits-showcase__bg-item.active {
  opacity: 1;
  transform: scale(1);
}

.benefits-showcase__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 18, 34, 0.88) 0%, rgba(7, 18, 34, 0.6) 45%, rgba(7, 18, 34, 0.72) 100%),
    linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0,0,0,0) 10%);
}

.benefits-showcase__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.benefits-showcase__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #f6d774;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
}

.benefits-showcase__title {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: #fff;
}

.benefit-trigger {
  width: 100%;
  text-align: left;
  padding: 18px 18px 18px 22px;
  margin-bottom: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  cursor: pointer;
  transition: all .35s ease;
  backdrop-filter: blur(8px);
}

.benefit-trigger:hover {
  transform: translateX(8px);
  border-color: rgba(255, 215, 0, 0.4);
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.benefit-trigger.active {
  color: #fff;
  border-color: rgba(255, 215, 0, 0.45);
  background: linear-gradient(135deg, rgba(255,215,0,0.18), rgba(255,255,255,0.06));
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.benefits-showcase__content {
  position: relative;
  min-height: 260px;
}

.benefit-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: all .45s ease;
  pointer-events: none;
}

.benefit-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.benefit-panel h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
}

.benefit-panel p {
  margin: 0;
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .benefits-showcase__container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 90px 16px;
  }

  .benefits-showcase__content {
    min-height: 220px;
  }
}
.event-types {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.07), transparent 28%),
    linear-gradient(180deg, #091426 0%, #0d1b2f 100%);
  overflow: hidden;
}

.event-types__container {
  max-width: 1240px;
  margin: 0 auto;
}

.event-types__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.event-types__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #f4d46a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-types__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.event-types__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.event-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.event-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9, 20, 38, 0.75) 0%,
    rgba(9, 20, 38, 0.12) 45%,
    rgba(9, 20, 38, 0.05) 100%
  );
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.event-card:hover .event-card__image img {
  transform: scale(1.08);
}

.event-card__content {
  position: relative;
  padding: 28px 26px 30px;
}

.event-card__number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #f4d46a;
}

.event-card__title {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #ffffff;
}

.event-card__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 900px) {
  .event-types {
    padding: 95px 16px;
  }

  .event-types__grid {
    grid-template-columns: 1fr;
  }

  .event-card__image {
    height: 240px;
  }
}

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.event-card:nth-child(1) { transition-delay: 0.05s; }
.event-card:nth-child(2) { transition-delay: 0.12s; }
.event-card:nth-child(3) { transition-delay: 0.18s; }
.event-card:nth-child(4) { transition-delay: 0.24s; }


/* galeria */
.gallery-section {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.06), transparent 26%),
    linear-gradient(180deg, #0b1627 0%, #09111f 100%);
  overflow: hidden;
}

.gallery-section__container {
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-section__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-section__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #f5d76b;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-section__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #fff;
}

.gallery-section__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0) 35%,
    rgba(5,11,20,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(7, 18, 34, 0.72) 0%,
    rgba(7, 18, 34, 0.18) 45%,
    rgba(7, 18, 34, 0) 100%
  );
  opacity: 1;
  transition: background 0.35s ease;
}

.gallery-item__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.18);
  box-shadow: 0 26px 65px rgba(0,0,0,0.26);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.03);
}

.gallery-item:hover .gallery-item__overlay {
  background: linear-gradient(
    to top,
    rgba(7, 18, 34, 0.82) 0%,
    rgba(7, 18, 34, 0.28) 45%,
    rgba(7, 18, 34, 0.03) 100%
  );
}

/* composición desktop */
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 2; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 8, 18, 0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__image {
  max-width: min(1100px, 100%);
  max-height: 85vh;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.lightbox.is-open .lightbox__image {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.14);
  transform: rotate(90deg);
}

/* tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 100px;
  }

  .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 3; }
  .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 3; }
  .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 6; grid-row: span 2; }
}

/* mobile */
@media (max-width: 640px) {
  .gallery-section {
    padding: 95px 16px;
  }

  .gallery-section__header {
    margin-bottom: 38px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    min-height: 240px;
    border-radius: 22px;
  }

  .gallery-item img {
    height: 240px;
  }

  .gallery-item__overlay {
    padding: 18px;
  }

  .gallery-item__label {
    font-size: 0.88rem;
    padding: 9px 12px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox__close {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }
}

/* paquetes */
.packages {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #09111f 0%, #0d182b 100%);
  overflow: hidden;
}

.packages__container {
  max-width: 1240px;
  margin: 0 auto;
}

.packages__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.packages__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #f4d46a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packages__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.packages__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.24);
  background: rgba(255,255,255,0.07);
}

.package-card--featured {
  background: linear-gradient(180deg, rgba(255,215,0,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 215, 0, 0.24);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.26);
}

.package-card--featured:hover {
  transform: translateY(-16px);
}

.package-card__badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #f4d46a;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card__title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #ffffff;
}

.package-card__subtitle {
  margin: 0 0 24px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.package-card__price {
  margin-bottom: 24px;
}

.package-card__price span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
}

.package-card__price strong {
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
}

.package-card__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.package-card__features li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
}

.package-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4d46a;
  font-weight: 700;
}

.package-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #08101d;
  background: linear-gradient(135deg, #f4d46a, #ffd700);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.package-card__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(244, 212, 106, 0.25);
  filter: brightness(1.03);
}

@media (max-width: 992px) {
  .packages__grid {
    grid-template-columns: 1fr;
  }

  .package-card--featured {
    transform: none;
  }

  .package-card--featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .packages {
    padding: 95px 16px;
  }

  .packages__header {
    margin-bottom: 38px;
  }

  .package-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .package-card__title {
    font-size: 1.4rem;
  }

  .package-card__price strong {
    font-size: 1.8rem;
  }
}

.package-card:nth-child(1) { transition-delay: 0.05s; }
.package-card:nth-child(2) { transition-delay: 0.14s; }
.package-card:nth-child(3) { transition-delay: 0.22s; }


.testimonials {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #0d182b 0%, #0a1322 100%);
  overflow: hidden;
}

.testimonials__container {
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.testimonials__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #f4d46a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.testimonials__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 30px 70px rgba(0,0,0,0.24);
  background: rgba(255,255,255,0.07);
}

/* .testimonial-card--featured {
  background: linear-gradient(180deg, rgba(255,215,0,0.10), rgba(255,255,255,0.06));
  border: 1px solid rgba(255, 215, 0, 0.18);
} */

.testimonial-card__stars {
  margin-bottom: 18px;
  color: #f4d46a;
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.testimonial-card__quote {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244,212,106,0.22), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  margin: 0 0 4px;
  font-size: 1rem;
  color: #ffffff;
}

.testimonial-card__event {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 992px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 95px 16px;
  }

  .testimonials__header {
    margin-bottom: 38px;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .testimonial-card__quote {
    font-size: 0.98rem;
    line-height: 1.8;
  }
}
.testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonial-card:nth-child(2) { transition-delay: 0.14s; }
.testimonial-card:nth-child(3) { transition-delay: 0.22s; }

.testimonials__track {
  display: contents;
}

/* MOBILE: slider horizontal */
@media (max-width: 768px) {
  .testimonials__grid {
    display: block;
    overflow: hidden;
  }

  .testimonials__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials__track::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    min-width: 85%;
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin: 0;
  }
}

.testimonials__hint {
  display: none;
}

@media (max-width: 768px) {
  .testimonials__hint {
    display: block;
    margin: 0 0 18px;
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.58);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .testimonial-card__quote {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .testimonial-card__stars {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}


/* ubicación */
.location-section {
  position: relative;
  padding: 60px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #09111d 0%, #0c1626 100%);
  overflow: hidden;
}

.location-section__container {
  max-width: 1240px;
  margin: 0 auto;
}

.location-section__header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.location-section__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: #f4d46a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-section__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.location-section__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.location-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-bottom: 30px;
  align-items: stretch;
}

.location-info,
.location-map {
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.location-info {
  padding: 30px 26px;
}

.location-info__card {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.location-info__card:last-of-type {
  border-bottom: none;
  padding-bottom: 10px;
}

.location-info__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  color: #ffffff;
}

.location-info__description {
  margin: 0;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.location-info__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #08101d;
  background: linear-gradient(135deg, #f4d46a, #ffd700);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.location-info__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(244, 212, 106, 0.22);
  filter: brightness(1.03);
}

.location-map {
  overflow: hidden;
}

.location-map__frame {
  width: 100%;
  min-height: 100%;
  height: 100%;
}

.location-map iframe {
  display: block;
  min-height: 100%;
  height: 100%;
  min-height: 520px;
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-gallery__item {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.location-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.location-gallery__item:hover img {
  transform: scale(1.06);
}

.location-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(7,18,34,0.72) 0%,
    rgba(7,18,34,0.18) 45%,
    rgba(7,18,34,0) 100%
  );
}

.location-gallery__overlay span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

@media (max-width: 992px) {
  .location-section__grid {
    grid-template-columns: 1fr;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }

  .location-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 95px 16px;
  }

  .location-section__header {
    margin-bottom: 38px;
  }

  .location-info {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .location-map {
    border-radius: 24px;
  }

  .location-gallery__item {
    min-height: 220px;
    border-radius: 22px;
  }
}


/* contacto */
.contact-section {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #0a1322 0%, #09111d 100%);
  overflow: hidden;
}

.contact-section__container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.contact-section__content,
.contact-form-box {
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.contact-section__content {
  padding: 34px 30px;
}

.contact-form-box {
  padding: 34px 30px;
}

.contact-section__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #f4d46a;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.contact-section__text {
  margin: 0 0 28px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
}

.contact-section__info {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  padding: 20px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #ffffff;
}

.contact-info-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__group {
  display: grid;
  gap: 10px;
}

.contact-form__group label {
  font-size: 0.96rem;
  font-weight: 500;
  color: #ffffff;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  outline: none;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
  color: rgba(255,255,255,0.42);
}

.contact-form__group select {
  appearance: none;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
  border-color: rgba(244, 212, 106, 0.55);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 4px rgba(244, 212, 106, 0.08);
}

.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #08101d;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.22);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.contact-form__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 45px rgba(37, 211, 102, 0.28);
  filter: brightness(1.03);
}

.contact-form__button:active {
  transform: scale(0.98);
}

@media (max-width: 992px) {
  .contact-section__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 95px 16px;
  }

  .contact-section__content,
  .contact-form-box {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .contact-section__text {
    line-height: 1.75;
  }

  .contact-form__group input,
  .contact-form__group select,
  .contact-form__group textarea {
    padding: 14px 14px;
    border-radius: 14px;
  }
}
.contact-form__note {
  margin: -4px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* footer */
.site-footer {
  position: relative;
  padding: 70px 20px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 20%),
    linear-gradient(180deg, #08101d 0%, #050b14 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.site-footer__container {
  max-width: 1240px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.site-footer__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer__name {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.site-footer__description {
  margin: 0;
  line-height: 1.85;
  color: rgba(255,255,255,0.66);
}

.site-footer__title {
  margin: 0 0 18px;
  font-size: 1rem;
  color: #ffffff;
}

.site-footer__links,
.site-footer__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-footer__links a,
.site-footer__info li,
.site-footer__contact-text {
  color: rgba(255,255,255,0.66);
  text-decoration: none;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.site-footer__links a:hover {
  color: #f4d46a;
}

.site-footer__contact-text {
  margin: 0 0 18px;
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #08101d;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.site-footer__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.24);
  filter: brightness(1.03);
}

.site-footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 992px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 56px 16px 22px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-footer__logo {
    width: 42px;
    height: 42px;
  }

  .site-footer__name {
    font-size: 1.1rem;
  }

  .site-footer__bottom {
    margin-top: 32px;
  }
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 1200px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(244, 212, 106, 0.35),
    transparent
  );
}

.aviso{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #08101d;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition:
    /* opacity 0.8s ease, */
    /* visibility 0.8s ease; */
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-loader__overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    180deg,
    rgba(8, 16, 29, 0.18) 0%,
    rgba(8, 16, 29, 0.32) 100%
  ); */
}


.reser{
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
}
.ver{
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
}