/* =========================
   FONDO GLOBAL WEB
========================= */

html{
    scroll-behavior:smooth;
}

body{
    position:relative;
    overflow-x:hidden;
    background:#050505;
    color:#ffffff;
    margin:0;
    padding:0;
}

/* Imagen de fondo */
body::before{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('/fondo.png') center center / cover no-repeat;
    opacity:0.55;
    z-index:-2;
}

/* Capa oscura suave */
body::after{
    content:'';
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:-1;
}