/* ===== Barra de Progresso com Ondinhas ===== */

.progresso-section {
  padding: 40px 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.progresso-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff; /* texto branco */
}

.progresso-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff; /* texto branco */
}

.progresso-barra {
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.342); /* fundo translúcido */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progresso-ondas {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: url('data:image/svg+xml;utf8,<svg width="50" height="40" xmlns="http://www.w3.org/2000/svg"><path fill="%2300bcd4" d="M0 20 Q 12.5 0 25 20 T 50 20 V40 H0 Z"/></svg>') repeat-x;
  background-size: 50px 40px;
  animation: waveMove 4s linear infinite; /* animação contínua */
  transition: width 0.6s ease;
}

@keyframes waveMove {
  from { background-position-x: 0; }
  to { background-position-x: -50px; }
}

.progresso-percentual {
  margin-top: 8px;
  font-weight: 700;
  color: #fff; /* texto branco */
}

/* ===== Responsividade ===== */
@media (max-width: 480px) {
  .progresso-meta {
    font-size: 0.9rem;
  }
  .progresso-section h2 {
    font-size: 1.2rem;
  }
}

/* ===== Imagem do gráfico abaixo da barra ===== */
.progresso-grafico {
  margin-top: 20px; /* Espaço entre a barra e a imagem */
}

.progresso-grafico img {
  display: block; /* Permite centralizar com margin auto */
  margin: 0 auto; /* Centraliza horizontalmente */
  max-width: 600px; /* Aumenta bastante o tamanho máximo */
  width: 100%; /* Responsivo */
  height: auto;
  border-radius: 8px; /* Bordas arredondadas */
  box-shadow: var(--shadow); /* Sombra igual aos outros elementos */
  border: 1px solid var(--border); /* Borda sutil */
}