.nav {
    height: 60px;
    width: 100vw;

    position: fixed;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;

    padding: 0 20px 0 10px;

    z-index: 1000;

    transition: 0.5s ease background-color;
}

.nav__logo {
    height: 40px;
}

.nav__navegacao {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__navegacao a {
    font-size: 16px;
    font-weight: bolder;
    text-decoration: none;
    color: white;
    white-space: nowrap;
}

.nav__navegacao a:hover {
    opacity: 0.6;
}

.nav__menu {
    display: none;
}

.nav__navegacao-redesocial {
    display: none;
}

/* button */
.nav__navegacao-button {
    width: 100%;

    display: flex;
    justify-content: center;
}

.nav__navegacao-button button {
    font-size: 18px;
    font-weight: bold;

    color: white;

    border: none;
    border-bottom: 3px solid #e7805a;
    border-right: 3px solid #e7805a;
    border-radius: 5px;

    background-color: #F29979;

    padding: 10px 20px;

    cursor: pointer;
}

.nav__navegacao-button button:hover {
    border-bottom: 3px solid #f38f6a;
    border-right: 3px solid #f38f6a;

    background-color: #f3a488;
}

@media screen and (max-width: 662px){
    .nav {
        transition: none;
    }

    .nav__logo {
        filter: brightness(30%);
    }

    .nav__menu {
        box-sizing: border-box;
        padding: 5px;
        background-color: white;
        border-radius: 10px;

        display: block;

        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 1000;
    }

    .nav__navegacao {
        position: absolute;
        top: 0;
        right: calc(-1 * (50% + 30px));
        z-index: 999;

        width: 50%;
        height: 100vh;

        padding: 60px 20px 30px 10px;

        background-color: white;

        flex-direction: column;
        align-items: start;

        transition: right 0.5s ease;
    }

    .nav__navegacao a {
        font-size: 16px;
        font-weight: bolder;
        text-decoration: none;
        color: rgb(44, 44, 44);
    }

    .nav__navegacao-redesocial {
        display: block;
        width: 100%;
    }

    .nav__navegacao-redesocial ul {
        list-style: none;
        width: 100%;
        margin-top: 20px;
        border-top: 1px solid rgb(190, 190, 190);
        padding-top: 20px;

        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .nav__navegacao-redesocial ul li a img {
        filter: brightness(30%);
    }
}