/* Estilização para botões com efeito de hover tipo água enchendo */

.btn {
  position: relative;
  overflow: hidden;
  background-color: #FF7D7D;
  color: #0F0F1A;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FF7D7D, #605bff);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

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

