.header {
  background-color: var(--azul-escuro);
  color: #fff;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-view{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10%;
    max-width: 1200px;
    padding: 5px 0;
    margin: 0 auto;
}

.header-logo {
    width: 30%
}

.header-nav {
    width: 60%;
}

.header-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.header-nav ul li {
}

.header-nav ul li a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
    width: 100%;
    padding: 7px 14px;
    border: 1px solid gray;
}