.title-produtos{
    margin: 45px 0;
    text-align: center;
}
.produtos{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 0 50px;
}
.card{
    text-align: center;
    position: relative;
}
.imgProduct{
    margin-bottom: 8px;
}
.imgProduct img{
    width: 100%;
    background: #ECEFF0;
}
.plus{
    border: none;
    background:#000;
    color: white;
    padding: 0px 10px;
    border-radius: 5px;
    position: absolute;
    font-size: 25px;
    font-weight: 900;
    top: 10px;
    right: 10px;
}
.infoProduct{
    color: #000;
}

.verMais{
    display: flex;
    background: #39940d;
    color: white;
    border: none;
    margin: 20px 0;
    text-align: center;
    padding: 10px 20px;
    /* width: 13%; */
    font-size: 25px;
    border-radius: 10px;
    justify-content: center;
    /* justify-items: center; */
    justify-self: center;
}

@media (max-width:992px){
    .produtos{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width:730px){
    .produtos{
        grid-template-columns: 1fr !important;
    }
}