nav{

    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 64px;
    height: 100px;
    width: 100%;
    background-color: var(--color0);
    border-bottom: 5px solid var(--color2);

}

#logo{

    position: absolute;
    left: 10px;
    top: 0;
    height: 90px;

}

#btn-menu {
    display: none;
    position: absolute;
    right: 25px;
    top: 30px;
    font-size: 2rem;
    color: var(--color2);
}

#whats {

    position: fixed;
    height: 100px;
    z-index: 23;
    right: 16px;
    bottom: 16px;
    filter: brightness(100%);
    transition: all 0.3s ease-in-out;

}

.nav-item{

    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1.1em;

}

#nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 50%;
}

.nav-item:hover{

    color: var(--color2);

}

#cont-menu-lateral{

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 100;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgb(0, 0, 0, 0.5);

}

.tachita{

    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--color2);
    font-size: 2rem;

}

.tachita:hover{

    color: var(--color1);
    cursor: pointer;

}

@media (max-width:768px) {
    #btn-menu {
        display: block;
    }

    nav { 
        overflow: hidden;
        align-items: normal;
    }

    #nav-items {
        position: relative;
        top: 120px;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        height: 150px;
    }
}