@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

.step-nav {
  text-align: center;
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  background: #f7f7f7;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 2em;
}

.step-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between; /* Garante que os itens são distribuídos uniformemente */
  position: relative;
  width: 50%;
}

.step-list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  background-color: #296390;
  z-index: 0;
  /* Ajuste o transform e a width de acordo com o espaçamento necessário */
  transform: translateX(-50%) translateY(-50%);
  width: calc(
    100% - 80px
  ); /* Subtraia o tamanho total dos círculos das pontas */
}

.step-item {
  position: relative; /* Necessário para a sobreposição da linha */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1; /* Assegura que os círculos ficarão acima da linha */
}

.step-item a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #296390;
  border: 2px solid #296390;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
}

.step-item.selecionado a {
  background-color: #296390;
  color: #fff;
}

/* NAV */

/*
nav {
  background-color: #0e4db1;
  padding: 5px;
  display: flex;
  justify-content: center;
  height: 12px;
  text-align: center;
  font-size: 15;
  padding: 25px;
  margin-bottom: 0;
  margin-top: 0;
}
nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0 30px;
}
nav a {
  text-decoration: none;
  color: #333;
}
li {
  display: inline;
  margin-left: 5px;
  margin-right: 15px;
  font-variant: small-caps;
  font-weight: bold;
  font-size: 15px;
}
li a {
  color: white;
}
button:hover {
  cursor: pointer;
}
.selecionado {
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 1.4em;
  font-family: Arial, sans-serif;
  font-weight: normal;
}
.naoselecionado {
  color: grey;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: normal;
}
*/


/* Botões Navegação */
.nav-arrow {
  
  position: fixed;
  bottom: 20px;
  background-color: #296390; /* Cor primária azul */
  border-radius: 50%;
  width: 60px; /* Tamanho ajustado para maior visibilidade */
  height: 60px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Garante que o botão fique sobre outros elementos */
}


.fa-chevron-left,
.fa-chevron-right {
  position: fixed;
  bottom: 20px;
  background-color: #296390; /* Cor primária azul */
  border-radius: 50%;
  width: 60px; /* Tamanho ajustado para maior visibilidade */
  height: 60px;
  color: white;

  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Garante que o botão fique sobre outros elementos */
  font-size: 30px;
  display: flex !important;
  position: fixed;
  bottom: 1em;
}

.nav-arrow:hover {
  background-color: #1e5a78; /* Cor de hover */
}

.nav-arrow-left {
  left: 20px;
}

.nav-arrow-right {
  right: 20px;
}
