.osGraficos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.ch-grafico-container {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  height: 100%;
}

.ch-grafico-inner {
  width: 100%;
  height: 300px;
  position: relative;
}
.ch-legenda-gradiente{
  max-width: 100%; 
  position: relative; 
  margin: 10px 0px;
}
.ch-legenda-gradiente canvas{
  width: calc(100% - 20px); 
  height: 20px; 
  border-radius: 10px;
  margin:0px 10px;
}
.ch-legenda-gradiente .ch-legenda-numeros{
  top:-3px; 
  position:absolute; 
  display: flex; 
  justify-content: space-between; 
  font-size: 14px; 
  line-height: 14px;
  color: #0C1B33;
  font-weight: bold;
  width: 100%;
}
.ch-legenda-gradiente .ch-legenda-numeros span{
  background-color: #0C1B33;
  padding: 3px;
  border-radius: 50px;
  aspect-ratio: 1/1;
}
.ch-legenda-gradiente .ch-legenda-numeros img{
  width: 20px;
  aspect-ratio: 1/1;
}
