/* HEADER */

#header{
    position: fixed;
    top: 0px;
    width: 100vw;
    height: 12vh;
    background-color: rgb(0 0 0 / 100%); 
    z-index: 1000;
    -webkit-box-shadow: 254px 10px 30px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 254px 10px 30px 0px rgba(0,0,0,0.3);
    box-shadow: 254px 10px 30px 0px rgba(0,0,0,0.3);
}
#header-left{
    padding-left: 30px;
}
#header-left img{
    max-width: 135px;
}
#header-right{
    color: rgba(255,255,255,1);
    text-align: right;
    padding-right: 45px;
    font-size: 15px;
}
#header-right a{
    color: rgba(255,255,255,0.7);
    margin-left: 20px;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}
#header-right a:hover{
    color: rgba(255,255,255,1);
}
#header-menu ul{
    display: inline-flex;
}
#header-menu .header-menu-opcao{
    margin-left: 20px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: 0.2s;
    border-bottom: 3px solid transparent;
}
#header-menu .header-menu-opcao:hover{
    padding-bottom: 5px;
    border-color: #0B602B;
    color: #F1F1F1;
}
#header-menu .header-menu-opcao-ativa{
    color: #FFF;
    border-color: green;
    padding-bottom: 5px;
    font-weight: 500;
}
#header-menu .btn-cadastre-se{
    background:#0B602B;
    color: #FFF;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 13px;
}

/* MENU */

#menu{
    position: fixed;
    left: -250px;
    top: 12vh;
    width: 250px;
    height: 100%;
    background-color: #212629; 
    color: #CCC;
    -webkit-box-shadow: 10px 0px 20px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 10px 0px 20px 0px rgba(0,0,0,0.1);
    box-shadow: 10px 0px 20px 0px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 1000;
}
#menu .menu-opcoes{
    width: 100%;
}
#menu .menu-opcoes li{
    position: relative;
    width: 100%;
    padding: 25px 30px 23px;
    background-color: #212629; 
    text-transform: uppercase;
    border-bottom: 2px solid #191F23;
    cursor: pointer;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}
#menu .menu-opcoes li a{
    color: #FFF;
}
.menu-opcao-ativa{
    background-color: green!important;
}
.menu-rodape{
    position: fixed;
    bottom: 30px;
    font-size: 10px;
    text-align: left;
    letter-spacing: 1px;
    font-weight: 600;
    color: #CCC;
    padding-left: 25px;
}
#menu-icone{
    position: absolute;
    right: 15px;
    cursor: pointer;
    height: 32px;
    width: 30px;
    z-index: 1000;
}
#menu-icone-hamburguer{
    cursor: pointer;
    height: 31px;
    z-index: 100;
    align-items: center;
    justify-content: flex-end;
}
#menu-hamburguer{
    display: none;
}
#menu-hamburguer-label{
    margin: 0px;
}
#hamburguer{
    position: relative;
    display: block;
    background: RGBA(194,202,199,1);
    width: 25px;
    height: 3px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}
#hamburguer::before, #hamburguer::after{
    position: absolute;
    display: block;
    background: RGBA(194,202,199,1);
    content: '';
    width: 100%;
    height: 100%;
    transition: 0.3s ease-in-out;
}
#menu-hamburguer:checked ~ #menu-hamburguer-label #hamburguer{
    transform: rotate(45deg);
}
#menu-hamburguer:checked ~ #menu-hamburguer-label #hamburguer:before{
    transform: rotate(90deg);
    top: 0;
}
#menu-hamburguer:checked ~ #menu-hamburguer-label #hamburguer:after{
    transform: rotate(90deg);
    bottom: 0;
}
#hamburguer:before{
    top: -8px;
}
#hamburguer:after{
    bottom: -8px;
}

@media screen and (max-width: 1199px) {    
    #header-right{
        padding-right: 15px;
    }
    #header-left{
        padding-left: 15px;
    }
    #header-left img {
        max-width: 105px;
    }
    #menu{
        -webkit-box-shadow: unset;
        -moz-box-shadow: unset;
        box-shadow: unset;
    }
}



@media screen and (min-width: 1500px) {   
    #header-left img {
        max-width: 180px;
    }
    #header-menu .header-menu-opcao {
        margin-left: 25px;
        font-size: 16px;
    }
    #header-menu .btn-cadastre-se {
        padding: 14px 26px;
        font-size: 16px;
    }
}
