
.header
{
    position: fixed;
    top:0;
    padding-top: 20px;
    padding-left: 200px;
    padding-right: 130px;
    white-space: nowrap !important;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid lightgray;
    box-shadow: 0 0 0px 0 rgba(0, 0, 0, 0.08), 0 8px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 5;
}

.logo a
{
    display: block;
}

.logo a img
{
    display: block;
    margin-top: -10px;
}

.navigation
{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.botao-cabecalho
{
    margin-top: -7px;
    margin-left: 30px;
    width: 200px;
    height: 36px;
    background-image: url("../img/button.png");
    background-repeat: no-repeat;
    background-color: transparent !important;
    color:white;
    border: none;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.menu
{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    transition: 0.5s;
}

.menu li
{
    list-style-type: none;    
}

.menu li a 
{
    color: #428df8;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 8px 25px 15px 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.0em;
    line-height: 1;
    transition: 0.3s;
}

.menu li a:hover 
{
    box-shadow: 0 -2px 0px #428df8 inset,
    500px 0 0 rgba(255,255,255,0.03) inset;
    padding: 8px 25px 15px 25px;
}

.hamburger
{
    position: relative;
    width: 30px;
    height: 4px;
    background:#428df8;
    border-radius: 10px;
    cursor:pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after
{
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #428df8;
    border-radius: 10px;
    transition:0.3s;
}

.hamburger:before
{
    top: -10px;
    width: 20px;
}

.hamburger:after
{
    top: 10px;
    width: 25px;      
}

.toggle-menu
{
    position: absolute;
    width: 30px;
    height: 100%;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger,
.toggle-menu
{
   display: none;
}

.navigation input:checked ~ .hamburger 
{
    background: transparent;
}

.navigation input:checked ~ .hamburger:before
{
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
} 

.navigation input:checked ~ .hamburger:after
{
    top: 0;
    transform: rotate(45deg);
    width: 30px;
} 

.navigation input:checked ~ .menu
{
    right: 0;
    box-shadow: -20px 0 40px rgba(0,0,0,0.3);
}

@media screen and (max-width: 992px) 
{
    .hamburger,
    .toggle-menu
    {
       display: block;
    }
    .header
    {
        padding: 25px 15px 10px;
    }
    .menu
    {
        justify-content: start;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top:0;
        right: -300px;
        background: #2ed2c5;
        width: 300px;
        height: 100%;
        padding-top: 65px;

    }
    .menu li 
    {
        width: 100%;

    }
    .menu li a,
    .menu li a:hover
    {
        color: white;
        padding: 20px;
        font-size: 18px;
        box-shadow: 0 1px 0 rgba(255,255,255,0.1) 
        inset;
    }
    .botao-cabecalho
    {
        margin-top: 50px;
        margin-left: px;
    }
}
