.top__mobile {
    display: none
}

.top__menu {
    background-color: #fff;
    padding: 20px;
    margin: 0;
    z-index: 2;
    position: relative;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.top__menu_mobile_btn_testar{ display:none; }

.top__menu__container {
    margin: 0;
    padding: 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}

.top__menu__logo {
    margin-right: auto;
}

.top__menu__logo img {
    display: block;
    width: auto;
    max-width: 200px;
}

.top__menu__nav {
    padding: 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-content: center;
    align-items: center;
}

.top__menu__nav__item--inicio:hover {
    color: #ffffff;
    background-color: #2794df;
}

.top__menu__nav__item {
    padding: 15px;
    text-decoration: none;
    color: #000000;
    font-family: 'Ubuntu', sans-serif;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-right: 5px;
    cursor: pointer;
}

.top__menu__nav__item:hover {
    background-color: #2794df;
    color: #ffffff;
}

.top__menu__btn, .top__menu__btn--green {
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px;
    text-decoration: none;
	text-transform:uppercase;
    transition: all 0.3s ease;
    
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.top__menu__btn {
    background-color: #2794df;
    box-shadow: inset 0 -2px 0 0 rgba(0,0,0,.12);
}

.top__menu__btn:hover {
    background-color: #15aefe;
}

.top__menu__btn--green {
    background-color: #0f9d58;
}

.top__menu__btn--green:hover {
    color: #0f9d58;
    background-color: #ffffff;
}

/* menu mobile*/
.top__menu__mobile {
    display: none;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
}

.top__menu__mobile__nav {
    display: none;
}

.top__menu__mobile:hover .top__menu__mobile__nav{
    display: flex;
}

.top__menu__mobile__nav {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 2;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    width: 100%;
    padding: 10px;
    border-top: 2px solid #e5e5e5;
}

.top__menu__mobile i {
    font-size: 28px;
}

.top__menu__mobile__nav__link {
    color: #000;
    text-decoration: none;
    padding: 10px 0;
	width:100%;
	display:block;
	font-weight: bold;
    font-size: 16px;	
}

.titulo {
    background-color: #2794df;
    color: #ffffff;
    padding: 20px 0;
    float: none;
    margin-bottom: 30px;
    font-weight: bold;

    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
}

.titulo h2 {
    font-size: 35px;
}

@media (max-width: 1024px) {

    .top__menu__nav {
        display: none;
    }

    .top__menu__btn {
        display: none;
    }

    .top__menu__mobile__nav .top__menu__btn {
        display: block;
    }

    .top__menu__mobile {
        display: block;
    }


}

@media (max-width: 720px){
	.top__menu{ position:fixed; top:0; padding:10px; padding-right:0px; }
	.top__menu__logo img{max-height: 30px;}
	.top__menu_mobile_btn_testar{box-shadow: inset 0 -2px 0 0 rgb(0 0 0 / 12%); background-color: #2794df; color: #FFF; padding: 10px 10px; border-radius: 6px; font-size: 13px; display: flex; }
	.titulo{margin-top: 68px;}
 
 
    .bottom__menu__logo {
        display: block;
    }
	.top__menu__btn{width:100%;}
}