/* =========================================================
   MÓDULO: INDICADOR DE ROLAGEM
   ========================================================= */

.modulo-indicador-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Fica acima de todos os elementos */
}

/* Container do indicador */
.modulo-indicador-scroll__container {
  width: 100%;
  height: 8px;
  background: #004d99;
  overflow: hidden;
}

/* Barra de progresso animada */
.modulo-indicador-scroll__barra {
  width: 0%;
  height: 8px;
  background: #f7a01d;
  transition: width 0.15s linear;
}

/*
--primary-color: #004d99;     
--secondary-color: #f7a01d;
*/
