/* Container centralizado com efeito de entrada */
.btn-container {
  text-align: center;
  margin-top: 40px;
  animation: fadeDown 1.5s ease-out;
}

/* Botão principal */
.btn-cadastro {
  display: inline-block;
  background: linear-gradient(90deg, #007BFF, #00A6FF);
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: piscar 2s infinite;
}

/* Título principal */
.btn-cadastro .titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* Ícone animado */
.btn-cadastro .icone {
  margin-left: 10px;
  font-size: 1.5rem;
  animation: moverSeta 1.2s infinite ease-in-out;
}

/* Subtítulo */
.btn-cadastro .subtitulo {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.9;
}

/* Efeito hover */
.btn-cadastro:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 166, 255, 0.6);
}

/* Animação de fade down */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animação piscante */
@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Animação da seta */
@keyframes moverSeta {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
