@keyframes blurFade {
  0% {
    opacity: 1;
    backdrop-filter: blur(20px);
  }
  100% {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

@keyframes textFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes cardReveal {
  0% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 10px rgba(161, 160, 160, 0.24);
    border-color: rgba(255, 255, 255, 0.16);
  }
}

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

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

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

.delay-\[0\.3s\] {
  animation-delay: 0.3s;
}

.message {
  display: flex;
  align-items: center;
}

.user-message p {
  background-color: #e0f7fa;
  border-radius: 12px;
  padding: 10px;
  max-width: 75%;
  margin-left: auto;
  text-align: right;
}

.bot-message p {
  background-color: #f1f0f0;
  border-radius: 12px;
  padding: 10px;
  max-width: 75%;
  text-align: left;
}
html {
  scroll-behavior: smooth;
}
#loader {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.89);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#loader img {
  width: 80px;  /* Ajuste conforme o tamanho desejado */
  height: 80px;
}