.container {
  display: flex;
  padding: 0.3rem 0.5rem;
  background-color: #fff;
}
.header {
  position: fixed;
  z-index: 10;
  width: 80%;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 2;
}
.logo {
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem;
  color: #473bf0;
  z-index: inherit;
}
.nav-link:hover {
  color: #473bf0;
  transition: 0.3s;
}
.header-nav {
  align-items: center;
}
.header-nav a {
  font-size: 1.125rem;
  margin-left: 0.3rem;
  text-decoration: none;
  padding: 1rem;
  color: #000500;
  z-index: inherit;
}

/* Ajustes para responsividade dos elementos */
@media all and (max-width: 1150px) {
  header {
    position: inherit;
  }
  .header,
  .header-nav {
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    align-content: center;
    padding: 0;
  }
  .container.header {
    width: 100%;
    top: 0;
    background-color: #fff;
    z-index: 999;
  }
}
