@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" );
*{
    margin: 0;
    padding: 0;
    
    font-family: 'Inter', sans-serif;
}
body{
    height: 100vh;
    background-color: #1C1C1C;
}
nav *{
    color: white;
    text-decoration: none;
}
nav {
    width: 250px;
    height: 100vh;

    position: fixed;
    left: 0px;

    background-color: #1f1f1f;
    box-shadow: 1px 3px 20px 0 #000000d4;

    transition: 800ms;
}

nav .head {    
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;
}

.head img {
    width: 50px;

    margin-right: 5px;
}

.head h3{
    text-align: center;
}

.head h3 span {
    font-size: small;
    font-weight: 400;
}

.menu {
    width: 100%;
}

.menu li {
    padding-top: 10px;
    padding-bottom: 10px;
    
    width: 0px;

    margin-bottom: 5px;

    font-weight: 700;
    font-size: large;

    cursor: pointer;

    transition: 600ms;
}

.menu li a{
    display: block;

    width: 250px;

    padding-left: 20px;
}

.menu li:hover {
    width: 260px;

    background-color: #00FF43;
}

.active {
    width: 260px !important;

    background-color: #00FF43;
}

.collapse{
    position: absolute;
    top: 50%;
    left: 250px;

    width: 60px;
    height: 60px;

    background-color: #00FF43;

    border-radius: 0% 50% 50% 0%;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    transition: 800ms;

}

.collapse span {
    font-variation-settings:
    'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 48;

    font-size: 2.8em;

    transition: 1s;
}

.account {
    position: absolute;
    bottom: 0px;

    display: flex;

    align-items: center;

    padding: 10px;
}

.account .material-symbols-rounded{
    font-variation-settings:
    'FILL' 0,
    'wght' 600,
    'GRAD' 0,
    'opsz' 48;

    font-size: 2.8em;
    margin-right: 10px;
}

/*Fim Navbar */

.container{
    padding-top: 80px;
    padding-left: 280px !important;
    padding-right: 84px;
}

.page-title{
    width: max-content;
}

.page-title h1{
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.page-title div{
    width: 35%;
    height: 9px;
    background: #0CE817;
    border-radius: 20px;
    margin-bottom: 25px
}

.link-disable{
    cursor: pointer;
    text-decoration: none;
    color: black;
}
