.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.nav-list {
    width: 100%;
    height: 50px;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #f6f6f6;
    text-decoration: none;
    align-items: center;
    justify-content: space-around;

    color: #10232b;
    font-family: Orbitron, "sans-serif";
    font-weight: 700;
    
}

.nav-list.active {
    display: flex;
}

.menu-button {
    font-size: 24px;
    color: aliceblue;
    font-weight: 900;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-button.active {
    transform: rotate(45deg);
    /* Rotaciona para criar o 'x' */
}

.menu-button:before {
    content: "...";
    /* Texto inicial */
    transition: opacity 0.3s;
}

.menu-button.active:before {
    content: "+";
    opacity: 1;
}

.menu-button:before,
.menu-button.active:before {
    opacity: 1;
}