.estadisticas-container {
  background: transparent;
  color: black;
  text-align: center;
  padding: 0.1rem;
  font-size: 20px;
  color: #333;
}

.circulos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.grafica {
  width: 120px;
}

.circular-chart {
  width: 100%;
  height: auto;
  
}

.circle-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke: #1d1e33;
  stroke-width: 3.8;
  stroke-linecap: round;
  transition: stroke-dasharray 1s ease-out;
}

.percentage {
  fill: black;
  font-family: sans-serif;
  font-size: 0.5em;
  text-anchor: middle;
  dominant-baseline: middle;
  
  transform-origin: center;
}

.comentarios-resumen {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: white;
  margin-bottom: 3rem;
  background-color: transparent;
}

.card-comentario {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}


.card-comentario:hover {
  transform: translateY(-5px);
}

.card-comentario h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.card-comentario p {
  font-size: 0.95rem;
  color: #666;
}

