/* LARGURA REAL DOS ELEMENTOS *********************************************************/

*{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
	margin: 0;
	padding: 0;
}



/* SEPARA OS ELEMENTOS FLOATS *********************************************************/

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix{
    *zoom: 1;
}


body{
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	background: #fff;
	}
	
body ul{
    list-style:none;
	}


/* TOP *****************************************************************************/

.top{
    position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 1px 10px #000;
	z-index: 99999;
	}

.logo{
	float: left;
	width: 310px;
	height: 120px;
	background: url('../imagens/logo.png');
	background-size: 100%;
	}
	
.menu{
	float: right;
	width: 60%;
	margin: 20px 0 0 0;
	text-align: right;
	}
	
.pesquisa-input{
	font-family: 'Open Sans', sans-serif;
    width: 250px;
    margin: 0 0 0 40px;
    padding: 5px 10px;
    border: 1px solid #999;
    font-size: 16px;
    font-weight: 300;
    }
	
.pesquisa-bt{
     font-family: 'Open Sans', sans-serif;
	 width: 50px;
     margin: 0;
     padding: 5px 10px;
     border: 1px solid #0b3b78;
     color: #fff;
     font-size: 16px;
     font-weight: 400;
     background: #0b3b78;
	 cursor: pointer;
	 transition: all 150ms linear;
     }

.pesquisa-bt:hover{
     border: 1px solid #be3333;
	 background: #be3333;
     }
	 
.menu-bt{
	float: right;
	margin: 30px 0 0 -5px;
    padding: 5px 25px;
    border-top: 1px solid #fff;
	border-left: 1px solid #0b3b78;
	border-right: 1px solid #0b3b78;
	border-bottom: 1px solid #fff;
    color: #0b3b78;
    font-size: 17px;
	letter-spacing: -0.5px;
    font-weight: 400;
    background: #fff;
	cursor: pointer;
	transition: all 400ms linear;
	}
	
.menu-bt:hover{
	border: 1px solid #0b3b78;
	color: #fff;
	background: #0b3b78;
	}
	
.menu-down{
		position: fixed;
		top: 144px;
		left: 0;
		width: 100%;
		text-align: center;
		background: url(../imagens/fd-menu.png) center center no-repeat #e6e7e8;
		box-shadow: 0 5px 8px #000;
		}

#institucional, #biblioteca, #leiamais, #faleconosco{
	display: none;
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
	}
	
.menu-link{
    font-size: 19px;
    font-weight: 300;
	letter-spacing: -1px;
	line-height: 200%;
	color: #000;
	text-decoration: none;
	}
	
.menu-link:hover{
	color: #e18b1a;
	text-decoration: underline;
	}
	
.menu-redes{
	width: 60px;
	margin-left: 20px;
	opacity: 0.3;
	cursor: pointer;
	transition: all 400ms linear;
	}
	
.menu-redes:hover{
	opacity: 0.95;
	}
	

/*Menu pequeno***************************/	
.menu-bt2{
	float: right;
	display: none;
	width: 50%;
	margin: 20px 0;
	}

.nav{
    list-style: none;
    font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: -1px;
    margin: 0;
    padding: 0;
	}
 
.nav li{
    float: right;
    position: relative;
	}
 
.nav li a:link,
.nav li a:visited{
    display: block;
    padding: 3px 15px;
    text-decoration: none;
    color: #006d33;
	}

.nav li:hover a,
.nav li a:active,
.nav li a:hover{
    display: block;
	}

.submenu{
    margin:0;
    list-style:none;
    display:none;
    width:250px;
    position:absolute;
    top:25px;
    left:-190px;
}
 
.nav li:hover .submenu{
    display:block;
	box-shadow: 0px 5px 8px #000;
}
 
.submenu li a:link,
.submenu li a:visited{
    display: block;
    padding: 10px 20px;
    background: #e6e7e8;
    text-decoration: none;
    width: 250px;
    color: #0b3b78;
	border-top: 1px solid #0b3b78;
}
 
.submenu li:hover a,
.submenu li a:active,
.submenu li a:hover{
    display: block;
    background: #0b3b78;
    color: #fff;
}

.submenu-2{
    margin:0;
    list-style:none;
    display:none;
    width:300px;
    position:absolute;
    left: -180px;
    top: 28px;
	z-index:9999;
}
 
.nav .submenu li:hover .submenu-2{
    display:block;
	box-shadow: 0px 5px 8px #000;
}
 
.submenu-2 li a:link,
.submenu-2 li a:visited{
    display: block;
    padding: 10px 20px;
	border-top: 1px solid #0b3b78;
    background: #e6e7e8;
    text-decoration: none;
    width: 300px;
    color: #0b3b78;
}
 
.submenu-2 li:hover a,
.submenu-2 li a:active,
.submenu-2 li a:hover{
    display: block;
    border-top: 1px solid #e6e7e8;
	background: #0b3b78;
    color: #fff;
}
	
.telefone{
	display: none;
	float: right;
	width: 40%;
	margin: 5px 0 0 0;
	text-align: right;
	font-size: 18px;
	font-weight:700;
	color:#0b3b78;
	}




/* CONTEÚDO *****************************************************************************/

h1{
	margin: 0;
	font-size: 40px;
	font-weight: 100;
	letter-spacing: -2.5px;
	line-height: 140%;
	color: #0b3b78;
	}
	
h2{
	margin: 0 0 2px 0;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 120%;
	}
	
h3{
	margin: 0 0 5px 0;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: -1px;
	line-height: 140%;
	}

h4{
	margin: 0 0 5px 0;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 140%;
	}
	
.container{
	width: 98%;
	max-width: 1200px;
	margin: 0 auto;
	}
	
.containerPG{
	width: 90%;
	margin: 0 5%;
	min-height: 385px;
	}
	
.bt0{
	margin: 0 10px;
	border: 0;
	padding: 3px 10px;
	font-size: 10px;
	color: #000;
	background: #cacaca;
	cursor: pointer;
	}
	
.bt0:hover{
	color: #fff;
	background: #ff9900;
	}

.bt1{
	margin: 10px auto;
	border: 0;
	padding: 5px 20px;
	font-size: 12px;
	color: #000;
	cursor: pointer;
	}
	
.bt1:hover{
	color: #fff;
	background: #ff9900;
	}
	
.paginacao{
	margin: 40px 0 0 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #999;
	}

	

		

	
/* FORMULARIO **************************************************************************/


.formulario{
   float: left;
   margin: 0 15%;
   width: 70%;
   margin-bottom: 30px; 
   }
   
.input1{
   width: 90%;
   margin: 5px 0px;
   padding: 10px;
   border: 1px solid #666;
   font-family:'Open Sans', sans-serif;
   font-size: 18px;
   font-weight: 300;
   font-spacing: -1px;
   }
   
.input2{
   width: 44%;
   margin: 5px 1.5% 5px 0;
   padding: 10px;
   border: 1px solid #666;
   font-family:'Open Sans', sans-serif;
   font-size: 18px;
   font-weight: 300;
   font-spacing: -1px;
   }

.bt-form{
     width: 90%;
     height: 37px;
     border: 0px;
     font-family:'Open Sans', sans-serif;
     font-size: 18px;
	 font-weight: 300;
     color: #fff;
     background: #0b3b78;
     margin: 10px 0px;
     padding: 5px;
	 transition: all 200ms linear;
	 cursor: pointer;
     }

.bt-form:hover{
     color: #fff;
	 background: #cc0000;
     }
   
.robo{
   width: 90%;
   margin: 5px 0px;
   padding: 10px;
   font-size: 16px;
   text-align: center;
   font-spacing: -1px;
   background: #d1d3d4;
   }

.robo2{
   display: none;
   width: 90%;
   margin: 5px 0px;
   padding: 10px;
   font-size: 16px;
   text-align: center;
   font-spacing: -1px;
   border-radius: 5px;
   background: #d1d3d4;
   }

.noRobo{
   width: 50px;
   margin-left: 10px;
   font-size: 16px;
   font-spacing: -1px;
   text-align: center;
   }
   
.mapa{
   float: left;
   width: 30%;
   }

.mapaframe{
   width:100%;
   height:400px;
   }



	
/* BOTTOM *****************************************************************************/

footer{
     float: left;
	 width:100%;
	 margin: 30px 0 0 0;
	 padding: 30px 0;
     background: #eeede8;
	}
	
.empresa{
	float: left;
	width: 45%;
	text-align: left;
	}
	
.empresa img{
	width: 25px;
	margin-left: 20px;
	opacity: 0.4;
	}
	
.empresa2{
	float: left;
	display: none;
	width: 100%;
	text-align: center;
	}
	
.empresa2 img{
	width: 25px;
	margin: 20px 0 0 20px;
	opacity: 0.4;
	}
	
a.empresa-link{
	color:#8e8e8f;
	text-decoration: underline;
	}
	
a.empresa-link:hover{
	color:#fff;
	}
	
.visitas{
	float: left;
	width: 20%;
	padding: 10px;
	text-align: center;
	}
	
.tecnologia{
	float: left;
	width: 35%;
	height: 100px;
	background: url('../imagens/selohtml5.png') no-repeat right;
	opacity: 0.7;	
	}

.copyright a{
     float: left;
     width: 100%;
     font-size: 12px;
     font-weight: 400;
     color:#8e8e8f;
     padding: 10px;
     text-decoration: none;
	 background: #d6d5d1;
	 margin-top: 15px;
     }
	 
.copyright a:hover{
	 color: #fff;
	 background: #bebeba;
     }	
	



/***********************************************************************************/
/* MÍDIA QUERIES */
/***********************************************************************************/


/* 1200px – Desktops, notebooks com monitores widescreen --------------------------*/

@media screen and (max-width: 1200px){

}


/* 960px – Tablets no formato paisagem e alguns monitores mais antigos ------------*/

@media screen and (max-width: 1199px){

h2{
	font-size: 19px;
	}

.logo{
	width: 280px;
	height: 108px;
	}
	
.pesquisa-input{
    margin: 0 0 0 20px;
    }
	
.menu{
	margin: 10px 0 0 0;
	}
	
.menu-bt{
	margin: 20px 0 0 -5px;
    padding: 3px 20px;
    font-size: 16px;
	}

.menu-down{
		top: 128px;
		}
		
#institucional, #biblioteca, #leiamais, #faleconosco{
	padding: 30px 0;
	}
		
.menu-link{
    font-size: 17px;
	}
	
.menu-redes{
	width: 40px;
	margin-left: 20px;
	}

h1{
	font-size: 35px;
	letter-spacing: -1.5px;
	}
	
footer{
	 margin: 20px 0 0 0;
	}
	
.empresa{
	width: 50%;
	}
	
.visitas{
	width: 15%;
	}
	
.formulario{
   margin: 0 7.5%;
   width: 85%;
   margin-bottom: 20px; 
   }

}


/* 768px – Tablets no formato retrato, como o iPad --------------------------------*/

@media screen and (max-width: 959px){

h1{
	font-size: 35px;
	}

h3{
	font-size: 16px;
	font-weight: 400;
	}

.top{
    height: 120px;
	}

.logo{
	width: 250px;
	height: 96px;
	}

.menu{
	margin: 5px;
	}
	
.menu-bt{
	display: none;
	}
	
.menu-bt2{
	display: block;
	}
	
.pesquisa-input{
    width: 200px;
    margin: 0 0 0 20px;
    padding: 3px 8px;
    font-size: 15px;
    font-weight: 400;
    }
	
.pesquisa-bt{
	 width: 40px;
     padding: 3px 6px;
     font-size: 15px;
     font-weight: 400;
     }

footer{
	 margin: 10px 0 0 0;
	}
	 
.empresa{
	width: 100%;
	text-align: center;
	}
	
.visitas{
	width: 50%;
	}
	
.tecnologia{
	width: 50%;
	background: url('../imagens/selohtml5-480.png') center center no-repeat ;
	}
	
.formulario{
   margin: 0 5%;
   width: 90%;
   margin-bottom: 10px; 
   }

}



/* 480px – Smartphones no formato paisagem com tela pequena -----------------------*/

@media screen and (max-width: 767px){

.containerPG{
	width: 95%;
	margin: 0 2.5%;
	}

h1{
	font-size: 30px;
	}

h2{
	font-size: 18px;
	}

h3{
	font-size: 15px;
	}

.top{
    position: absolute;
	height: 110px;
	}

.logo{
	width: 220px;
	height: 84px;
	}
	
.menu{
	display: none;
	}
	
.telefone{
	display: block;
	}
	
.menu-bt2{
	width: 10%;
	}
	
.submenu{
    width:200px;
    left:-140px;
	}
 
.submenu li a:link,
.submenu li a:visited{
    padding: 10px 15px;
    width: 200px;
	}

.submenu-2{
    width:250px;
    left: -180px;
	}
 
.submenu-2 li a:link,
.submenu-2 li a:visited{
    padding: 10px 15px;
    width: 250px;
	}
	
.formulario{
   margin: 0 1%;
   width: 98%;
   }
   
.input1, .input2{
   width: 90%;
   margin: 5px 0px;
   padding: 8px;
   font-size: 16px;
   font-weight: 400;
   }


}


/* 320px – Smartphones no formato retrato com tela pequena ------------------------*/

@media screen and (max-width: 479px){

h1{
	font-size: 25px;
	}

h2{
	font-size: 16px;
	}

h3{
	font-size: 14px;
	}

.top{
    height: 130px;
	}

.logo{
	width: 75%;
	height: 75px;
	margin: 0 12.5%;
	}

.menu-bt2{
	margin: 5px 0;
	}
	
.telefone{
	float: left;
	width: 50%;
	margin-top: 12px;
	text-align: center;
	}
	
.nav{
	font-size: 16px;
	}
	
.submenu{
    width:160px;
	left:-80px;
	}
	
.submenu-2{
    width:180px;
    left: -10px;
	}
	
.empresa{
	display: none;
	}
	
.empresa2{
	display: block;
	}
	
.input1, .input2{
   font-size: 14px;
   }
   
.robo{
   display: none;
   }
   
.robo2{
   display: block;

}
