/* BASE */
* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ICONO */
#chat-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd, #111, #ff7a00);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999999;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* CHAT */
#heliz-chatbot {
  position: fixed;
  bottom: 95px;
  left: 20px;
  width: 340px;
  height: 460px;
  background: #0f0f0f;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 999999;
}

/* OCULTO */
.hidden {
  display: none !important;
}

/* MINIMIZADO */
#heliz-chatbot.minimized {
  height: 50px;
}

/* HEADER */
#chat-header {
  background: linear-gradient(135deg, #0d6efd, #111, #ff7a00);
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

/* BOTONES */
.chat-actions button {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-left: 5px;
}

/* BODY */
#chat-body {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: #1a1a1a;
}

/* FOOTER */
#chat-footer {
  display: flex;
  background: #111;
  border-top: 1px solid #333;
}

#chat-input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  background: #1a1a1a;
  color: white;
}

#chat-footer button {
  background: linear-gradient(135deg, #0d6efd, #ff7a00);
  color: white;
  border: none;
  padding: 0 18px;
  cursor: pointer;
}

/* MENSAJES */
.user {
  background: #ff7a00;
  color: white;
  padding: 8px 12px;
  border-radius: 15px 15px 0 15px;
  margin: 6px 0;
  max-width: 75%;
  margin-left: auto;
}

.bot {
  background: #2a2a2a;
  color: #eaeaea;
  padding: 8px 12px;
  border-radius: 15px 15px 15px 0;
  margin: 6px 0;
  max-width: 75%;
  margin-right: auto;
}

/* WHATSAPP */
.wa-link {
  display: block;
  margin-top: 10px;
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
}