.produtsrow .productsheader {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 0 5px #e3e3e3;
    background-color: #ffff
}

.produtsrow .productsheader>div {
    width: 12.5%;
    text-align: center;
    vertical-align: center
}

.produtsrow .productrow {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 0 5px #e3e3e3;
    background-color: #ffff;
    border: 1px solid #ffff;
    transition: border .1s
}

.produtsrow .productrow:hover {
    border: 1px solid #081131
}

.produtsrow .productrow>div {
    width: 12.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    color: #081131
}

.produtsrow .productrow>div>span:nth-child(2) {
    color: #59626d;
    font-size: 14px
}

.produtsrow .productrow>div>span:not(:last-child) {
    margin-bottom: 5px
}

@media screen and (max-width: 992px) {
    .produtsrow .productsheader {
        display: none;
    }
    .produtsrow .productrow {
        flex-direction: column;
    }
    .produtsrow .productrow>div {
        width: 100%;
        padding: 20px 0px;
    }
    .produtsrow .productrow>div:not(:last-child) {
        border-bottom: 1px solid #081131;
    }
}