.produto-info h3 a {
font-weight: 400;
}
.card-produto .produto-info a.destaque-btn {
background-color: #0f2767;
color: white;
}
.card-produto .produto-info a.destaque-btn:hover {
background-color: #eba31b;
color: white;
}
.card-produto .produto-info .produto-preco {
padding: 10px 0;
color: #0f2767;
}
.card-produto span.onsale {
position: absolute;
top: 5px;
right: 5px;
background-color: #eba31b;
color: white;
border: none;
border-radius: 50%;
width: 65px;
height: 40px;
line-height: 40px;
padding: 0;
margin: 0;
text-align: center;
}
@media screen and (min-width: 768px) {
.card-produto {
position: relative;
overflow: hidden;
padding: 10px;
transition: all .3s;
}
.card-produto:hover {
box-shadow: 0 0 10px #80808066;
transition: all .3s;
transform: scale(1.01);
z-index: 99;
}
.card-produto .produto-info {
position: absolute;
bottom: -100%;
left: 0;
width: 100%;
text-align: center;
transition: all .3s;
}
.card-produto:hover .produto-info {
bottom: 0;
}
.card-produto img {
margin: 0!important;
}
.card-produto .produto-info {
background-color: #eeeeeec9;
padding: 15px 5px;
}
}
@media screen and (max-width: 600px) {
.produto.card-produto {
width: 100% !important;
margin: 10px 0;
}
}