/* === ESTILO CHATBOT SVAASTHY === */
.chatbot-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  max-height: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.chatbot-header {
  background: #539C29;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

.chatbot-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.chatbot-body {
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 430px;
  font-size: 15px;
}

.chat-message {
  background: #f1f1f1;
  padding: 10px 14px;
  border-radius: 12px;
  line-height: 1.4;
}

.chat-message.bot {
  align-self: flex-start;
  background: #f4f4f4;
}

.chat-message.user {
  align-self: flex-end;
  background: #d7f8c6;
}

.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-btn {
  background: #539C29;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-btn:hover {
  background: #3f7a1f;
}

.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  /* background-color: #539C29; */
  border-radius: 50%;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
}

.chatbot-toggle img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
}


/* BURBUJA EMERGENTE DE BIENVENIDA */
.chatbot-bubble {
  position: fixed;
  bottom: 100px;
  right: 100px;
  max-width: 260px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


