/* =========================================================
   VIDEO PROMO: pequeño en la página + grande al reproducir
   ========================================================= */

/* Tamaño "normal" dentro del contenido (ajústalo a tu gusto) */
.promo-video-wrap{
  width: 100%;
  max-width: 720px;     /* <-- tamaño en escritorio */
  margin: 0 auto;
}

/* En móvil, ocupa todo el ancho disponible */
@media (max-width: 767px){
  .promo-video-wrap{
    max-width: 100%;
  }
}

.promo-video{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Overlay (cuando se reproduce) */
.promo-overlay{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 9999;
}
.promo-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Modal del vídeo */
.promo-modal{
  width: min(94vw, 1100px);
  max-height: 92vh;
  background: #000;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-modal video{
  width: 100%;
  height: auto;
  max-height: calc(92vh - 70px);
  display: block;
  border-radius: 10px;
}

.promo-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
}
.promo-close:hover{
  background: rgba(255,255,255,0.22);
}

/* Evita scroll del body cuando el modal está abierto */
body.promo-no-scroll{
  overflow: hidden;
}
