.box-produto {
    width: 250px;
    height: 250px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
}

.box-produto img {
    width: 250px;
    height: 250px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    border-radius: 15px;
}

.box-produto-descricao {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 0;
    /* background: rgba(29, 106, 154, 0.72); */
    background-color: #FF9100;
    color: #fff;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    text-align: left;
    line-height: 18px;
    visibility: hidden;
    opacity: 0;
    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
}

.box-produto:hover .box-produto-descricao {
    visibility: visible;
    opacity: 1;
}


/* 
.link-hover-produto:hover+.box-produto-descricao {
    display: block;
} */