








/*Letras grandes de: https://fsymbols.com/es/letras/
███╗░░██╗░█████╗░██╗░░░██╗███████╗██████╗░░█████╗░██████╗░███████╗░██████╗
████╗░██║██╔══██╗██║░░░██║██╔════╝██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔════╝
██╔██╗██║██║░░██║╚██╗░██╔╝█████╗░░██║░░██║███████║██║░░██║█████╗░░╚█████╗░
██║╚████║██║░░██║░╚████╔╝░██╔══╝░░██║░░██║██╔══██║██║░░██║██╔══╝░░░╚═══██╗
██║░╚███║╚█████╔╝░░╚██╔╝░░███████╗██████╔╝██║░░██║██████╔╝███████╗██████╔╝
╚═╝░░╚══╝░╚════╝░░░░╚═╝░░░╚══════╝╚═════╝░╚═╝░░╚═╝╚═════╝░╚══════╝╚═════╝░
Apartado dedicado a los estilos de novedades, ya sea front o back */

/* NOVEDADES FRONT */
.position-relative_w-100 {
    position: relative;
    width: 100%;
}
.superposicion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7)); /* Degradado hacia abajo */
}
.contSobreImagen {
    position: absolute;
    width: 100%;
    bottom: 1%;
    padding: 2%;
    color: white;
    margin: 0;
    z-index: 1; /* Para que el título esté por encima de la superposición */
}
.imagen-recortada {
    max-width: 100%; /* Establece el máximo ancho permitido */
    max-height: 30%; /* Establece el máximo alto permitido */
    overflow: hidden; /* Oculta cualquier parte de la imagen que exceda los límites */
}

.imagen-recortadaFront img {
    min-width: 100%;
    height: 15rem;
    overflow: hidden;
}

#cuerpoNovedad * {
    text-align: justify;
    font-size: 1rem;
}
#cuerpoNovedad img{
    margin: 0 auto;
    max-width: 90%;
    height: auto;
}

/* NOVEDADES BACK */