html, body{
    width:100%;
    min-height:100vh;
    background-color: #f8f8f8;
 }
 
*{
     box-sizing: border-box;
 }

.desktop{
    display:block;
}

.mobile{
    display: none;
}

@media screen and (max-width: 780px) {
    .desktop{
        display:none;
    }
    
    .mobile{
        display: block;
    }
}

/*AREA MENU*/
#fixed-menu{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    background-color: #fff;
    box-shadow: 0 0 5px #ccc;
    z-index:1009!important;
    padding:5px;
}

.menu{
    border:0px solid #ccc;
    width:100%;
}

.menu-itens{
    padding:15px 0 15px;
    font-size: 16px;
    width:100%;
    text-align: right;
}

.menu-itens li{
    list-style: none;
}

.menu-itens li{
    list-style: none;
    display: inline-block;
    padding: 0 15px 0 15px;
    font-weight: bold;
    cursor: pointer
}

.menu-itens li a{
    color:#333!important;
}
.menu-itens li a:hover{
    text-decoration: none;
}

.largura-maxima{
    max-width:1080px;
    margin:0 auto;
}