.section-produtos {
    max-width:100%;
    


    /* background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb') no-repeat center center/cover; */
    background: url('/src/img/bg_preto2.jpg') no-repeat center/cover;
    padding-top: 30px;
    padding-bottom: 30px;
}

.todos-produtos {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 8px;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 16px;
}

/* .container-produto {
    min-width:150px;
    max-width: 250px;
    min-height: 320px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

} */

.container-produto{
    width:150px;
    min-height: 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 8px;
    /* background: rgba(255, 255, 255, 0.1); */

    background: rgba(245, 239, 239, 0.082);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.603);
    backdrop-filter: blur(05px);
    -webkit-backdrop-filter: blur(05px);
    border: 2px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.container-produto a {
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    /* color: rgb(207, 61, 61); */
    color: #ffffff;
}

.container-produto a:hover {
    /* color: rgb(233, 24, 24); */
    color: #e7e7e7;
}
.container-produto img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.container-produto img:hover {
    opacity: 0.8;
}

.descricao-produto {
    margin-top: 10px;
    text-align: center;
}

@media (min-width: 390px) {
    
.container-produto{
    width:160px;
    min-height: 180px;
    border-radius: 10px;
    padding: 8px;
    }

    .container-produto a {
    font-size: 1.0rem;
    }

    .container-produto img {
    border-radius: 10px;
    }

    .todos-produtos {
    gap: 6px;
}

}


