@font-face {
	font-family: 'Lato-Light';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Lato-Light.woff) format('woff');
}

@font-face {
	font-family: 'Lato-Regular';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Lato-Regular.woff) format('woff');
}

@font-face {
	font-family: 'Lato-Bold';
	font-weight: normal;
	font-style: normal;
	src: url(../fonts/Lato-Bold.woff) format('woff');
}

html, body{
	width: 100%;
	height: 100%;
    position: relative;
}


/*==================================================================================================*/
/*MENU*/
/*==================================================================================================*/


.menu_holder{
	position: fixed;
	top: 0;
	background: #3c4850;
	padding: 20px 0;
	width: 100%;
	z-index: 2;
}

.menu_holder .navbar-header{
    display: inline-block;
}

.menu_holder .navbar-header img{
    width: 180px;
	margin-top: -10px;
}

.menu_holder .menu-toggler{
	position: absolute;
	background: transparent;
	border: 0;
	width: 35px;
    top: 23px;
    right: 11%;
    cursor: pointer;
    
	display: none;
}

.menu_holder .menu-toggler span {
    height: 3px;
    width: 100%;
    background-color: #fff;
    margin-top: 5px;
    display: block;
	border-radius: 2px;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.menu_holder .menu-toggler:hover span {
    background-color: #808b92;
}

.menu_holder .menu{
	background: #3c4850;
    display: inline-block;
	margin: 10px 0 0 50px;
	float: right;
}

.menu_holder .menu-nav{
	list-style: none;
	margin: 0;
}

.menu_holder .menu-nav .dropdown{
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.menu_holder .menu-nav .dropdown a{
	font-family: 'Lato-Regular';
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
}

.menu_holder .menu-nav .dropdown a:hover, 
.menu_holder .menu-nav li.active > a, 
.menu_holder .menu-nav li.active:hover > a {
    color: #0da3e2 !important;
    border: 0!important;
	text-decoration: none !important;
}

.menu_holder .menu-nav .dropdown.menu_ofertas {
    border: 2px solid #259db5;
    padding: 5px 10px;
    border-radius: 5px;
}

.menu_holder .menu-nav .dropdown.menu_ofertas a{
    color: #259db5;
}

.menu_holder .menu-nav .dropdown.menu_instituicional {
    border: 2px solid #b5b5b5;
    padding: 5px 10px;
    border-radius: 5px;
}

.menu_holder .menu-nav .dropdown.menu_instituicional a{
    color: #b5b5b5;
}

@media screen and (min-width: 993px) {
	
	.menu_holder .menu {
		display: inline-block !important;
	}
	
}

@media screen and (max-width: 1200px) {

	.menu_holder .menu-nav .dropdown a{
		font-size: 11px;
	}
}

@media screen and (max-width: 992px) {
	
	.menu_holder .container{
		padding: 0 20px;
		width: 90%;
	}
	
	.menu_holder .menu-toggler{
		display:block;
	}
	
	.menu_holder .menu {
		margin: 40px 0;
		width: 100%;
		
		display: none;
	}
	
	.menu_holder .menu-nav {
		padding: 0;
	}
	
	.menu_holder .menu-nav .dropdown {
		display: block;
		width: 100%;
		margin: 15px 0;
	}
}


/*==================================================================================================*/
/*BANNER*/
/*==================================================================================================*/


.banner{
	position: relative;
	width: 100%;
	margin-top: 72px;
	background-size: cover;
	background-position: center center;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.banner img{
	width: 100%;
}

.banner .conteudo{
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    text-align: center;
	width: 450px;
	margin: auto;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

.banner .conteudo .nome{
	font-family: "Lato-Bold";
	color: #fff;
	font-size: 40px;
	margin-bottom: 25px;
}

.banner .conteudo .descricao{
	font-family: "Lato-Regular";
	color: #fff;
	font-size: 15px;
	margin-bottom: 25px;
}

.banner .conteudo button{
	background: #259db5;
	font-family: "Lato-Regular";
	color: #fff;
	font-size: 15px;
	padding: 8px 25px;
	border: 0;
	border-radius: 5px;
}

@media screen and (max-width: 992px) {
	
	.banner{
		height:290px;
	}
	.banner img{
		display: none;
	}
	.banner .conteudo {
		top: 20%;
	}
}

@media screen and (max-width: 470px) {
	
	.banner .conteudo{
		width: 100%;
		padding: 0 5%;
	}	
	.banner .conteudo .nome {
		font-size: 8vW;
	}
	.banner .conteudo .descricao{
		font-size: 4vW;
	}
	.banner .conteudo button {
		font-size: 12px;
	}
}


/*==================================================================================================*/
/*BLOCOS*/
/*==================================================================================================*/


.bloco{
	position: relative;
	width: 100%;
	margin: 85px 0 0;
}

.bloco.center{
	text-align: center;
}

.bloco h2{
	font-family: "Lato-Bold";
	font-size: 31px;
	color: #3c4850;
}

.bloco p{
	font-family: "Lato-Regular";
	font-size: 15px;
	color: #727272;
}

@media screen and (max-width: 992px) {

	.bloco{
		margin: 40px 0 0;
	}
}


/*==================================================================================================*/
/*O QUE NOS DIFERENCIA*/
/*==================================================================================================*/


.holder_servicos{
	position: relative;
	width: 100%;
	margin-top: 80px;
	overflow: auto;
}

.holder_servicos .dif_serv {
    height: 250px;
}

.holder_servicos .dif_serv img{
	margin-bottom: 15px;
	height: 75px;
}

.holder_servicos .dif_serv p{
	font-family: "Lato-Regular";
	font-size: 15px;
	color: #727272;
}


/*==================================================================================================*/
/*TESTEMUNHOS*/
/*==================================================================================================*/


.holder_testemunhos{
	position: relative;
	width: 100%;
	margin-top: 80px;
	overflow: auto;
}

.holder_testemunhos .slider_testemunhos{
	list-style: none;
	padding: 0 30px;
}

.holder_testemunhos .owl-controls .owl-prev {
	position: absolute;
	top: 250px;
	left: 0;
}

.holder_testemunhos .owl-controls .owl-next {
	position: absolute;
	top: 250px;
	right: 0;
}

.holder_testemunhos .holder_single_test{
	padding: 25px;
}

.holder_testemunhos .testemunho{
	width: 100%;
	position: relative;
	display: inline-block;
	box-shadow: 0px 0px 15px 4px #aeaeae;
	border-radius: 5px;
}

.holder_testemunhos .testemunho .imagem{
    position: relative;
    float: left;
    width: 400px;
    height: 500px;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.holder_testemunhos .testemunho .conteudo{
	padding: 25px;
    text-align: left;
	width: calc(100% - 400px);
    float: left;
}

.holder_testemunhos .testemunho .conteudo p{
	color: #727272;
	font-family: "Lato-Regular";
	font-size: 16px;
}

.holder_testemunhos .testemunho .conteudo .titulo{
	margin-bottom: 15px;
	font-family: "Lato-Bold";
	font-size: 17px;
}

@media screen and (max-width: 1200px) {
	
	.holder_testemunhos .owl-controls img {
		width: 60%;
	}
}

@media screen and (max-width: 470px) {
	
	#goto_testemunhos .container{
		padding: 0 !important;
	}
	
	.holder_testemunhos .testemunho {
		/*width: 150px;*/
	}
	
	.holder_testemunhos .testemunho .imagem {
		height: 180px;
	}
	
	.holder_testemunhos .testemunho .conteudo p{
		font-size: 12px;
	}
}


/*==================================================================================================*/
/*TECNOLOGIAS*/
/*==================================================================================================*/


.holder_tecnologias{
	position: relative;
	width: 100%;
	margin-top: 80px;
	overflow: auto;
}

.holder_tecnologias .slider_tecnologias{
	list-style: none;
	padding: 0 55px;
}

.holder_tecnologias .owl-controls .owl-prev {
	position: absolute;
	top: 10px;
	left: 0;
}

.holder_tecnologias .owl-controls .owl-next {
	position: absolute;
	top: 10px;
	right: 0;
}

.holder_tecnologias .holder_single_tec{
	padding: 5px;
}

.holder_tecnologias .holder_single_tec img{
	width: 100px;
	margin: auto;
}

.holder_tecnologias .testemunho{
	width: 100px;
}

@media screen and (max-width: 1200px) {
	
	.holder_tecnologias .owl-controls img {
		width: 60%;
	}
}

@media screen and (max-width: 991px) {
	
	.holder_testemunhos .testemunho {
		max-width: 400px;
	}
	
	.holder_testemunhos .testemunho .imagem{
		width:100%;
	}
	
	.holder_testemunhos .testemunho .conteudo{
		width: 100%;
	}
	
}

@media screen and (max-width: 700px) {
	
	.holder_testemunhos .testemunho .conteudo .titulo{
		font-size: 15px;
	}
	
	.holder_testemunhos .testemunho .conteudo p{
	    font-size: 14px;
	}
	
	.holder_testemunhos .testemunho .imagem{
		height:300px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 5px;
	}
	
}


/*==================================================================================================*/
/*BENEFICIOS*/
/*==================================================================================================*/


#goto_beneficios{
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center center;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

#goto_beneficios .conteudo{
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    text-align: center;
	width: 100%;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

#goto_beneficios .conteudo h2 {
	color: #fff;
}
#goto_beneficios .conteudo p{
	margin-top: 25px;
	color: #fff;
}

@media screen and (max-width: 992px) {
	
	#goto_beneficios{
		height:330px;
	}
	
	#goto_beneficios .conteudo{
		padding: 0 5%;
		top: 5%;
	}	
}

@media screen and (max-width: 470px) {
	#goto_beneficios .conteudo h2 {
		font-size: 25px;
	}
	#goto_beneficios .conteudo p{
		font-size: 13px;
	}
}


/*==================================================================================================*/
/*CANDIDATURAS*/
/*==================================================================================================*/


.holder_candidaturas{
	position: relative;
	width: 100%;
	margin-top: 80px;
	overflow: auto;
}

.holder_candidaturas .lista {	    
    padding-right: 40px;
}

.holder_candidaturas .lista .cand_single {
    width: 100%;
    height: 100px;
	background: url('/site/imagens/candidatura_icon.png') no-repeat;
	padding-left: 75px;
    border-bottom: 1px solid #d8dadc;	
    position: relative;
    margin: 15px;
}

.holder_candidaturas .lista .cand_single .titulo{
	text-align: left;
	font-family: "Lato-Bold";
	font-size: 15px;
	color: #727272;
	margin-top: 3px;
}

.holder_candidaturas .lista .cand_single .condicao{
	background: #3c4850;
	padding: 9px 23px;
	text-transform: uppercase;
	color: #fff;
	font-family: "Lato-Bold";
    width: 150px;
    position: absolute;
    top: 30px;
    right: 220px;
}

.holder_candidaturas .lista .cand_single .localizacao{
	background: url('/site/imagens/candidatura_local.png') no-repeat;
	padding-left: 23px;
	text-align: left;
	font-family: "Lato-Regular";
    font-size: 14px;
    color: #727272;
    height: 22px;
}

.holder_candidaturas .lista .cand_single button{
    position: absolute;
    right: 10px;
    top: 0px;
    bottom: 0;
    height: 40px;
    border: 2px solid #3c4850;
    padding: 5px 40px;
    border-radius: 10px;
    background: transparent;
    color: #3c4850;
    text-transform: uppercase;
    font-family: "Lato-Bold";
    font-size: 14px;
	margin: auto;
}

.holder_candidaturas .espontanea {	
    background: #3c4850;
    padding: 50px 40px;
	text-align: left;
}

.holder_candidaturas .espontanea h2{	
    font-family: "Lato-Bold";
    font-size: 24px;
    color: #fff;
	margin: 0;
}

.holder_candidaturas .espontanea p{	
    font-family: "Lato-Light";
    font-size: 15px;
    color: #fff;
    margin: 20px 0;
}

.holder_candidaturas .espontanea button{
	height: 40px;
    border: 0;
    padding: 5px 40px;
    border-radius: 10px;
    background: #259db5;
    color: #fff;
    text-transform: uppercase;
    font-family: "Lato-Regular";
    font-size: 14px;
    margin: 10px 0;
}

@media screen and (max-width: 1200px) {
		
	.holder_candidaturas .lista .cand_single button{
		margin: 0;
		right: 0px;
		top: 55px;
	}	
	.holder_candidaturas .lista .cand_single .condicao{
		top: 55px;
		right: 210px;
	}
}
	
@media screen and (max-width: 992px) {	

	.holder_candidaturas .lista .cand_single .condicao {
		top: 0;
		right: 0;
		left: initial;
	}		
	.holder_candidaturas .lista .cand_single button {
		top: 50px;
		left: initial;
		right: 0;
		padding: 5px 16px;
	}
	.holder_candidaturas .espontanea button{
		padding: 5px 16px;		
		font-size: 13px;
	}	
}
	
@media screen and (max-width: 650px) {
	
	.holder_candidaturas .lista .cand_single .condicao{
		top: initial;
		left: 0;
		right: 0;
		bottom: 65px;
		margin: 0 auto;
	}		
	.holder_candidaturas .lista .cand_single button{
		top: initial;
		left: 0;
		right: 0;
		bottom: 10px;
		margin: 0 auto;
	}
	
	.holder_candidaturas .lista .cand_single {
		height: 190px;
	}		
}
	
@media screen and (max-width: 400px) {
	
	.holder_candidaturas .lista .cand_single {
		height: 250px;
	}		
}


/*==================================================================================================*/
/*INSTITUCIONAL*/
/*==================================================================================================*/


#goto_institucional{
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center center;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

#goto_institucional .conteudo{
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    text-align: center;
	width: 100%;
	
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}

#goto_institucional .conteudo h2 {
	color: #fff;
}
#goto_institucional .conteudo p{
	margin-top: 25px;
	color: #fff;
}

@media screen and (max-width: 992px) {
	
	#goto_institucional{
		height:370px;
	}
	
	#goto_institucional .conteudo{
		padding: 0 5%;
		top: 5%;
	}	
}

@media screen and (max-width: 470px) {
	#goto_institucional .conteudo h2 {
		font-size: 25px;
	}
	#goto_institucional .conteudo p{
		font-size: 13px;
	}
}

/*==================================================================================================*/
/*OFERTA DETALHE*/
/*==================================================================================================*/


.desc_oferta p{	
	margin-top: 50px;
	font-size: 15px;
}

.partilha_oferta h2{	
	font-family: "Lato-Regular";
	font-size: 20px;
	color: #3c4850;
}

.partilha_oferta .rede{	
	font-family: "Lato-Light";
	color: #667586;
	margin: 0 5px;
}

.partilha_oferta .rede a:hover{	
	text-decoration: none;
}

.partilha_oferta button,
.holder_form_candidatura_oferta #candidatura_oferta input[type=submit]{
	height: 40px;
    border: 0;
    padding: 5px 40px;
    border-radius: 10px;
    background: #259db5;
    color: #fff;
    text-transform: uppercase;
    font-family: "Lato-Regular";
    font-size: 14px;
    margin: 40px 0;
}

.holder_form_candidatura_oferta{
	margin-top: 30px;
}

.holder_form_candidatura_oferta #candidatura_oferta label{
	font-family: "Lato-Light";
	color: #727272;
	font-size: 16px;
	display: block;
}
.holder_form_candidatura_oferta #candidatura_oferta input[type=radio]{
	display: inline-block;	
	margin-top: 17px;
}
.holder_form_candidatura_oferta #candidatura_oferta label.radio{
    display: inline-block;
    width: 100px;
    margin: 0;
}
.holder_form_candidatura_oferta #candidatura_oferta input[type=text],
.holder_form_candidatura_oferta #candidatura_oferta select,
.holder_form_candidatura_oferta #candidatura_oferta textarea{
	width: 100%;
	border: 2px solid #b5b5b5;
	border-radius: 10px;
	padding: 8px 15px;
	font-family: "Lato-Light";
	color: #3c4850;
	height: initial;
}

.holder_single {
    display: block;
    width: 100%;
    overflow: auto;
}

@media screen and (max-width: 992px) {
	
	.holder_form_candidatura_oferta #candidatura_oferta input[type=file]{
		font-size: 11px;
	}
	
	.holder_form_candidatura_oferta .form-group-submit{
		text-align: center;
	}
	
	#recaptcha_image,
	#recaptcha_image img{
		width: 100% !important;
	}
	
	.partilha_oferta button{
		display: none;
	}
}


.slider_tecnologias.center .owl-stage{
	margin:0 auto;
}

.owl-prev .hidden, 
.owl-next .hidden{
	display:none;
}

/*==================================================================================================*/
/*FOOTER*/
/*==================================================================================================*/

.footer{
	position: relative;
	width: 100%;
	background: #fff;
	padding: 35px 0;
	color: #727272;
	font-family: "Lato-Regular";
	font-size: 13px;
}

@media screen and (max-width: 992px) {
	
	.footer .col-md-6{
		text-align: center !important;
	}
}
