.header {
    display: flex;
    align-items: center;
    height: 50px;
    background-color: var(--verde-militar-1);
}

.header .nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}
.menu li {
    list-style: none;
}
.header ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header ul li {
    height: 100%;
    display: flex;
    justify-content: left;
}
.header ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 30px;
    color: white;
    background-color: var(--verde-militar-1);
}
.header ul a:hover {
    background-color: var(--cinza-militar);
}