/* charts.css: estilos para los gráficos de la sección Casos de Uso */
.casos-chart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-end;
  margin: 2.5rem 0 2rem 0;
}
.casos-chart-box {
  background: #18192b;
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px #0002;
  padding: 1.5rem 2rem 1rem 2rem;
  width: 100%;
  max-width: 800px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.casos-chart-title {
  color: var(--c-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.casos-chart-canvas {
  width: 100% !important;
  height: 190px !important;
  margin-bottom: 0.5rem;
}

.column2 {
  color: #fff;
  padding: 0 0.5rem;
}
.column2 .section-title {
  color: #3F9DF6 !important;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.column2 p {
  color: #e5e7eb;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.column2 ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  justify-content: flex-start;
  margin: 1rem 0 2rem 0;
  padding: 0;
}
.column2 .li-text {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid #33415544;
  border-radius: 0.7rem;
  padding: 0.7rem 1.2rem;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: none;
  transition: none;
  min-width: 0;
  text-align: center;
  margin: 0;
}
.column2 .li-text:hover {
  background: rgba(255,255,255,0.09);
  color: #fde68a;
}
@media (max-width: 900px) {
  .column2 {
    padding: 0;
  }
}
@media (max-width: 700px) {
  .casos-chart-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .casos-chart-box {
    width: 98vw;
    min-width: 0;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}
