@media (max-width: 768px) {
  .fondo-imagen-header {
    background-attachment: scroll; /* Evita bugs en mÃ³viles */
  }
}
.fondo-imagen-header {
  background-image: url('../img/blog/BLOG_DE_NOTICIAS.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* el truco para que se mantenga fijo */

  width: 100vw;
  height: 100vh; /* siempre igual a la ventana */
}

.contenedor {
    position: relative; /* para que el div superpuesto se posicione respecto a este */
    width: 600px;
    height: 300px;
    background-color: lightblue;
}

.fondo {
    width: 100%;
    height: 100%;
    background-color: lightgreen;
}

.superpuesto {
    position: absolute;
    bottom: -50px; /* se mete 50px hacia afuera del fondo */
    left: 50px;    /* separado 50px desde la izquierda */
    width: 200px;
    height: 100px;
    background-color: tomato;
}

.video-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Relaci¨®n 16:9 */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}