@media (max-width: 768px) {
  .fondo-imagen-header {
    background-attachment: scroll; /* Evita bugs en móviles */
  }
}
.fondo-imagen-header {
  background-image: url('../img/sumate/SUMATE.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 */
}