#pantalla-inicio{
    background: linear-gradient( rgba(0, 0, 0, .9), rgba(0, 0, 0, .1)), url("/img/proyecto-emergencia-vial-020-tramo-st-03.png");
    background-size: cover;
    background-position: center center;
    height: 60vh;
}


@media screen and (max-width: 400px) {
    #pantalla-inicio{

        height: 75vh;
    }
}

/* Contenedor principal */
.contenido-texto {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Contenedor de imágenes */
.contenedor-imagenes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

/* Estilos para imágenes */
.imagen-documento {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    filter: brightness(0.98) contrast(1.05) saturate(1.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

/* Efecto al pasar el mouse */
.imagen-documento:hover {
    transform: scale(1.01);
    filter: brightness(1.02) contrast(1.08) saturate(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}