@import url('https://fonts.googleapis.com/css2?family=Proza+Libre:wght@700&display=swap');

.productos {
    margin: 8rem auto;
}

.productos__titulo-box {
    display: flex;
    flex-flow: row nowrap;
    font-family: 'Proza Libre', sans-serif;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.productos__titulo {
    font-weight: 600;
    font-size: 2rem;
}

.productos__todos {
    transition: .2s;
    color: #fff;
}

.productos__todos:hover {
    color: white;
}

.productos__cards {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    overflow-x: hidden;
}

.producto__card {
    background-color: #000000c0; 
    box-shadow: 0 0 10px #00000060;
    border-radius: .2rem;
    color: rgb(255, 255, 255);
    transition: 0.2s;
}

.producto__card:hover{
    box-shadow: 0 0 10px #00000080;
    transform: scale(1.025);
}

.producto__img {
    width: 200px;
    height: 250px; 
    object-fit: cover;
}

.producto__texto {
    text-align: center;
    padding: 12px;
}

.producto__categoria {
    font-size: .7rem;
    font-weight: bold;
}

.producto__nombre {
    font-size: 1rem;
    font-weight: 500;
    margin: .2rem 0 .3rem 0;
    font-family: 'Proza Libre', sans-serif;

}

.producto__precio {
    font-size: .9rem;
    font-family: 'Proza Libre', sans-serif;

}

.producto__detalles {
    font-family: 'Proza Libre', sans-serif;
    margin-top: .8rem;
    text-align: center;
    font-size: .7rem;
}

a {
    color: #6731e6;
}

a:hover {
    color: #6731e6;
}

@media only screen and (min-width: 768px) {

    .productos {
        margin: 8rem 3rem;
    }

}