/* ============================================================
   CHAT DISPANZINHO — ESTILO (VERSÃO FINAL LIMPA + BOTÕES)
   ============================================================ */

#dispanzinho-chat-container {
  max-width: 720px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#dispanzinho-chat-header {
  background: #0a4b78;
  color: #fff;
  padding: 12px 16px;
  font-weight: bold;
}

#dispanzinho-chat-mensagens {
  padding: 16px;
  height: 360px;
  overflow-y: auto;
  background: #f7f7f7;
}

/* ===========================
   MENSAGENS
   =========================== */

.dispanzinho-msg {
  margin-bottom: 12px;
  line-height: 1.4;
}

.dispanzinho-msg.usuario {
  text-align: right;
}

.dispanzinho-msg.usuario span {
  display: inline-block;
  background: #0a4b78;
  color: #fff;
  padding: 8px 12px;
  border-radius: 16px 16px 0 16px;
  max-width: 80%;
  word-wrap: break-word;
}

.dispanzinho-msg.agente span {
  display: inline-block;
  background: #e9e9e9;
  color: #000;
  padding: 8px 12px;
  border-radius: 16px 16px 16px 0;
  max-width: 80%;
  word-wrap: break-word;
}

/* ===========================
   BOTÕES
   =========================== */

.dispanzinho-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.dispanzinho-btn {
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  max-width: 100%;
}

/* Produtos */
.dispanzinho-btn-produto {
  background: #0a4b78;
  color: #fff;
}
.dispanzinho-btn-produto:hover {
  background: #083a5d;
}

/* Ver mais */
.dispanzinho-btn-mais {
  background: #ffffff;
  color: #0a4b78;
  border: 1px solid #0a4b78;
}
.dispanzinho-btn-mais:hover {
  background: #0a4b78;
  color: #fff;
}

/* Técnicos */
.dispanzinho-btn-tecnico {
  background: #ffffff;
  color: #0a4b78;
  border: 1px solid #0a4b78;
}
.dispanzinho-btn-tecnico:hover {
  background: #0a4b78;
  color: #fff;
}

/* Trocar produto */
.dispanzinho-btn-trocar {
  background: #fffbeb;
  color: #8a5a00;
  border: 1px solid #f2c14e;
}
.dispanzinho-btn-trocar:hover {
  background: #f2c14e;
  color: #2b1b00;
}

/* Mobile */
@media (max-width: 600px) {
  .dispanzinho-btn {
    width: 100%;
    text-align: left;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 15px;
  }
}

/* ===========================
   INPUT
   =========================== */

#dispanzinho-chat-input {
  display: flex;
  border-top: 1px solid #ddd;
  background: #fff;
}

#dispanzinho-chat-input input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
  font-size: 15px;
}

#dispanzinho-chat-input button {
  background: #0a4b78;
  color: #fff;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-weight: bold;
}

#dispanzinho-chat-input button:hover {
  background: #083a5d;
}

.dispanzinho-btn-suporte {
  background: #25d366;
  color: #fff;
  border: none;
}
.dispanzinho-btn-suporte:hover {
  background: #1ebe5d;
}