*{
	box-sizing: border-box;
}
body {
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-weight:500;
	font-size:14px;
	margin:0px;
	padding:0px;
	background-color:#7ecabb;
}

a:link {
	text-decoration: none;
	color:#FFFFFF;
}
a:visited {
	text-decoration: none;
	color:#FFFFFF;
}
a:hover {
	text-decoration: none;
	color:#FFFFFF;
}
a:active {
	text-decoration: none;
	color:#FFFFFF;
}



.flex{
	display: -webkit-box;
  	display: -moz-box;
  	display: -ms-flexbox;
  	display: -webkit-flex;
  	display: flex;
	flex-wrap: wrap;
}
.flex_vertical_center{
	align-items:center;
}
.flex_vertical_bottom{
	align-items:flex-end;
}
.flex_vertical_wrap{
	flex-wrap: wrap;
}
.flex_space_right_end{
	justify-content:flex-end;
}
.flex_center{
	justify-content:center;
}
.flex_space_between{
	justify-content:space-between;
}
.flex_space_around{
	justify-content:space-around;
}

#menu, #menu_mobile{
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 9;
    padding: 10px 0px;
    border-bottom: 1px solid #EEEEEE;
}
#menu .itens_menu>div{
	margin-left:20px;
	cursor:pointer;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
  	-o-transition: color .2s ease;
  	transition: color .2s ease;
}
#menu .itens_menu>div:hover{
	color:#85cebe;
}
#menu_mobile_aberto{
	width: 100vw;
    height: 100vh;
    background-color: #232834;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
    display: none;
}
#menu_mobile_aberto .item {
    border-bottom: 1px solid #7ecabb;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-align: center;
	color:#FFFFFF;
}
#menu_mobile_aberto .fechar {
    position: absolute;
    right: 5vw;
    top: 5vw;
    width: 5vw;
    height: 5vw;
    background-image: url(../img/bt_fechar.png);
    background-size: cover;
}

.bt_branco{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #FFF;
    color: #222735;
    padding: 15px 30px;
    margin: 20px 0px;
    display: inline-block;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    cursor: pointer;
	font-weight:bold;
}
.bt_branco:hover{
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color:#222735;
	color:#FFF;
	padding:15px 30px;
	margin:20px 0px;
	display: inline-block;
}
.bt_azul{
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color:#222735;
	color:#FFF;
	padding:15px 30px;
	margin:20px 0px;
	display: inline-block;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
  	-o-transition: all .5s ease;
  	transition: all .5s ease;
	cursor:pointer;
	font-weight:bold;
}
.bt_azul:hover{
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color:#85cebe;
	color:#222735;
	padding:15px 30px;
	margin:20px 0px;
	display: inline-block;
}
.bt_desabilitado{
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	background-color:#E6E6E6;
	color:#FFF;
	padding:15px 30px;
	margin:20px 0px;
	display: inline-block;
}



/* Small devices (landscape phones, 576px and up) */
@media (min-width: 300px) {
	.container {
		width: 90%;
	}
	/* MENU --------------------------------- */
	#menu_mobile{
		display: block;
	}
	#menu{
		display: none;
	}
	
	/* HOME --------------------------------- */
	#home{
		padding-top: 85px;
	}
	#home .anima_home{
		background-color:#fe7233;
		height:200px;
	}
	#home .anima_home .banner{
		width: 100%;
		height: 200px;
		background-size: cover;
		background-position: center;
	}
	
	/* ÚLTIMOS EVENTOS --------------------------------- */
	#ultimos_eventos{
		padding: 50px 0px;
		background-image: url(../img/fundo_ultimos_eventos.png);
		background-position: bottom center;
	}
	#ultimos_eventos .titulo{
		font-size: 30px;
		font-weight: bold;
		color: #232834;
		margin-bottom: 20px;
	}
	#ultimos_eventos .item{
		width: 90%;
		margin-bottom: 30px;
		color:#232834;
	}
	#ultimos_eventos .item .nome{
		font-size: 16px;
		color: #232834;
		font-weight: 700;
	}
	#ultimos_eventos .item .evento{
		font-size: 14px;
		color: #232834;
	}
	#ultimos_eventos .item img{
		width: 100%;
	}
	
	/* QUEM SOMOS --------------------------------- */
	#quemsomos{
		margin-bottom:50px;
		margin-top:50px;
	}
	#quemsomos .titulo{
		font-size:40px;
		font-weight:bold;
		color:#232834;	
	}
	#quemsomos .texto{
		font-size:18px;
		margin:10px 0px 40px 0px;
	}
	
	
	
	/* COMO FUNCIONA --------------------------------- */
	#comofunciona{
		background-color:#FFFFFF;
		width:100%;
	}
	#comofunciona .container{
		
	}
	#comofunciona .titulo_texto{
		text-align:center;
		font-size:18px;
	}
	#comofunciona .titulo{
		font-size:40px;
		font-weight:bold;
		padding-top:50px;
	}
	#comofunciona .bloco_geral{
		margin-top:20px;
	}
	#comofunciona #box_mostra_etapas {
		width: 100%;
		position: relative;
		overflow: hidden;
		display:block;
	}
	#mostra_etapa2, #mostra_etapa3{
		display:none;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas video{
		width: 100%;
		height:auto;
	}
	#comofunciona .box_mostra_bts_etapas{
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content:center;
		margin-top:20px;
		width:100%;
	}
	#comofunciona .bt_etapas_ativo {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	#comofunciona .bt_etapas {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #E6E6E6;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		margin-right: 20px;
		width: 50px;
		height: 50px;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}
	#comofunciona #indica_etapa3{
		margin-right: 0px;
	}
	#comofunciona #texto_etapa1 {display: block; text-align:center;}
	#comofunciona #texto_etapa2 {display: none; text-align:center;}
	#comofunciona #texto_etapa3 {display: none; text-align:center;}
	#comofunciona #etapas_bt_1{display:block;}
	#comofunciona #etapas_bt_2{display: none;}
	#comofunciona #etapas_bt_3{display: none;}
	#comofunciona .etapas {
		font-size: 20px;
		margin: 20px 0px 0px;
	}
	
	
	/* SURPREENDA --------------------------------- */
	#surpreenda{
		margin:70px 0px;
	}
	#surpreenda .titulo{
		font-size:30px;
		font-weight:bold;
		color:#232834;
	}
	#surpreenda .texto{
		margin:10px 0px 20px 0px;
		font-size:18px;
	}
	#surpreenda .video{
    	width: 90%;
	}
	#surpreenda .video video {
		width: 90%;
    	border: 5px solid #FFF;
	}
	
	
	/* SITE --------------------------------- */
	#site{
		background-color:#FFF;
		width:100%;
		padding:50px 0px;
	}
	#site .titulo{
		font-size:30px;
		font-weight:bold;
		color:#232834;
		padding-top:30px;
	}
	#site .box{
		margin-top:50px; 
		width:100%;
		text-align:left;
	}
	#site .imagem_site{
		width:100%;
	}
	#site .imagem_site img{
		width:100%;
	}
	#site .texto_site{
		width:100%;
		text-align: center;
		font-size:18px;
	}
	#site .itens{
		width:100%;
		margin-bottom:20px;
		font-weight:bold;
		font-size:12px;
		text-align:center;
	}
	#site .icones{
		margin-top:30px;
		width: 100%;
	}
	#site .itens .site_item_icone{
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		width: 80px;
		height: 80px;
		margin-bottom:5px;
		font-size:35px;
	}
	
	
	/* CONTATO --------------------------------- */
	#contato{
		margin:100px 0px;
		font-size:16px;
	}
	#contato .titulo{
		font-size:60px;
		font-weight:bold;
		color:#232834;
	}
	#contato .form{
		margin-top:20px;
		width: 100%;
	}
	#contato .info{
		margin-top:20px;
		width: 100%;
		color: #FFF;
		display: flex;
    	justify-content: center;
	}
	#contato input, textarea{
		width: 80%;
		padding: 15px;
		margin-bottom: 20px;
		border: solid 5px #b8e9de;
		transition: border 0.3s;
	}
	#contato .bt_enviar{
		width: 80%;
		padding: 15px;
		background-color:#232834;
		color:#FFF;
		cursor:pointer;
	}
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.container {
		width: 90%;
	}
	
	/* MENU --------------------------------- */
	#menu_mobile{
		display: block;
	}
	#menu{
		display: none;
	}
	
	/* HOME --------------------------------- */
	#home{
		padding-top: 85px;
	}
	#home .anima_home{
		height:500px;
	}
	#home .anima_home .banner{
		width: 100%;
		height: 500px;
		background-size: cover;
		background-position: center;
	}
	
	/* ÚLTIMOS EVENTOS --------------------------------- */
	#ultimos_eventos{
		padding: 100px 0px;
		background-image: url(../img/fundo_ultimos_eventos.png);
		background-position: bottom center;
	}
	#ultimos_eventos .item{
		width: 33%;
		padding: 20px;
		color:#232834;
	}
	#ultimos_eventos .item .nome{
		font-size: 16px;
		color: #232834;
		font-weight: 700;
	}
	#ultimos_eventos .item .evento{
		font-size: 14px;
		color: #232834;
	}
	#ultimos_eventos .item img{
		width: 100%;
	}
	
	/* SURPREENDA --------------------------------- */
	#surpreenda .video{
    	width: 90%;
	}
	#surpreenda .video video {
		width: 90%;
    	border: 5px solid #FFF;
	}
	
	/* SITE --------------------------------- */
	#site .itens{
		width:20%;
		margin-bottom:20px;
		font-weight:bold;
		font-size:12px;
		text-align:center;
	}
	#site .icones{
		margin-top:30px;
		width: 100%;
	}
	#site .itens .site_item_icone{
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		width: 80px;
		height: 80px;
		margin-bottom:5px;
		font-size:35px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.container {
		width: 900px;
	}
	
	/* MENU --------------------------------- */
	#menu_mobile{
		display: block;
	}
	#menu{
		display: none;
	}
	
	/* HOME --------------------------------- */
	#home{
		padding-top: 100px;
	}
	#home .anima_home{
		background-color:#fe7233;
		height:500px;
	}
	#home .anima_home .banner{
		width: 100%;
		height: 500px;
		background-size: cover;
		background-position: center;
	}
	
	
	/* ÚLTIMOS EVENTOS --------------------------------- */
	#ultimos_eventos{
		padding: 100px 0px;
		background-image: url(../img/fundo_ultimos_eventos.png);
		background-position: bottom center;
	}
	#ultimos_eventos .item{
		width: 33%;
		padding: 20px;
		color:#232834;
	}
	#ultimos_eventos .item img{
		width: 100%;
	}
	
	/* QUEM SOMOS --------------------------------- */
	#quemsomos{
		margin-bottom:50px;
		margin-top:50px;
	}
	#quemsomos .titulo{
		font-size:70px;
		font-weight:bold;
		color:#232834;
		margin-top:100px;
	}
	#quemsomos .texto{
		margin:10px 0px 40px 0px;
	}
	
	
	
	/* COMO FUNCIONA --------------------------------- */
	#comofunciona{
		background-image:url(../img/fundo_comofunciona.png);
		background-position:center;
		width:100%;
		height:827px;
	}
	#comofunciona .container{
		padding:50px 0px 0px 0px;
	}
	#comofunciona .titulo_texto{
		margin:30px 0px 20px 50px;
		text-align:center;
	}
	#comofunciona .titulo{
		font-size:40px;
		font-weight:bold;
		padding-top:50px;
	}
	#comofunciona .bloco_geral{
		margin-top:50px;
	}
	#comofunciona #box_mostra_etapas {
		width: 500px;
		height: 297px;
		position: relative;
		overflow: hidden;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas{
		width: 1500px;
    	position: absolute;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas video{
		width: 500px;
		height: 297px;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas #mostra_etapa1, #mostra_etapa2, #mostra_etapa3{
		width: 500px;
		height: 297px;
	}
	#comofunciona .box_mostra_bts_etapas{
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content:center;
		margin-top:20px;
		margin-left:40px;
		width:30%;
	}
	#comofunciona .bt_etapas_ativo {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	#comofunciona .bt_etapas {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #E6E6E6;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		margin-right: 20px;
		width: 50px;
		height: 50px;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}
	#comofunciona #texto_etapa1 {display: block; text-align:center;}
	#comofunciona #texto_etapa2 {display: none; text-align:center;}
	#comofunciona #texto_etapa3 {display: none; text-align:center;}
	#comofunciona #etapas_bt_1{display:block;}
	#comofunciona #etapas_bt_2{display: none;}
	#comofunciona #etapas_bt_3{display: none;}
	#comofunciona .etapas {
		font-size: 20px;
		margin: 20px 0px 0px;
	}
	
	
	/* SURPREENDA --------------------------------- */
	#surpreenda{
		margin:100px 0px;
	}
	#surpreenda .titulo{
		font-size:50px;
		font-weight:bold;
		color:#232834;
	}
	#surpreenda .texto{
		margin:10px 0px 20px 0px;
	}
	#surpreenda .video{
    	width: 640px;
	}
	#surpreenda .video video {
		width: 640px;
    	border: 5px solid #FFF;
	}
	
	
	/* SITE --------------------------------- */
	#site{
		background-image:url(../img/fundo_site.png);
		background-position:center;
		width:100%;
		height:650px;
	}
	#site .titulo{
		font-size:60px;
		font-weight:bold;
		color:#232834;
		padding-top:160px;
	}
	#site .box{
		margin-top:50px; 
		width:100%;
		text-align:left;
	}
	#site .imagem_site{
		width:50%;
	}
	#site .texto_site{
		width:45%;
	}
	#site .imagem_site img{
		width:90%;
	}
	#site .itens{
		width:80px;
		font-weight:bold;
		font-size:12px;
		text-align:center;
	}
	#site .icones{
		margin-top:30px;
		width: 100%;
	}
	#site .itens .site_item_icone{
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		width: 80px;
		height: 80px;
		margin-bottom:5px;
		font-size:35px;
	}
	
	
	/* CONTATO --------------------------------- */
	#contato{
		margin:100px 0px;
	}
	#contato .titulo{
		font-size:60px;
		font-weight:bold;
		color:#232834;
	}
	#contato .form{
		margin-top:50px;
		width: 70%;
	}
	#contato .info{
		margin-top:50px;
		width: 30%;
		text-align: left;
		display: flex;
	    justify-content:flex-start;
	}
	#contato input, textarea{
		width: 80%;
		padding: 15px;
		margin-bottom: 20px;
		border: solid 5px #b8e9de;
		transition: border 0.3s;
	}
	#contato .bt_enviar{
		width: 80%;
		padding: 15px;
		background-color:#232834;
		color:#FFF;
		cursor:pointer;
	}
}


/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
	
	/* MENU --------------------------------- */
	#menu_mobile{
		display: none;
	}
	#menu{
		display: block;
	}
	
	#menu .container{
		position: relative;
	}
	#menu .redes_sociais{
		position: absolute;
		top: 0px;
		right: 0px;
	}
	
	/* HOME --------------------------------- */
	#home{
		padding-top: 100px;
	}
	#home .anima_home{
		background-color:#fe7233;
		height:500px;
	}
	#home .anima_home .banner{
		width: 100%;
		height: 500px;
		background-size: cover;
		background-position: center;
	}
	
	
	/* QUEM SOMOS --------------------------------- */
	#quemsomos{
		margin-bottom:150px;
		margin-top:150px;
	}
	#quemsomos .titulo{
		font-size:70px;
		font-weight:bold;
		color:#232834;
		margin-top: 0px;
	}
	#quemsomos .texto{
		margin:10px 0px 40px 0px;
	}
	
	
	
	/* COMO FUNCIONA --------------------------------- */
	#comofunciona{
		background-image:url(../img/fundo_comofunciona.png);
		background-position:center;
		width:100%;
		height:827px;
	}
	#comofunciona .container{
		padding:50px 0px 0px 0px;
	}
	#comofunciona .titulo_texto{
		margin:30px 0px 20px 50px;
	}
	#comofunciona .titulo{
		font-size:40px;
		font-weight:bold;
		padding-top:20px;
	}
	#comofunciona .bloco_geral{
		
	}
	#comofunciona .box_mostra_bts_etapas{
		width:30%; 
		margin-left:20px;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		justify-content:center;
		margin-top: 50px;
		
	}
	#comofunciona #box_mostra_etapas {
		width: 640px;
		height: 360px;
		position: relative;
		overflow: hidden;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas{
		width: 1920px;
    	position: absolute;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas video{
		width: 640px;
		height: 360px;
	}
	#comofunciona #box_mostra_etapas #box_completo_mostra_etapas #mostra_etapa1, #mostra_etapa2, #mostra_etapa3{
		width: 640px;
		height: 360px;
		display: table-cell;
	}
	#comofunciona .bt_etapas_ativo {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		width: 50px;
		height: 50px;
		margin-right: 20px;
	}
	#comofunciona .bt_etapas {
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #E6E6E6;
		color: #FFF;
		font-size: 20px;
		font-weight: 700;
		margin-right: 20px;
		width: 50px;
		height: 50px;
		-webkit-transition: all .5s ease;
		-moz-transition: all .5s ease;
		-o-transition: all .5s ease;
		transition: all .5s ease;
	}
	#comofunciona #texto_etapa1 {display: block;}
	#comofunciona #texto_etapa2 {display: none;}
	#comofunciona #texto_etapa3 {display: none;}
	#comofunciona #etapas_bt_1{display:block;}
	#comofunciona #etapas_bt_2{display: none;}
	#comofunciona #etapas_bt_3{display: none;}
	#comofunciona .etapas {
		font-size: 20px;
		margin: 20px 0px 0px;
	}
	
	
	/* SURPREENDA --------------------------------- */
	#surpreenda{
		margin:150px 0px;
	}
	#surpreenda .titulo{
		font-size:50px;
		font-weight:bold;
		color:#232834;
	}
	#surpreenda .texto{
		margin:10px 0px 20px 0px;
	}
	#surpreenda .video{
    	width: 640px;
	}
	#surpreenda .video video {
		width: 640px;
    	border: 5px solid #FFF;
	}
	
	
	/* SITE --------------------------------- */
	#site{
		background-image:url(../img/fundo_site.png);
		background-position:center;
		width:100%;
		height:700px;
	}
	#site .titulo{
		font-size:60px;
		font-weight:bold;
		color:#232834;
		padding-top:80px;
	}
	#site .texto_site{
		text-align: left;
	}
	#site .box{
		margin-top:50px; 
		width:90%;
		text-align:left;
	}
	#site .itens{
		width:100px;
		font-weight:bold;
		font-size:12px;
		text-align:center;
	}
	#site .icones{
		margin-top:30px;
		width: 100%;
	}
	#site .itens .site_item_icone{
		-webkit-border-radius: 60px;
		-moz-border-radius: 60px;
		border-radius: 60px;
		background-color: #85cebe;
		color: #FFF;
		width: 80px;
		height: 80px;
		margin-bottom:5px;
		font-size:35px;
	}
	
	
	/* CONTATO --------------------------------- */
	#contato{
		margin:100px 0px;
	}
	#contato .titulo{
		font-size:60px;
		font-weight:bold;
		color:#232834;
	}
	#contato .form{
		margin-top:50px;
	}
	#contato input, textarea{
		width: 80%;
		padding: 15px;
		margin-bottom: 20px;
		border: solid 5px #b8e9de;
		transition: border 0.3s;
	}
	#contato .bt_enviar{
		width: 80%;
		padding: 15px;
		background-color:#232834;
		color:#FFF;
		cursor:pointer;
	}
}