.block img {         
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0px 13px 8px 2px black;       
}

#line-title{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#logazo{
    width: 380px;
    height: 380px;
    border-radius: 190px;
    box-shadow: 0px 8px 30px 8px black;
    z-index: 1;
    margin-top: -400px;   
}

.category 
{
    font-family: "Arsenal SC", system-ui;
    text-align: center;
    font-size: 50px;
    margin-top: 10px;
    background: linear-gradient(to bottom, #ffffff 40%, rgb(235, 235, 235)); 
}

#linea{
    background: rgb(235, 235, 235);
    align-content: center;
}

#hr-2{
    margin-top: 0px;
    width: 15%;
}

figure{
    margin: 14px;
    background-color: rgb(221, 221, 221);
    box-shadow: 0px 0px 0px 11px rgba(221, 221, 221);
    border-radius: 5px;
}

figcaption {
    margin-top: 9px;
    font-size: 18px;
    display: flex;               
    justify-content: space-between;  /* Espacio entre los elementos */

}

.titulo{
    font-size: 20px;
    text-align: left;
    margin-left: 10px;
}


.precio{
    font-family: "Arsenal SC", system-ui;
    font-size: 18px;
    text-align: right;
    margin-right: 20px;
}

.images img
{
    width: 350px; /* La imagen cubre todo el ancho del contenedor */
    height: 400px; /* La imagen cubre toda la altura del contenedor */
    object-fit: cover; /* La imagen se ajusta para cubrir todo el contenedor, recortando lo necesario */
    border-radius: 5px;
    box-shadow: 4px 4px 6px rgba(53, 53, 53, 0.4);
}
.images 
{
    background-color: rgb(235, 235, 235);
    margin: 0px;
    padding: 0;
    display: block;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente (si el contenedor tiene altura) */
    flex-wrap: wrap; /* Permite que las imágenes se ajusten en múltiples líneas si es necesario */
}

.singleImg {
    transition: transform .2s;
}
  
.singleImg:hover {
    transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}