/* Widget de ayuda CONTA (flotante) */
#conta-chat-root { position: fixed; z-index: 99990; right: 18px; bottom: 18px; font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; }
#conta-chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: #1e88e5; color: #fff; font-size: 22px; box-shadow: 0 4px 14px rgba(0,0,0,.25);
}
#conta-chat-panel {
  display: none; width: min(380px, 96vw); max-height: 70vh; background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2); overflow: hidden; flex-direction: column; margin-bottom: 10px;
}
#conta-chat-root.open #conta-chat-panel { display: flex; }
#conta-chat-header { background: #1565c0; color: #fff; padding: 10px 12px; font-weight: 600; font-size: 15px; }
#conta-chat-body { padding: 10px 12px; overflow-y: auto; flex: 1; font-size: 14px; color: #222; }
#conta-chat-body .msg { margin-bottom: 10px; line-height: 1.45; }
#conta-chat-body .msg.user { text-align: right; color: #0d47a1; }
#conta-chat-body .msg.bot { background: #f5f7fa; padding: 8px 10px; border-radius: 8px; }
#conta-chat-foot { border-top: 1px solid #e0e0e0; padding: 8px; display: flex; gap: 6px; }
#conta-chat-input { flex: 1; border: 1px solid #ccc; border-radius: 8px; padding: 8px 10px; font-size: 14px; }
#conta-chat-send { background: #1e88e5; color: #fff; border: none; border-radius: 8px; padding: 0 14px; cursor: pointer; }
#conta-chat-actions { padding: 0 12px 10px; display: flex; gap: 8px; flex-wrap: wrap; }
#conta-chat-actions a.conta-chat-action {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #1565c0; text-decoration: none;
  padding: 4px 8px; border: 1px solid #e0e7f0; border-radius: 999px;
  background: #f7fafd;
}
#conta-chat-actions a.conta-chat-action:hover { background: #eef4fb; text-decoration: underline; }
#conta-chat-actions .conta-chat-action-icon { display: inline-flex; line-height: 0; }
#conta-chat-actions .conta-chat-action-icon svg { display: block; }
#conta-chat-disclaimer { font-size: 11px; color: #666; padding: 0 12px 8px; }
