@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

.cabecalho {
    position: fixed;
    background-color: white;
    width: 100%;
    border-bottom: 1px solid rgba(161, 161, 161, 0.788);
    z-index: 5;
}

.list-menu {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px 5px 20px;
}

.content-logo{
    width: 10%;
    height: 100%;
    max-width: 150px;
    min-width: 110px;
}

.link-home {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.img-logo {
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-item {
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.nav-item::after{
    content: "";
    width: 10%;
    padding: 1.3px;
    background-color: #FB4616;
    transition: all .2s ease-in-out;
}
.nav-item:hover::after {
    width: 100%;
}

.link-ul {
    text-decoration: none;
    color: black;
}

.btn-login {
    padding: 0px 15px;
    border-radius: .5rem;
    border: none;
    /* background-color: #7CC4BF; */
    background-color: transparent;
    transition: all .2s ease-in-out;
}

.btn-login:hover {
    background-color: #FF3877;
    transition: all .2s ease-in-out;
}

.btn-login:hover .link-login {
    color: white;
    transition: all .2s ease-in-out;
}

.btn-login:hover .login {
    color:  white;
    transition: all .2s ease-in-out;
}

.sandwich {
    display: none;
    font-size: 2.4rem;
    color: black;
}

.link-login {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    transition: all .2s ease-in-out;
}

.login {
    font-size: 2rem;
    color: #c1c1c1;
}

.li-login {
    display: none;
}

.conteiner-login {
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0px 20px;
}

.btn-mobile {
    display: none;
    padding: 0px 15px;
    border-radius: .5rem;
    border: none;
    /* background-color: #7CC4BF; */
    background-color: transparent;
    transition: all .2s ease-in-out;
}

.icon-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #222;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.5s;
    z-index: 1000;
  }
  
  .icon-toggle:hover {
    background-color: #444;
    transform: rotate(90deg);
  }
  
  body.light .icon-toggle {
    background-color: #ddd;
    color: #000;
  }
  
  body.light .icon-toggle:hover {
    background-color: #bbb;
  }

.img-perfil {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
}

.content-acoes2 {
    position: absolute;
    top: 110px;
    right: 0px;
    background-color: white;
    width: 140px;
    height: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    overflow: hidden;
    border-bottom-left-radius: .5rem;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.301);
    z-index: 10;
    transition: all .2s ease-in;
}
.content-acoes1 {
    background-color: white;
    width: 140px;
    height: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    overflow: hidden;
    z-index: 10;
    transition: all .2s ease-in;
}

.link_login {
    width: 100%;
    color: black;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.link_logout {
    border: none;
    background-color: transparent;
}

.link_login:nth-child(2){
    color: #FF3877;
    border-top: 1px solid black;
}

.open-menu-login {
    height: 100px;
    transition: all .2s ease-in;
}


@media screen and (max-width: 900px) {
    .nav-list {
        display: none;
    }

    .sandwich {
        display: flex;
    }

    .list-menu{
        height: 90px;
    }

    .li-login {
        display: flex;
        align-items: center;
    }

    .btn-login {
        display: flex;
    }
    
    .btn-mobile {
        display: flex;
    }

    .conteiner-login {
        display: none;
    }

    .li-login::after {
        display: none;
    }

    .conteiner-outros {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .open {
        background-color: white;
        display: flex;
        flex-direction: column;
        position: absolute;
        padding: 15px 0px;
        top: 80px;
        left: 0px;
        width: 100vw;
        overflow: hidden;
        border-bottom: 1px solid rgba(161, 161, 161, 0.788);
        -moz-animation-duration: .5s;
        -webkit-animation-duration: .5s;
        animation-duration: .5s;
        -webkit-animation-name: ani-open-menu;
        -moz-animation-name: ani-open-menu;
        animation-name: ani-open-menu;
        -moz-animation-iteration-count: 1;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -moz-animation-direction: alternative;
        -webkit-animation-direction: alternative;
        animation-direction: alternative;
    }

    @keyframes ani-open-menu {
        0% {
            height: 0px;
        }
        100% {
            height: 285px;
        }
    }

    .content-outros{
        padding: 0px 1rem;
    }
}
