@font-face {
    font-family: 'Ainslie Sans';
    src: url('../fonts/ainslie-sans-normal-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
}

body{
    background-color:#C1CFDD;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.containerPrincipal{
    width: 90%;
    height: 90%;
    background: linear-gradient(180deg, #96A9D2 0%, #7F89AD 15%, #5A647C 35%, #4D576C 100%);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
}

.container-bottom{
    width: 100%;
    display: flex;
    height: 90%;
}

.header{
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
}

.date-time{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 5px;
    color: white;
    font-size: 1rem;
    font-family: 'Ainslie Sans';
    font-weight: 500;
    margin-right: 3%;
}
#botao-opcoes{
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 2%;
}
#botao-opcoes img{
    width: 190%;
    height: auto;
}

.sidebar{
    height: 100%;
    width: 6%;
}
.sidebar ul{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
}
.activated{
    background-color: #F6F4EA;
    border-radius: 15px 0 0 15px;
}
.sidebar ul li:first-child {
    margin-top: 80%; /* Move apenas o primeiro item para baixo */
}
.sidebar ul li:last-child {
    margin-top: auto;
    margin-bottom: 20%;
}
.sidebar ul li{
    list-style: none;
    display: flex;
    width: 80%;
    align-items: center;
    color: white;
    margin-left: 15%;
    padding: 10px;
    padding-right: 128%;
}
.sidebar ul li span{
    margin-left: 50%;
    font-family: 'Ainslie Sans';
    font-weight: 400;
    font-size: 1.5rem;
    display: none;
}
.sidebar li span.visivel {
   display: block;
}
@media (max-width: 1770px){
    .sidebar ul li span{
        font-size: 1rem;
    }
}
#nome-ativado{
    color: #4D576C;
}
.sidebar ul li a{
    text-decoration: none;
    color: white;
}

.icones-menu{
   width: 50%;
   min-width: 25px;
   height: auto;

}

.content-container{
    display: flex;
    background-color: #F6F4EA;
    width: 96%;
    height: 100%;
    border-radius: 20px 0 20px 0;
    justify-content: center;
    flex-direction: column;
    transition: all 0.15s ease-in-out;
    box-shadow: 0px 30px 55px 8px #4D576C4D;

}
.content-container.expandido {
    width: 92%;
    margin-left: 8%;
}
#intro-menu{
    font-family: 'Ainslie Sans';
    font-weight: 400;
    color: #4D576C;
    font-size: 3rem;
    margin-left: 10%;
}

.options-menu{
    display: flex;
    margin-top: 5%;
    margin-left: 3%;
}
.lado-dir{
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    gap: 5%;
}

#quadro-producao{
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    width: 18vw;
    height: 45vh;
    background-color: #8FA3BD;
    border-radius: 7px;
    margin-left: 32%;
    padding: 15px;
    font-family: 'Ainslie Sans';
    font-weight: 400;
    color: #F6F4EA;
    font-size: 1.6rem;
    box-shadow: 0px 15px 40px 4px #00000040;
    transition: background-color 0.3s;

}
#quadro-producao:hover{
    background-color: #8699b1;
}

#estoque-btn{
    display: flex;
    align-items: flex-end;
    font-family: 'Ainslie Sans';
    background-color:#4D576C;
    font-weight: 400;
    color: #F6F4EA;
    font-size: 1.6rem;
    text-decoration: none;
    border-radius: 7px;
    width: 40vw;
    padding: 15px;
    height: 45%;
    box-shadow: 0px 15px 40px 4px #00000040;
    transition: background-color 0.5s;
}

#estoque-btn:hover{
    background-color: #3c4354;
}

#central-notificacao{
    display: flex;
    align-items: flex-end;
    font-family: 'Ainslie Sans';
    font-weight: 400;
    color: #F6F4EA;
    font-size: 1.6rem;
    background-color: #242535;
    text-decoration: none;
    border-radius: 7px;
    width: 40vw;    
    padding: 15px;
    height: 45%;
    box-shadow: 0px 15px 40px 4px #00000040;
    transition: background-color 0.5s;

}
#central-notificacao:hover{
    background-color: #191a25;
}

@media (max-height: 500px) and (min-aspect-ratio: 7/4) {
    #intro-menu{
        font-size: 2rem;
    }
    
    .header{
        min-height: 15%;
    }
    .sidebar ul li{
       padding: 0;
       margin-left: 25%;
    }
    .sidebar ul{
        gap: 25px;
    }
    .icones-menu{
        min-width: 15px;
    }
    .activated{
        padding: 3px !important;
    }
}
