.links_uteis_link_overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(97, 166, 208, 0.5);
  z-index: 2;

  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.links_uteis_cont:hover .links_uteis_link_overlay{
  opacity: 1;
}
.links_uteis_cont img{
  transition: all 0.5s ease-in-out;
}
.links_uteis_cont:hover img{
  transform: scale(1.1);
}

.categFilterBtnActive{
  color: var(--colorsecond);
  border-bottom: solid 1px var(--colorsecond);
}