header {
    width: 100%;
    height: fit-content;
    z-index: 5;
}

/* !Altera o tamanho do menu */
.flex-menu {
    width: 100%;
    height: 140px;
}

.menu-body {
    position: fixed;
    top: 0;
    z-index: 5;
}

.img-sup {
    background-image: url(../../images/diversos/top-bar.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 15%;
    width: 100%;
    z-index: 5;
}

.menu {
    width: 100%;
    height: 85%;
    padding: 0 5% 0 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--branco);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 11px 18px 0px;
    z-index: 5;
}

/* *Logo e links */
.menu .logo {
    width: 140px;
    height: 100%;
    object-fit: contain;
}

.menu .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu>nav ul {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.menu>nav ul li a {
    font-size: var(--min-fontSize);
    font-weight: 500;
    color: var(--azul);
    position: relative;
    padding-bottom: 2px;
    text-decoration: none;
}

.menu>nav ul li a:hover {
    color: var(--amarelo);
    transition: .3s ease-in-out;
}

.menu>nav ul li a:active {
    color: var(--verde);
}

.menu>nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: .5s ease-in-out;
}

.menu>nav ul li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--azul);
    bottom: 0;
    left: 0;
}

/* *ASIDE */
aside {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    width: 200px;
    height: 100vh;
    background-color: var(--branco);
    box-shadow: -7px 16px 20px 0px #00000045;
    position: absolute;
    top: 100%;
    right: 0px;
    transform: translate(200px);
    transition: 5s;
}

aside.ativo {
    display: flex;
    transform: translate(0px);
    transition: transform 5s ease-in;
}

aside ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 20px;
}

aside ul li a {
    font-size: var(--min-fontSize);
    color: var(--azul);
    font-weight: 500;
}

.menu button.ativo aside {
    display: flex;
    right: 0;
}

/* *MENU-BARS */
.menu button {
    display: none;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.menu button .linha {
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--azul);
    margin: 10px auto;
    border-radius: 5px;
    position: relative;
    transform-origin: center;
    transition: 0.5s;
}

.menu button.ativar .linha:nth-child(1) {
    transform: translateY(15px) rotate(-50deg);
    background-color: var(--vermelho);
}

.menu button.ativar .linha:nth-child(3) {
    transform: translateY(-15px) rotate(50deg);
    background-color: var(--vermelho);
}

.menu button.ativar .linha:nth-child(2) {
    width: 0;
}