@charset "UTF-8";

/* ===============================
   1) Wrapper del hueco (400 px de alto, full-bleed)
   =============================== */
#vimeobanner_wrapper {
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #000;
  margin-bottom: 2rem;
}

/* ===============================
   2) Contenedor del vídeo
   =============================== */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

/* ===============================
   3) Estilos del iframe por clase CSS
   =============================== */
.vimeo-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  border: 0;
}

/* ===============================
   4) Media queries responsive
   =============================== */

/* Móviles (hasta 767px) */
@media screen and (max-width: 767px) {
  .vimeo-iframe {
    top:85%;
    min-width: 100vw;
  }
}

/* Tablets (768px a 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .vimeo-iframe {
    top: 75%;
    min-width: 100vw;
  }
}

/* Escritorio (1024px en adelante) */
@media screen and (min-width: 1024px) {
  .vimeo-iframe {
    top: 50%;
    min-width: 100vw;
  }
}



/* Escritorio (1440ppx en adelante) */
@media screen and (min-width: 1440px) {
  .vimeo-iframe {
    top: 40%;
    min-width: 100vw;
  }
}

/* Escritorio (2560px en adelante) */
@media screen and (min-width: 2000px) {
  .vimeo-iframe {
    top: 0%;
    min-width: 100vw;
  }
}

/* ===============================
   5) Modos especiales
   =============================== */
#vimeobanner_wrapper.fixed-mode .video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 400px;
  z-index: -1;
}

#vimeobanner_wrapper.parallax-mode {
  position: relative;
}

/* ===============================
   6) Overlay con texto
   =============================== */
#vimeobanner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

#vimeobanner_overlay .overlay-text {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 0 1rem;
  z-index: 3;
}

/* ===============================
   7) Adaptaciones móviles
   =============================== */
@media (max-width: 768px) {
  #vimeobanner_wrapper {
    height: 250px;
  }

  #vimeobanner_wrapper.fixed-mode .video-background {
    height: 250px;
  }
}
