:root {
  --blue: #2563eb;
  --blue-light: linear-gradient(90deg, #0A2D65, #1A4B8C);
  --bg: #f7f9fc;
}
small.text-muted.custom-color {
    color: #f7f9fc !important; /* só muda esse elemento */
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  margin: 0;
}

/* USER INFO */
.user-info {
  background: var(--blue-light);
  border-radius: 18px;
  padding: 24px 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.user-details h5 {
  margin: 0;
  font-weight: 600;
  color: var(--blue);
  font-size: 24px;
}
.user-details small {
  color: #1e40af;
  font-size: 14px;
}
.user-status span {
  background: var(--blue);
  color: #fff;
  padding: 6px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
}

/* CARDS */
.card-module {
  border: none;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-module:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.card-icon {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
}
.card-header {
  font-weight: 600;
  margin-bottom: 8px;
}
.card-description {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 12px;
}
.card-value {
  font-size: 24px;
  font-weight: 600;
  color: var(--blue);
}

/* CHAT */
.chat-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37,99,235,.35);
  z-index: 1000;
}
.chat-box {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 300px;
  height: 380px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  display: none;
  flex-direction: column;
  z-index: 1000;
}
.chat-box.active {
  display: flex;
}
.chat-header {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 500;
}
.chat-messages {
  flex: 1;
  padding: 14px;
  background: #fafbff;
  overflow-y: auto;
}
.msg {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  max-width: 80%;
}
.msg.bot {
  background: var(--blue-light);
  color: #e5e7eb;
}
.msg.user {
  background: var(--blue);
  color: #fff;
  margin-left: auto;
}
.chat-input {
  padding: 12px;
  border-top: 1px solid #e5e7eb;
}