#asistente-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999999;
}

#asistente-boton {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: none;
  background: #005DAA;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

#asistente-boton:hover {
  transform: scale(1.05);
}

#asistente-ventana {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,.30);
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

#asistente-header {
  background: #005DAA;
  color: white;
  padding: 15px;
  font-weight: bold;
}

#asistente-cerrar {
  float: right;
  cursor: pointer;
}

#asistente-mensajes {
  height: 380px;
  overflow-y: auto;
  padding: 15px;
  background: #f5f5f5;
}

.mensaje {
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 10px;
}

.bot {
  background: white;
}

.usuario {
  background: #d8ecff;
  text-align: right;
}

#asistente-input {
  display: flex;
  border-top: 1px solid #ddd;
}

#asistente-pregunta {
  flex: 1;
  border: none;
  padding: 12px;
  outline: none;
}

#asistente-enviar {
  border: none;
  background: #005DAA;
  color: white;
  padding: 0 18px;
  cursor: pointer;
}
