.cards-container {
    display: flex;
    flex-wrap: wrap;
}

.moldura-produto {
    border: 1px solid #79787d;
    border-radius: 0 15px 15px 15px;
    margin-bottom: 30px;
    padding: 15px;
}

.moldura-img-produto {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}

.img-produto {
    height: 100%;
    width: auto;
    max-width: none;
    display: inline-block;
    text-align: center;
}

.text-tipo-produto {
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 12px;
    color: #014085;
}

.text-titulo-produto {
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 20px;
    color: #726d6d;
    line-height: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 3.1em;
}

.custom-preco-associado {
    background-color: #51bb51;
    color: white;
    padding: 4px 8px;
    text-align: center;
    border-radius: 5px;
    font-family: 'lato', sans-serif;
    font-size: 12px;
}

.custom-preco {
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 29px;
    text-align: center;
    color: #726d6d;
}

.preco-associado {
    font-weight: bold;
    font-family: 'lato', sans-serif;
}

.btn-comprar {
    color: white;
    background-color: #51a800;
    border: 2px solid #51a800;
    border-radius: 45px;
    padding: 7px 50px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'lato', sans-serif;
    font-size: 18px;
    align-self: center;
}

.btn-comprar:hover {
    background-color: white;
    color: #51a800;
}

.free-delivery-icon {
    position: absolute;
    top: 10px;
    left: 25px;
    border-radius: 10px;
    max-width: 15%;
    height: auto;
}

.div-mobile {
    display: none;
}

@media (min-width: 320px) and (max-width: 499px) {

    .cards-container {
        justify-content: center !important;
    }

    .btn-comprar {
        font-size: 20px;
        justify-content: center !important;
    }

    .div-mobile {
        display: block;
        margin-left: 1rem !important;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {

    .custom-preco-associado {
        font-size: 15px;
    }

}