@charset "utf-8";

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

.header{
    display: none;
}
/* Logo no topo */

#topLogo{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#topLogo img{
    width: 250px;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: 0.4s ease-in-out;
}

#topLogo img:hover{
    
    width: 270px;
}

/* menu */

nav{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    text-transform: uppercase;
    font-size: 0.7em
}

nav li{
    width: 100%;
    display: inline;
    padding: 19px;
    transition: 0.25s ease-in-out;
}

nav li:hover{
    background: lightgray;
    color: white;
    padding: 22px;
}

nav a{
    color:gray;
}

/* MEDIA TYPE */

@media screen and (max-width: 700px){
    
    nav{
        display: none;
    }
    
    
    .header{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 30px;
        background: white;
        display: flex;
    }
    
    .blockSocialMedia{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    
    .blockSocialMedia img{
        width: 27px;
        padding: 3px;
    }
    
/* Logo no topo */

#topLogo{
    margin: 30px 0 0 0;
    width: 100%;
    height: 75px;
    border-bottom: 2px solid white;
}

#topLogo img{
    width: 150px;
}

#topLogo img:hover{
    
    width: 150px;
}
/* MENU HAMBURGER */
    
.hamburguer{
    height: 100%;
    display: flex;
    float: left;
    z-index: 1;
    
}
    
.hamburguer #checkbox-menu{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.hamburguer label{
    cursor: pointer;
    position: absolute;
    top: 4px;
    left: 4px;;
    display: block;
    height: 20px;
    width: 30px;
    padding: 0 0 0 10px;
}

.hamburguer label span{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 15px;
    transition: 0.25s ease-in-out;
    z-index: 9;
}
    
.hamburguer label span:nth-child(1){
    top:0;
}
    
.hamburguer label span:nth-child(2){
    top:8px;
}
    
.hamburguer label span:nth-child(3){
    top: 16px;
}

#checkbox-menu:checked + label span{
    background: red;
}
    
#checkbox-menu:checked + label span:nth-child(1){
    transform:rotate(-45deg);
    top: 8px;
}

#checkbox-menu:checked + label span:nth-child(2){
    opacity: 0;
}
 
#checkbox-menu:checked + label span:nth-child(3){
    transform:rotate(45deg);
    top: 8px;
}
    
    .hamburguer label:nth-child(3){
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background: #fafafa;
        transition: 0.25s ease-in-out;
        border-bottom: 2px solid red;
        border-top: 2px solid red;
        padding: 0%;
        overflow: hidden;
        z-index: 9;
    }

    .hamburguer .mobileMenu{
        display: flex;
    }
    
    .hamburguer .mobileMenu ul{
        width: 100%;
        margin: 0;
    }
    
    .hamburguer .mobileMenu ul li{
        width: 100%;
        height: 16.6vh;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid lightgray;
    }
    
    .hamburguer .mobileMenu ul li:hover{
        background: lightgray;
        transition: 0.25s ease-in-out;
    }
    
    #checkbox-menu:checked ~ label:nth-child(3){
        transform: translateX(100%);
    }
    
    .hamburguer a{
            color: #41325c;
            font-size: 0.7em;
            letter-spacing: 1px;
        }

    .hamburguer a:active + label:nth-child(3){
        transform: translateX(-100%);
    }

    
/* FIM MENU HAMBURGER */
}