/* Estilização para a imagem com efeito de preenchimento tipo água */

.dashanima {
  position: relative;
  display: inline-block;
  border: 4px solid #ffcccc;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.dashanima::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ffcccc, #f2f1ff);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 16px;
}

.dashanima:hover::before {
  bottom: 0;
}

.dashanima:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 125, 125, 0.5);
}

