/*Começo - (Product)*/
.product{
    background-color: var(--backgroud-principal);
    padding: 30px 0;
}

.product .product-cards .cards{
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit,380px);
    justify-content: center;
}

.product .product-cards .card{
    border-radius: 10px;
    width: 350px;
    margin: auto;
    padding-bottom: 30px;
}

.product .product-cards .card img{
    width: 350px;
    height: 350px;
    border-radius: 10px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.171);
}

.product .product-cards .card figcaption{
    text-align: center;
}
/*Fim - (Product)*/