.nav {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 10;
    color: #676767;
    background-color: #ededed;
}

.navAberta {
    width: 280px;
    background-color: rgb(203, 203, 203);
}

.nav .logonav {
    width: 100px;
    margin-right: 20px;
}

.navDesk {
    width: 100%;
    height: 100%;
}

.navLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    width: 100%;
    height: 100%;
}

.navLinks li {
    font-size: 14px;
    font-weight: 700;
    max-width: 100px;
    list-style: none;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
}

.Links li:hover {
  border-color: #EA516D;
  color: #EA516D;
}

.login-button {
    background: #EA516D;
    color: white;
    width: 120px;
    height: 38px;
    border-radius: 8px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 20px;
}


.logout-button {
    color: white;
    background: #EA516D;
    width: 70px;
    height: 30px;
    border-radius: 8px;
    text-align: center;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 20px;
}

.logout-button:hover, .login-button:hover {
    background: #c43650;
}

.link-check {
    padding: 10px 0px;
    border-bottom: 2px solid #EA516D;
    border-color: #EA516D;
    color: #EA516D;
}

.navMobile {
    width: 100%;
    height: 80px;
    display: none;
    align-items: center;
    justify-content: start;
    padding: 0 20px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 10;
    background: #F2F6F9;
}

.navDeskMobile {
    margin: 30px 0 0 0;
    display: none;
}

.navDeskMobile li {
    margin: 10px auto;
    width: 148px;
    list-style: none;
    padding: 10px 0px;
    border-bottom: solid 1px rgba(193, 193, 193, 0.581);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.navDeskMobile li:hover {
    border-color: #0782ca;
    color: #0782ca;
}

@media (max-width: 768px) {
    .nav {
      width: 0;
      z-index: 5;
      position: absolute;
      margin-top: 80px;
      height: calc(100vh - 80px);
      z-index: 9;
      overflow: hidden;
      transition: all 0.3s;
      padding:  0 0 20px 0;
      flex-direction: column;
    }

    .nav .logonav {
        display: none;
    }

    .logonav {
        width: 160px;
    }

    .navMobile {
      display: flex;
      justify-content: space-between;
    }
    
    .navDesk {
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    
    .navLinks {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    .navLinks li {
        max-width: 100%;
    }

    .logout-button, .login-button {
        margin: 20px 0;
    }
}

.burger {
    position: relative;
    width: 30px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    display: block;
    z-index: 12;
}

.burger input {
    display: none;
}

.burger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
}

.burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 22px;
    left: 5px;
}
