/* ============================= */
/* MODAL TICKET POR EL MUNDO */
/* ============================= */

.vc-embed-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vc-embed-modal.active {
  display: flex;
}

.vc-embed-box {
  width: min(1100px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.vc-embed-box h3 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  color: #222;
}

.vc-embed-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #20c7a1;
  color: #ffffff;
  font-size: 26px;
  line-height: 38px;
  cursor: pointer;
}

#vcEmbedContent {
  min-height: 420px;
}

/* ============================= */
/* FORM TICKET ESTILO TRAVHUB */
/* ============================= */

.vc-ticket-form-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.vc-ticket-form {
  width: 100%;
  max-width: 1040px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
  overflow: hidden;
}

.vc-ticket-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 190px;
  align-items: stretch;
  width: 100%;
}

.vc-ticket-item {
  position: relative;
  min-height: 78px;
  padding: 17px 46px 14px 28px;
}

.vc-ticket-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: #e6e6e6;
}

.vc-ticket-item i {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #555;
  font-size: 20px;
}

.vc-ticket-item label {
  display: block;
  font-size: 14px;
  color: #858585;
  margin-bottom: 5px;
  line-height: 1;
}

.vc-ticket-item select {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  outline: none;
  appearance: auto;
}

.vc-ticket-btn button {
  width: 100%;
  height: 100%;
  min-height: 78px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: #20c7a1;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.vc-ticket-btn button:hover {
  background: #18a98a;
}

@media (max-width: 768px) {
  .vc-ticket-form {
    border-radius: 24px;
  }

  .vc-ticket-row {
    grid-template-columns: 1fr;
  }

  .vc-ticket-item::after {
    display: none;
  }

  .vc-ticket-btn button {
    border-radius: 999px;
    min-height: 58px;
  }
}

/* OCULTAR FIGURAS FLOTANTES DEL HERO */
.hero-one__image,
.hero-one__image-one,
.hero-one__image-two,
.hero-one__image-three,
.hero-one__image-four {
  display: none !important;
}

.hero-one__title {
  color: #ffffff; /* blanco */
}

/* SUBTÍTULO HERO */
.hero-one__text {
  color: #ffffff !important;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

/* ============================= */
/* HERO CENTRADO REAL */
/* ============================= */

.hero-one {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
}

.hero-one > .container {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 120px !important;
}

.hero-one__content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 900px !important;
  padding: 0 20px !important;
}

.hero-one__title {
  color: #ffffff !important;
  font-size: 52px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 6px 28px rgba(0,0,0,0.75);
  animation: heroFadeUp 1s ease forwards;
}

.hero-one__text {
  color: #ffffff !important;
  font-size: 18px !important;
  text-shadow: 0 4px 18px rgba(0,0,0,0.75);
  animation: heroFadeUp 1.3s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-one::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-one > .container {
    padding-top: 80px !important;
  }

  .hero-one__title {
    font-size: 32px !important;
  }

  .hero-one__text {
    font-size: 15px !important;
  }
}

.hero-one__title {
  white-space: nowrap;
}

/* ============================= */
/* AJUSTES SOLO MÓVIL */
/* ============================= */
@media (max-width: 768px) {

  /* Barra menú móvil blanca y completa */
  .main-header,
  .main-header .container,
  .main-header__inner {
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .main-header__logo {
    background: #ffffff !important;
    border-radius: 0 !important;
  }

  .main-header__logo img {
    max-width: 220px !important;
    height: auto !important;
  }

  /* Evita que el título se corte en móvil */
  .hero-one__content {
    max-width: 100% !important;
    padding: 0 22px !important;
    overflow: visible !important;
  }

  .hero-one__title {
    white-space: normal !important;
    font-size: 36px !important;
    line-height: 1.12 !important;
    max-width: 100% !important;
    overflow: visible !important;
    word-break: normal !important;
  }

  .hero-one__text {
    font-size: 16px !important;
    line-height: 1.35 !important;
  }
}

/* ELIMINAR PRECARGA */
.preloader {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}