.product{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 50px;
    gap: 40px;
}
.productImgs{
    justify-self: end;
}
.productInfo{
    margin-top: 50px;
}
.productInfo h2{
    font-size: 40px;
}
.productInfo p{
    font-size: 20px;
    margin: 10px 0;
}
.productInfo .valor{
    margin-bottom: 50px;
}
.productInfo form input{
    padding: 15px 0px;
    border-radius: 10px;
    width: 15%;
    font-size: 25px;
    text-align: right;
}
.productInfo form button{
    background: #39940d;
    color: white;
    border: none;
    padding: 16px 10px;
    font-size: 25px;
    border-radius: 10px;
    width: 70%;
}

@media (max-width:992px){
    .productImgs{
        justify-self: center;
    }
    .produtos{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width:730px){
    .productImgs{
        padding: 0 !important;
        justify-self: center;
    }
    .productImgs img{
        width: 360px;
    }
    .product{
        justify-items: center;
        padding: 0 !important;
        grid-template-columns: 1fr;
        gap: 0 !important;
    }
    .productInfo .valor{
        margin-bottom: 20px;
    }
    .productInfo{
        margin-bottom: 50px;
        padding: 0px 20px;
        margin-top: 0;
    }
    .productInfo form {
        display: flex;
        justify-content:space-between;
        gap: 10px;
    }
    .productInfo form input{
        padding: 15px 10px;
        width: 17%;
    }
    .productInfo form button{
        width: 80%;
    }
}