/* ============================================
   PROGRESS CSS — Barra de Progresso
   Quiz Diagnóstico Libertas Bio
   ============================================ */

.progress-wrap {
  margin-bottom: 40px;
  animation: fadeDown 0.8s 0.1s ease both;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.progress-label {
  font-size: 12px;
  color: var(--cinza);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.progress-steps {
  font-size: 12px;
  color: var(--ouro);
  font-weight: 600;
}

.progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--verde-light), var(--ouro));
  border-radius: 100px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0);
  transform-origin: left;
}
