/**
 * Imagen de fondo centralizada - fondo_3.webp
 * Ruta relativa desde publicas/css/ hacia img/
 * Un solo punto de cambio para toda la aplicación
 */

#header.header.fondo-portada,
.fondo-portada-header {
    background: #1a1a1a url('../../img/fondo_3.webp') center center no-repeat;
    background-size: cover;
}

.fondo-portada-body {
    background: rgb(16, 13, 24) url('../../img/fondo_3.webp') center center no-repeat;
    background-size: cover;
}

.fondo-portada-body-bottom::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1a1a1a url('../../img/fondo_3.webp') bottom center no-repeat;
    background-size: cover;
    z-index: -1;
}
