.nav {
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;

    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;

    font-family: var(--font-primary);

    height: 60px;

    background-color: rgba(255, 255, 255, 0.856);
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    user-select: none;
    cursor: pointer;
    
    font-weight: bold;
    font-size: 22px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo img {
    height: 40px;
}

.nav__lista {
    display: flex;
    gap: 20px;
}

.nav__item {
    list-style: none;

    font-weight: 500;
    font-size: 18px;
}

.nav__item a {
    text-decoration: none;
    color: #6D6D6D;
}

.nav__item a:hover {
    color: #b6b6b6;
}

.nav svg {
    cursor: pointer;

    display: none;
}


@media screen and (max-width: 768px) {
    .nav {
        background-color: white;
    }

    .nav svg {
        width: 40px;
    
        display: block;
    }

    .nav__lista {
        position: fixed;
        left: 100%;
        top: 0%;

        margin-top: 60px;

        padding: 20px;

        height: calc(100vh - 64px);
        width: 50%;

        background-color: white;

        transition: ease 1s left;

        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav__item {
        font-size: 16px;
    }
}