#topo{
    border-top: solid 20px #32395c;
    background: -moz-linear-gradient(top, #FFF 0%, #F5F5F5 100%);
    background: -webkit-linear-gradient(top, #FFF 0%,#F5F5F5 100%);
    background: linear-gradient(to bottom, #FFF 0%,#F5F5F5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFF', endColorstr='#F5F5F5',GradientType=0 );
}
#topo .midle{
    min-height: 140px;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}
#topo .logo img{
    height: 60px;
}
#topo #menu{
    display: flex;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 100;
}
#topo #menu li{
    margin: 0 5px;
}
#topo #menu a{
    color: #32395c;
    text-transform: uppercase;
    font-size: 1.2rem;
}


#topo .right{
    display: flex;
    align-items: center;
}
#topo .busca{
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 10px;
}
#topo .busca input{
    margin: 0;
    height: 30px;
    border-radius: 30px;
    padding: 0 20px 0 30px;
    border: none;
    box-shadow: 0 0 0 1.5px #32395c;
    width: 80px;
}
#topo .busca img{
    height: 15px;
    position: absolute;
    left: 10px;
}

#topo .menu{ height: 40px; width: 40px; display: none; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; margin-left: 10px; }
#topo .menu i{ width: 30px; height: 4px; background: #32395c; margin: 2px 0; border-radius: 5px; }

@media screen and (max-width: 795px) {
	#topo #menu{
		flex-direction: column;
		position: absolute;
		right: 60px;
		top: 60px;
		width: 200px;
		background: #FFF;
		padding: 10px 0;
		box-shadow: 2px 2px 8px rgba(0,0,0,.2);
		border-top: solid 5px #32395c;
		border-bottom: solid 5px #32395c;
	}
	#topo #menu li{
		width: 100%;
		border-bottom: solid 1px #F5F5F5;
        margin: 0;
        width: 100%;
	}
	#topo #menu li:last-child{
		border: none;
	}
	#topo #menu li a{
		width: 100%;
		height: 40px;
		line-height: 40px;
        padding: 0 15px;
        width: 100%;
	}
	#topo #menu li a:hover{
		color: #cd3e1f;
	}
}