.box_produto {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all .25s ease;
}

.box_produto:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.box_produto a {
    display: block;
}

.box_produto .cover {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.box_produto .text {
    min-height: 190px;
    padding: 20px 10px;
}