.destacado2{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  padding: 4%;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
-webkit-mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 10%,
  black 90%,
  transparent 100%
);
mask-image: linear-gradient(
  to bottom,
  transparent 0%,
  black 10%,
  black 90%,
  transparent 100%
);
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 177.78vh;
  min-height: 56.25vw;
  /*pointer-events: none;*/
}

.texto-derecha {
  position: relative;
  z-index: 1;
  margin-left: 58%;
  width: 50%;
  padding: 2rem;
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.titulo-movil {display: none;}

@media (max-width: 768px) {
  .destacado2 {
    flex-direction: column;
    height: auto;
    padding: 5% 7.5%;
    align-items: center;
  }

  .video-bg {
    position: relative;
    width: 94%;
    height: 62vh;
    left: auto;
    top: auto;
    order: 3;
    margin: 0 auto;
    clip-path: inset(1% 2% 0 2%);
  }

  .video-bg iframe {
    min-width: unset;
    min-height: unset;
    width: 100%;
    height: 100%;
  }

  .texto-derecha {
    order: 2;
    margin-left: 0;
    width: 100%;
    padding: 1rem 0;
    /*font-size: 1.2rem;*/
    text-align: center;
    justify-content: center;
  }

    .titulo-movil {
    display: block;
    order: 1;
    width: 85%;
    text-align: center;
    margin: 1rem auto;
  }
}