﻿.migasPan{
    padding:0px;
}



#cabecera2 {
    margin-bottom:40px;
    background-color: var(--cabeceraFondo);
}


h1 {
    width:100%;
    background-color: var(--cabeceraFondo);
    display:flex;
    flex-direction:column;
    align-items: center;
    padding: 0 0 20px 0;    
}

.wrpListado {
    display:flex;
    flex-direction:column;
    align-items:center;
}
.listado {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    width:100%;
    /*justify-content: flex-start;*/
    justify-content: space-between;
}




.wrpListadoItem {
    /*flex-basis:20%;*/
    /*flex-grow:1;*/
    padding:5px;
    display:flex;
    justify-content: center;
}

.listadoItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding:5px;
}


.listadoItem .wrpImagen {
    display: flex;
    overflow: hidden;
    width: 220px;
    height: 220px;
    align-items: center;
    justify-content: center;
    border:1px solid var(--productBox_borde);
    border-radius:10px;
    padding:5px;
}

.listadoItem .wrpImagen .titulo {
    font-weight:bold;
    color:var(--productBox_borde);
    font-size:25px;
    text-align:center;
    padding:20px;
    transition:all ease-in-out .5s;
}
.listadoItem:hover .wrpImagen .titulo {
    transform:scale(1.2);
}

.listadoItem .wrpImagen img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    padding:20px;
    transition:all ease-in-out .5s;
}

.listadoItem:hover .wrpImagen img {
    padding:0px;
}

.listadoItem .nombre {
    font-weight:bold;
    color:var(--productBox_titulo);
    margin-top:10px;
}
.listadoItem:hover .nombre {
    color:var(--productBox_borde);
}

@media (max-width: 800px) {
    #cabecera2 {
        margin-bottom:10px;
    }

    .listadoItem .wrpImagen{
        width : 150px;
        height: 150px;
    }
}