body {
    margin: 0;
    position: relative;
}

/* Imagen de fondo sin desenfoque */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../img/Portada-AgostoLinkedin-GSR.png'); /* Ajusta si es necesario */
    background-size: cover;
    background-position: center;
    /* filter: blur(3px); */ /* Esto lo quitamos */
    z-index: -2;
}

/* Capa semitransparente encima de la imagen */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5); /* Blanco semitransparente */
    z-index: -1;
}

