/* Resumo de GD card */
.lgd-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 20px rgba(15,23,42,0.05);
  color:#0f172a;
  font-family:'Inter', sans-serif;
}
.lgd-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
}
.lgd-card__head h3{
  margin:0;
  font-size:16px;
  font-weight:600;
}
.lgd-badge{
  padding:4px 10px;
  border-radius:999px;
  background:#e0e7ff;
  border:1px solid #c7d2fe;
  color:#3730a3;
  font-size:12px;
  font-weight:600;
}
.lgd-metric{
  margin:10px 0;
}
.lgd-metric__label{
  font-size:12px;
  color:#64748b;
  margin-bottom:2px;
}
.lgd-metric__value{
  font-size:19px;
  font-weight:600;
}
.lgd-split{
  margin-top:12px;
}
.lgd-split__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:8px 0 4px;
  font-size:14px;
}
.lgd-split__label{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:600;
}
.lgd-split__value{
  color:#0f172a;
  font-weight:500;
}
.lgd-bar{
  height:8px;
  background:#e2e8f0;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:8px;
}
.lgd-bar span{
  display:block;
  height:100%;
  background:#2563eb;
  border-radius:999px;
}
.lgd-bar--alt span{
  background:#16a34a;
}
.lgd-help{
  width:18px;
  height:18px;
  border-radius:50%;
  border:1px solid #cbd5f5;
  background:#eef2ff;
  color:#312e81;
  font-weight:600;
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.lgd-note{
  margin-top:12px;
  font-size:12px;
  color:#475569;
}
.lgd-link{
  border:none;
  background:none;
  color:#2563eb;
  cursor:pointer;
  font-size:12px;
  padding:0 0 0 6px;
  text-decoration:underline;
}
.lgd-tooltip{
  position:absolute;
  max-width:260px;
  background:#0f172a;
  color:#e2e8f0;
  padding:8px 12px;
  border-radius:10px;
  box-shadow:0 12px 24px rgba(15,23,42,0.25);
  font-size:12px;
  z-index:9999;
}
.lgd-modal{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:1000;
}
.lgd-modal.open{display:flex;}
.lgd-modal__dialog{
  background:#ffffff;
  border-radius:18px;
  width:min(500px,90vw);
  padding:20px 24px;
  border:1px solid #e2e8f0;
  box-shadow:0 20px 40px rgba(15,23,42,0.15);
  color:#0f172a;
}
.lgd-modal__close{
  float:right;
  border:none;
  background:none;
  color:#64748b;
  font-size:24px;
  cursor:pointer;
}
.lgd-list{
  margin:12px 0 0 16px;
  padding:0;
  font-size:14px;
  color:#334155;
}
.lgd-list li{margin-bottom:8px;}

