body > header {
  position: static;
  background-color: #0f371a;
}

#wrap-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  margin: auto;
  padding-top: 60px;
  gap: 30px;
}

#titulo-colaboradores {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
}

#wrap-voltar{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background-color: #014E68;
  padding: 10px;
  color: white;
  font-weight: 700;
  border-radius: 8px;
}

#wrap-voltar > h2 {
  font-size: 18px;
  font-weight: 700;
}

#wrap-voltar img{
  height: auto;
  width: 25px;
}

#container-colaboradores {
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
  max-width: 769px;
  margin: auto;

}

.linha-de-dados {
  display: flex;
  flex-direction: row;
  gap: 5px;

}
.linha-de-dados > h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  background-color: #0F371A;
  color: white;
  padding: 10px 0px 20px 10px;
  border-radius: 8px 8px 0px 0px;
}

.coluna-nome {
  font-size: 18px;
  display: flex;
  flex-direction: row;
  width: 50%;
  background-color: #339344;
  color: white;
  padding: 10px 0px 10px 10px;
  border-bottom-style: solid;
  border-bottom-color: white;
  font-weight: 700;
}

.coluna-cargo {
  font-size: 18px;
  display: flex;
  flex-direction: row;
  width: 50%;
  background-color: #339344;
  color: white;
  padding: 10px 0px 10px 10px;
  border-bottom-style: solid;
  border-bottom-color: white;

}


