/* ================================================================
   MOTOR DE VENTA DE BOLETOS — FLECHA ROJA (VERSIÓN SIMPLIFICADA)
   ----------------------------------------------------------------
   Módulo dedicado al iframe de compra de boletos.
   CORREGIDO PARA MOSTRARSE COMPLETO EN MÓVILES 
   (CON CALENDARIO, BOTÓN Y VIAJE REDONDO)
   ================================================================ */

/* ---------------------------------------------------------------
   WRAPPER PRINCIPAL — contenedor externo del motor
--------------------------------------------------------------- */
.motor-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  margin: 0;
  background: transparent;
  position: relative;
  z-index: 100;
}

/* ---------------------------------------------------------------
   IFRAME — motor oficial de compra de boletos Flecha Roja
   Alturas MUY AUMENTADAS para mostrar TODO el formulario en móviles
   Incluyendo calendario completo y opción de viaje redondo
--------------------------------------------------------------- */
#iframe-combo {
  display: block;
  width: 100%;
  border: none;
  background: transparent !important;
  border-radius: 0;
  transition: height 0.3s ease;
}

/* ---------------------------------------------------------------
   RESPONSIVE — Alturas optimizadas para mostrar el formulario COMPLETÍSIMO
   Se aumentaron TODAS las alturas para que quepa el calendario y viaje redondo
--------------------------------------------------------------- */

/* Móviles muy pequeños (< 360px) */
@media (max-width: 359px) {
  #iframe-combo {
    height: 760px; /* +80px para asegurar que quepa todo */
  }
}

/* Móviles pequeños (360px - 389px) */
@media (min-width: 360px) and (max-width: 389px) {
  #iframe-combo {
    height: 740px;
  }
}

/* Móviles estándar (390px - 429px) */
@media (min-width: 390px) and (max-width: 429px) {
  #iframe-combo {
    height: 720px;
  }
}

/* Móviles grandes (430px - 479px) */
@media (min-width: 430px) and (max-width: 479px) {
  #iframe-combo {
    height: 700px;
  }
}

/* Móviles muy grandes (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  #iframe-combo {
    height: 680px;
  }
}

/* Tablets pequeñas (576px - 667px) */
@media (min-width: 576px) and (max-width: 667px) {
  #iframe-combo {
    height: 640px;
  }
}

/* Tablets medianas (668px - 767px) */
@media (min-width: 668px) and (max-width: 767px) {
  #iframe-combo {
    height: 600px;
  }
}

/* Tablets grandes (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #iframe-combo {
    height: 520px;
  }
}

/* Desktop (992px y superior) - Altura compacta pero suficiente */
@media (min-width: 992px) {
  #iframe-combo {
    height: 280px; /* Ligeramente aumentado para mayor comodidad */
  }
}

/* Pantallas muy grandes (1400px y superior) */
@media (min-width: 1400px) {
  #iframe-combo {
    height: 260px;
  }
}

/* ---------------------------------------------------------------
   FORMULARIO OCULTO POST (intercambio / monedero)
--------------------------------------------------------------- */
#hidden-form-garden {
  display: none !important;
  visibility: hidden;
}

/* ---------------------------------------------------------------
   .combo-box — wrapper heredado del skin original
--------------------------------------------------------------- */
.combo-box {
  font-size: 0.8em !important;
}

.combo-box .container-fluid .col-md-2:first-child {
  padding: 0 !important;
}

/* ---------------------------------------------------------------
   .experiencias — superposición del motor sobre carousel
--------------------------------------------------------------- */
.experiencias {
  margin-top: -276px;
  position: relative;
  z-index: 200;
}

/* ---------------------------------------------------------------
   LISTAS DE PUNTOS DE VENTA
--------------------------------------------------------------- */
ul.venta_lista { padding: 0; margin: 0; }

ul.venta_lista li,
ul.venta_lista a {
  list-style: none;
  display: block !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding-left: 15px;
  font-size: 1.0em;
  line-height: 2.95em;
  color: #053b24;
}

ul.venta_lista li a:hover,
ul.venta_lista li.active a {
  color: #ffffff;
  background-color: #63a5a7;
  text-decoration: none;
}

ul.venta_lista li:before {
  font-family: 'FontAwesome';
  float: left;
  margin-right: 10px;
  padding-left: 10px;
  color: #053b24;
}

/* ---------------------------------------------------------------
   .regreso-clases
--------------------------------------------------------------- */
.regreso-clases {
  top: 80px;
  position: absolute;
  left: 25%;
  bottom: 20px;
  z-index: 10;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

@media only screen and (max-width: 992px) {
  .regreso-clases .pizarron {
    -webkit-animation-duration: 0s;
    -webkit-animation-delay: 1s !important;
    -webkit-animation-iteration-count: 1;
    width: 135%;
    margin-left: -110px !important;
    margin-top: -100px !important;
  }
}