.img-full1 {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8b8b8b;
}

.img-full1-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1; /* Ajusta la opacidad si lo deseas */
  pointer-events: none;
}

/* Mostrar solo el video desktop por defecto */
.img-full1-video-mobile {
  display: none;
}
.img-full1-video-desktop {
  display: block;
}

@media (max-width: 768px) {
  .img-full1-video-desktop {
    display: none;
  }
  .img-full1-video-mobile {
    display: block;
  }
}

.img-full-div1 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-full1 {
  display: flex;
  width: 100%;
  height: calc(100dvh - 20px);
  padding-bottom: 2rem;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.img-full1 img {
  position: relative;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.img-full-div1 {
  flex-direction: column;
  display: flex;
  backdrop-filter: blur(24px);
  position: absolute;
  bottom: 100px;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

@media (min-width: 425px) {
  .img-full-div1 {
    width: 90%;
  }
}

@media (min-width: 768px) {
  .img-full-div1 {
    width: 40%;
  }
}

@media (min-width: 1024px) {
  .img-full-div1 {
    width: 40%;
    bottom: 100px;
  }
  .img-full1 img {
    height: 100%;
  }
}

@media (min-width: 1440px) {
  .img-full1 {
    max-width: 100%;
    width: 100%;
  }
}

.video-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}
