.tituloSeccionBD img{
    width: 75px;
}

.tituloSeccionBD p{
    color: #333333 ;
    font-family: 'bigjohnpro-regular';
    font-size: 35px;

}

.itemLibro {
    display: flex;
    flex-direction: column;
    height: 550px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    
}

.imgContainer {
    position: relative;
    height: 450px;
    overflow: hidden;
     border-radius: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.imgContainer img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 25px;
}



.infoExtra {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333ce;
    color: #fff;
    padding: 20px;
    font-size: 12px;
    opacity: 0;
    text-align: left;
    border-radius: 0 0 25px 25px;

}

.imgContainer:hover .infoExtra {
    opacity: 1;
}

.itemLibro p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.2em;
    height: 2.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: 'bigjohnpro-regular';
    font-size: 20px;
    align-content: center;
}


.btnGeneralBiblioteca{
    height: 35px;
    width: 100%;
    font-family: 'bigjohnpro-bold';
    font-size: 20px;
    border: 1px solid #FF2000;
    border-radius: 25px;
    align-content: center;
    color: #333333;
    cursor: pointer;
}

.btnGeneralBiblioteca:hover{
    border: 2px solid #FF2000;
    background-color: #FF2000;
    color: #fff;
}

.btnGeneralBiblioteca.activaOpcion{
    border: 2px solid #FF2000;
    background-color: #FF2000;
    color: #fff;
}

.tituloSeccion2BD{
    color: #333333 ;
    font-family: 'bigjohnpro-bold';
    font-size: 25px;
   
}
.divFiltros{
    border-radius: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    padding-top: 35px;
    padding-bottom: 35px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 3em !important;
    margin-top: 1em !important;
}


.imgPortada{
    width: 70%;
    
     border-radius: 25px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.etiquetaClasif{
    font-size: 16px;
   line-height: 18px;
    background-color: #333333;
    color: #fff;
    width: max-content;
    padding: 7px;
    border-radius: 0 10px 10px 0;
    font-family: 'bigjohnpro-regular';

}
.tituloLibro{
    font-size: 40px;
    font-family: 'CarmenSans-Bold';
    line-height: 42px;
    color: #333333;
}

.edicionautor{
    font-size: 18px;
    line-height: 20px;
    color: #333333;
    font-family: 'bigjohnpro-regular';
    font-style: italic;
}

.edicionautor span{
    color: #111111;
    font-family: 'CarmenSans-SemiBold';
    font-style: normal;
}
.resumenLibro{
    font-size: 22px;
    color: #333333;
    font-family: 'bigjohnpro-regular';
    text-align: justify;
    padding-top: 2em;
    padding-bottom: 2em;

}
@media (max-width: 767px) {
    .itemLibro {
        height: auto;
    }

    .imgContainer {
        height: 200px; /* Reduce la altura de la imagen en móviles */
    }

    .imgContainer img {
        height: 100%;
        object-fit: cover;
    }

    .infoExtra {
        font-size: 12px;
        padding: 8px;
    }

    .itemLibro p {
        font-size: 14px;
        height: auto;
        -webkit-line-clamp: 2;
    }
}

