/* ============================= */
/* 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: #07b1e9;
  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: #07b1e9;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
}

.vc-ticket-btn button:hover {
  background: #07b1e9;
}

@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;
}

/* FONDO HERO CON IMAGEN */
.hero-one__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* overlay oscuro para que el texto se lea bien */
.hero-one::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

@media (min-width:1200px){

  .destination-one__item.ticket-card{
    height:205px !important;
  }

  .destination-one__item.ticket-card img{
    width:100% !important;
    height:205px !important;
    object-fit:cover !important;
  }

  .destination-one__carousel .owl-stage{
    display:flex !important;
    align-items:stretch !important;
  }

  .destination-one__carousel .owl-item,
  .destination-one__carousel .item{
    height:205px !important;
  }

}

/* CONTENEDOR */
.destination-one__item.ticket-card{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* IMAGEN BASE */
.destination-one__item.ticket-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: grayscale(100%) brightness(0.7);
  transition: all .5s ease;
}

/* OVERLAY SUAVE */
.destination-one__item.ticket-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.1));
  opacity:1;
  transition:.4s ease;
}

/* HOVER EFECTO */
.destination-one__item.ticket-card:hover img{
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

/* HOVER OVERLAY */
.destination-one__item.ticket-card:hover::after{
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.vc-youtube-section{
  padding:100px 0;
  background:#fff;
}

.vc-yt-wrapper{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}

.vc-yt-player iframe{
  width:100%;
  height:430px;
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.vc-yt-list{
  max-height:430px;
  overflow-y:auto;
  padding-right:8px;
}

.vc-yt-item{
  display:flex;
  gap:12px;
  padding:10px;
  margin-bottom:12px;
  border-radius:14px;
  cursor:pointer;
  background:#f7f7f7;
  transition:.25s ease;
}

.vc-yt-item:hover,
.vc-yt-item.active{
  background:#07b1e9;
  transform:translateX(4px);
}

.vc-yt-item img{
  width:120px;
  height:76px;
  object-fit:cover;
  border-radius:10px;
}

.vc-yt-item h5{
  margin:0;
  font-size:14px;
  line-height:1.3;
  color:#222;
}

.vc-yt-item:hover h5,
.vc-yt-item.active h5{
  color:#fff;
}

.vc-yt-channel-btn{
  text-align:center;
  margin-top:30px;
}

.vc-yt-channel-btn a{
  display:inline-flex;
  padding:14px 28px;
  border-radius:999px;
  background:#07b1e9;
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

@media(max-width:991px){
  .vc-yt-wrapper{
    grid-template-columns:1fr;
  }

  .vc-yt-player iframe{
    height:260px;
  }
}
/* ============================= */
/* COMPARTIR TICKETS - ELEGANTE */
/* ============================= */
.vc-share-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(15, 34, 53, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.vc-share-panel-main {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(15, 34, 53, 0.08);
}

.vc-share-panel strong {
  display: block;
  color: #102235;
  font-size: 18px;
  line-height: 1.2;
}

.vc-share-panel small,
.vc-share-kicker {
  display: block;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.3;
}

.vc-share-kicker {
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

.vc-share-panel-item {
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
}

.vc-share-panel-item span {
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.vc-share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.vc-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(15, 34, 53, 0.12);
  background: #fff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: all .18s ease;
  cursor: pointer;
  text-decoration: none;
}

.vc-share-btn:hover {
  color: #07b1e9;
  border-color: rgba(7, 177, 233, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(7, 177, 233, 0.13);
}

.vc-ticket-result {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e7eb;
}

.vc-ticket-result-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
}

.vc-ticket-result-head h4 {
  font-size: 22px;
  font-weight: 800;
  margin: 7px 0 0;
  color: #102235;
}

.vc-ticket-result-head h4 small {
  font-size: 14px;
  color: #07b1e9;
  margin-left: 4px;
}

.vc-ticket-embed {
  width: 100%;
}

.vc-share-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 18px);
  opacity: 0;
  z-index: 1000000;
  background: #102235;
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 14px;
  box-shadow: 0 18px 45px rgba(15, 34, 53, .28);
  pointer-events: none;
  transition: all .18s ease;
}

.vc-share-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 767px) {
  .vc-share-panel,
  .vc-ticket-result-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .vc-share-panel-item {
    border-radius: 16px;
  }
  .vc-share-panel-item span {
    display: block;
    margin-bottom: 6px;
  }
}

/* ============================= */
/* COMPARTIR TICKETS - ICONOS SOBRIOS */
/* Ajuste visual inspirado en botones circulares elegantes */
/* ============================= */
.vc-share-panel {
  background: #fff;
  border: 1px solid rgba(91, 91, 91, 0.14);
  border-radius: 22px;
  padding: 18px 20px;
}

.vc-share-panel-main {
  box-shadow: 0 14px 36px rgba(20, 24, 31, 0.08);
}

.vc-share-panel-item {
  background: transparent;
  border-radius: 18px;
  padding: 0;
}

.vc-share-panel-item > span {
  display: block;
  margin: 0 0 12px;
  color: #5d5d5d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
}

.vc-share-actions-refined,
.vc-share-actions {
  gap: 14px;
}

.vc-share-actions-refined .vc-share-btn,
.vc-share-actions .vc-share-btn {
  width: auto;
  height: auto;
  min-width: 66px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5a5a5a;
  box-shadow: none;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
}

.vc-share-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid #5b5b5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5b5b5b;
  font-size: 23px;
  line-height: 1;
  transition: all .18s ease;
}

.vc-share-label {
  display: block;
  color: #5b5b5b;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
  transition: color .18s ease;
}

.vc-share-actions-refined .vc-share-btn:hover,
.vc-share-actions .vc-share-btn:hover {
  color: #111827;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: none;
}

.vc-share-actions-refined .vc-share-btn:hover .vc-share-circle,
.vc-share-actions .vc-share-btn:hover .vc-share-circle {
  border-color: #111827;
  color: #111827;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .12);
}

.vc-share-actions-refined .vc-share-btn:hover .vc-share-label,
.vc-share-actions .vc-share-btn:hover .vc-share-label {
  color: #111827;
}

.vc-share-actions-refined .vc-share-btn:focus-visible,
.vc-share-actions .vc-share-btn:focus-visible {
  outline: none;
}

.vc-share-actions-refined .vc-share-btn:focus-visible .vc-share-circle,
.vc-share-actions .vc-share-btn:focus-visible .vc-share-circle {
  outline: 3px solid rgba(7, 177, 233, .22);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .vc-share-actions-refined,
  .vc-share-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 10px;
    width: 100%;
  }

  .vc-share-actions-refined .vc-share-btn,
  .vc-share-actions .vc-share-btn {
    min-width: 0;
  }

  .vc-share-circle {
    width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .vc-share-label {
    font-size: 12px;
  }
}

/* ============================= */
/* AJUSTE FINAL: COMPARTIR PREMIUM CON LOGOS EN CÍRCULO */
/* ============================= */
.vc-share-actions-refined,
.vc-share-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.vc-share-actions-refined .vc-share-btn,
.vc-share-actions .vc-share-btn {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.vc-share-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.8px solid #cfcfcf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #4f4f4f;
  font-size: 18px;
  line-height: 1;
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.vc-share-circle i {
  display: block;
  line-height: 1;
}

.vc-share-x-logo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.vc-share-label {
  display: none !important;
}

.vc-share-actions-refined .vc-share-btn:hover,
.vc-share-actions .vc-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: none;
  color: #0fb2e8;
}

.vc-share-actions-refined .vc-share-btn:hover .vc-share-circle,
.vc-share-actions .vc-share-btn:hover .vc-share-circle {
  border-color: #0fb2e8;
  color: #0fb2e8;
  box-shadow: 0 8px 20px rgba(15, 178, 232, .16);
}

.vc-share-actions-refined .vc-share-btn:focus-visible,
.vc-share-actions .vc-share-btn:focus-visible {
  outline: none;
}

.vc-share-actions-refined .vc-share-btn:focus-visible .vc-share-circle,
.vc-share-actions .vc-share-btn:focus-visible .vc-share-circle {
  border-color: #0fb2e8;
  outline: 3px solid rgba(15, 178, 232, .20);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .vc-share-actions-refined,
  .vc-share-actions {
    display: flex;
    gap: 10px;
  }

  .vc-share-actions-refined .vc-share-btn,
  .vc-share-actions .vc-share-btn,
  .vc-share-circle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .vc-share-x-logo {
    font-size: 17px;
  }
}
