﻿.bg-image {
    background-image: linear-gradient( to bottom, rgba(0,0,0,0) 0%, /* Transparente arriba */
    rgba(0,0,0,0.3) 10%, /* Empieza el oscurecimiento */
    rgba(0,0,0,0.7) 50%, /* Más fuerte */
    rgba(0,0,0,1) 100% /* TOTALMENTE negro abajo */
    ), url('/resources/fondo.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

    .bg-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5); 
    }

    .bg-image > * {
        position: relative;
        z-index: 1;
    }


