/* ==================================================================== */
/* BACKGROUNG PANTALLA COMPLETA MEDIANTE CONTENEDOR*/
#fondo {
    /* voy a generalizar esto poniendo style en el div. background-image: url('audio_imagen_video/home/fondo.jpg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%; /* Toma toda la pantalla */
    position: fixed; /* quito absolute porque no cubre a full. No usar fixed para permitir scroll */
    /* left: 0; */
    top: 0;
    width: 100%;
    z-index: -1; /* Para que el contenido esté encima */
}
/* ==================================================================== */
