.header {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #1b5630;
    border-bottom: 2px solid #fcce01;
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 40px;
    justify-items: end;
}

.nav-menu {
    display: flex;
    grid-gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    font-family: 'Barlow Condensed', sans-serif;
}

.nav-menu a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background: #fcce01;
}


.nav-menu a:hover::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fcce01;
}

.logo a img {
    max-width: 175px;
}

.nav-menu .menu-atual::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #fcce01;
}