/* Estilo de la sección */
.solo-turnos-video {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 100px;
}

.solo-turnos-video h3 {
  text-align: center;
  color: #FCAC41;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 2rem;
}

.landing-wizard {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.landing-wizard img {
  max-width: 40%;
  height: auto;
  max-height: 700px;
  margin: 0 auto;
}

.verMasWizard {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.verMasWizard p {
  color: #FCAC41;
}

.noselectVideoWizard {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
}

/* MODAL GOLD - VERSIÓN FIJA Y CENTRADA */
.modal-gold {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

.modal-gold.open {
  display: flex;
}

.modal-gold .modal-content {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 760px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.modal-gold .modal-content iframe {
  width: 100%;
  height: 400px;
  display: block;
  border: none;
}

.modal-gold .close-g {
  position: absolute;
  top: 10px;
  right: 5px;
  font-size: 30px;
  cursor: pointer;
  color: black;
  z-index: 2;
}

.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100%;
  touch-action: none;
  -ms-touch-action: none;
}

/* RESPONSIVE */
@media (max-width: 962px) {
  .modal-gold .modal-content iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .solo-turnos-video h3 {
    font-size: 24px;
  }

  .noselectVideoWizard {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .landing-wizard img {
    max-width: 70%;
  }

  .modal-gold .modal-content iframe {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .modal-gold .close-g {
    font-size: 24px;
    top: 5px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .modal-gold .modal-content iframe {
    height: 200px;
  }

  .landing-wizard img {
    max-width: 85%;
  }
}
