body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f0f0f0;
}
.boton-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #691C32;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-height: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.oculto { display: none; }
.chat-header {
  background: #691C32;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header img {
  height: 30px;
}
.chat-window {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
}
.mensaje {
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  max-width: 80%;
}
.usuario {
  background: #bcf5d0;
  align-self: flex-end;
}
.bot {
  background: #eeeeee;
  align-self: flex-start;
}
.chat-input {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: #fff;
  border-top: 1px solid #ccc;
}
.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
}
.botones {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}
.botones button {
  flex: 1;
  height: 46px;
  font-size: 22px;
  background-color: #691C32;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.botones button:hover {
  background-color: #BC955C;
}
.hora {
  font-size: 10px;
  color: #666;
  text-align: right;
  margin-top: 4px;
}
