/* MENU */
@font-face {
  font-family: 'BushScriptMT';
  src: url(fontes/BRUSHSCI.woff) format('woff'),
        url(fontes/BRUSHSCI.TTF) format('truetype');
}
@import 'https://fonts.googleapis.com/css?family=Open+Sans';

.header{
    background: lightblue url(images/BarraTopo.png) no-repeat center;
    width: 100%;
    height: 92px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

ul{
    list-style: none;
}

li{
    display: inline-block;
    float: left;
    padding: 10px;
}

a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
}

a:hover{
    text-decoration: underline;
}

#logo{
    margin: 20px;
    float: left;
    width: 300px;
    height: 90px;
    font-family: 'BushScriptMT';
    font-size: 20px;
    font-size: 10vw;
    display: block;
    text-decoration: none;
}

nav{
    float: right;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
}

#menu-icon{
    background: url(images/menu-icon.png);
    display: hidden;
    width: 32px;
    height: 32px;
}

@media only screen and (max-width: 640px){
    header{
        position: absolute;
    }
    
    #menu-icon{
        display: inline-block;
    }
    
    nav ul, nav:active ul{
        display: none;
        position: absolute;
        padding: 20px;
        background: #000000;
        right: 10px;
        top: 65px;
        width: 35%;
    }
    
    nav:hover ul{
        display: block;
    }
    
    nav li{
        text-align: center;
        width: 100%;
        padding: 15px 0;
        margin: 0;
    }
}