/* Estilizações Adicionais e Animações Especiais */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-slide {
  animation: fadeInSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Efeito sutil de foco nos inputs */
input:focus {
  outline: none;
}

/* Card hover transitions */
.choice-card-transition {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice-card-transition:active {
  transform: scale(0.99);
}
