/* Estilos específicos para a página de boas-vindas */
.text-gradient {
  background: linear-gradient(90deg, #2c1363, #101233);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Efeitos de hover para o botão */
.hover-glow:hover {
  box-shadow: 0 0 15px rgba(44, 19, 99, 0.6);
}

/* Animações adicionais */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* Animações */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.text-gradient {
  background: linear-gradient(90deg, #2c1363, #101233);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine:after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
  0% {
    left: -100%;
    opacity: 0;
  }

  10% {
    left: -100%;
    opacity: 1;
  }

  50% {
    left: 100%;
    opacity: 1;
  }

  51% {
    opacity: 0;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}