/*RESET Iniciar o CSS com todos as tags HTML sem 
qualquer estilo padrão definido pelo browser */
@charset "UTF-8";


*{
	margin: 0;
	padding: 0;
	font-family: Arial;
	font-size: 100%;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
div{
	 display: block;
}
p{
	padding: 5px;
	text-align: left;
	
}

h1{
	padding: 5px;
	text-align: center;
}
h2{
	text-align: center;
}
h3{
	color: #FFFFFF;
}

img{
	width: 100%;
	/*height: 100%;*/
	border: 0;
	padding: 5px;
}

/*TITULOS*/
.titulo{
	text-transform: uppercase;
	font-size: 1.3em;
	color: #000000;
	margin-top: 10px;
}


/*TITULO PRINCIPAL DESTAQUE*/
.tituloDestaque{
	font-size: 2em;
	text-align: center;
	text-transform: uppercase;
	
	padding-bottom: 15px;
	margin-top: 15px;
	margin-bottom: 20px;
	border-bottom: 3px solid #CCCCCC;
}

/*CORPO*/
.corpo{
	width: 100%;
}
.corpoTopo{
	border-bottom: 4px solid #FFFFFF;
	width: 100%;
}
.corpoTopoCinza{
	border-bottom: 4px solid #A9A9A9;
}
.corpoRodape{
	border-top: 6px solid #A9A9A9;
}
.corpoSlide{
	width: 100%;
	/*min-height: 400px;*/
}
.corpoFundo{
	background-image: url(_imagens/fundo.jpg);
}


/*CONTEÚDO*/
.conteudo{
	max-width: 1280px;
	width: 80%;
	margin: 0 auto;
	padding: 5px;

}
.conteudoSlide{
	/*max-width: 1280px;*/
	width: 100%;

	margin: 0 auto;
	padding: 5px;
}

/*CAIXAS*/
.caixa{
	position: relative;
	float: left;
	/*width: 100%;
	height: 350px;*/
	margin: 0.5%;
	/*margin-top: 10px;*/

}
.caixaSocial{
	float: left;
	width: 100%;
	height: 50px;
}
.caixaRodape{
	width: 49%;
	height: 200px;
}
.caixaContato{
	margin-top: 100px;
	position: relative;
	float: left;
	width: 100%;
	height: 350px;
	margin: 0.5%;
	
}
.caixa3{
	width: 32%;
	/*float: left;
	margin: 0.5%;
	margin-top: 20px;*/
}
.caixa2{
	width: 49%;
	/*height: 550px;*/
}
.caixa6{
	width: 32%;
	height: auto;
}
.caixa1{
	width: 100%;
	height: 50px;
} 
.caixa4{
	width: 32%;
	height: 330px;
}


.caixa li{
	text-align: left;
	margin-left: 20px;
	list-style: none;
	list-style-type: square;
}



.caixaContato li, address{

	line-height: 50px;
    font-style: italic;
    border-bottom: 1px #eee solid;
    list-style: none;
    text-align: left;
}

/*LOGO*/
.logo{
	float: left;
	width: 280px;
	height: 100px;
}
/*CLEARFIX*/
.limpa{
	clear: both;
	overflow: hidden;
	display: block;
}


/*CORES*/
.preto{
	background-color: #000000;
	color: #FFFFFF;
}
.cinza{
	background-color: #A9A9A9;
}
.vermelho{
	background-color: red;
}
.verde{
	background-color: rgba(6, 251, 202, 0.3);
}
.verdeAgua{
	background-color: #008B8B;
}

/* BORDAS*/
.bordas{
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

/*SOMBRAS*/
.sombra{
	box-shadow: 2px 5px 10px #CCCCCC;
	
	-webkit-box-shadow:2px 5px 10px #CCCCCC;
	-moz-box-shadow:2px 5px 10px #CCCCCC;
	border: 1px solid #DDDDDD;
}
.sombraTexto{
	text-shadow: 2px 5px 10px #CCCCCC;
}
/*MENU*/
.menu{
	display: block;
	float: right;
	margin-top: 25px;
	background-color: #008B8B;
}

.menu li{
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
	padding: 10px;
}

.menu li:hover {
	/*background-color: rgb(50, 50, 50);*/
	background-color: #008B8B;
}
.menu a{
	color: rgba(255, 255, 255, 1);

}
.menu a:hover{
	color: #FFFFFF;/*Definir a cor quando passar o mouse*/
	text-decoration: underline;
}

.article ul{
	text-align: right;
}

/* SLIDE*/
* {
  box-sizing: border-box;
}


.contenedor-slider {
  margin: auto;
  width: 85%;
  max-width: 1300px;
  position: relative;
  overflow: hidden;
  /*box-shadow: 0 0 0 10px #fff,
 0 15px 50px;*/
}

.slider {
  display: flex;
  width: 700%;
}

.slider__section {
  width: 100%;
}

.slider__img {
  display: block;
  width: 100%;
  height: 100%;
}

.btn-prev, .btn-next {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 40px;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  font-family: monospace;
  cursor: pointer;
}

.btn-prev:hover, .btn-next:hover {
  background: white;
}

.btn-prev {
  left: 10px;
}

.btn-next {
  right: 10px;
}




/*@keyframes animaSlide{
	25%{
		opacity: 1;

	}
	80%{
		opacity: 0;
	}
}
@-webkit-keyframes animaSlide{
	25%{
		opacity: 1;

	}
	80%{
		opacity: 0;
	}
}*/

/*RODAPE*/
footer p{
	font-size: 0.9em;
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
}
/*footer{
	
	width: 100%;
	bottom: 0px;

}*/

footer span{
	font-size: 1.3em;
	text-align: center;
	color: #FFFFFF;
}

footer img{

	width: 46px;
	height: 46px;
}
footer{
	width: 100%;
	margin-top: 20px;
	bottom: 0;
	/*position: relative;*/
	
}

/*table{
	display:block; 
	width:auto; 
	overflow-x: auto; 
	white-space: nowrap;	
	border-collapse: separate;
	border-spacing: 5px;
	color: #FFFFFF;
	border-spacing: 5px;
}*/

.tabelaRodape{
	display:block; 
	width:auto; 
	overflow-x: auto; 
	white-space: nowrap;	
	border-collapse: separate;
	border-spacing: 5px;
	color: #FFFFFF;
	border-spacing: 5px;
	
}



/*SOCIAL*/
.social li{
	display: inline-block;
	margin: 1%;	
}



@media screen and (max-width: 960px){
	.conteudo{
		width: 95%;
	}
	.corpo{
		width: 95%;
	}
	.menu li{
		padding: 15px;
	}
	.caixas3{
		width: 48%;
		min-height: 400px;
	}
	.caixa4{
		width: 48%;
		min-height: 400px;
	}
	.caixa6{
	width: 32%;
	height: 270px;
	}

}
@media screen and (max-width: 800px){
	.slide{
		height: 300px;
	}
	.conteudo{
		width: 100%;
	}
	
}
@media screen and (max-width: 680px){
	.logo{
		float: none;
	}
	.menu{
		width: 100%;
	}
	.slide{
		height: 280px;
	}
}

@media screen and (max-width: 480px){
	.conteudo{
		width: 100%;
	}
	.caixa3{
		width: 100%;
	}
	.caixa4{
		width: 100%;
	}
	.caixa2{
		width: 100%;
	}
	.caixa6{
	width: 100%;
	}
	
	.logo{
		margin-left: 0;
		width: 80%;
		height: 80%;
	}
	.menu li{
		width: 100%;
		border-bottom: 1px solid #CCCCCC;
	}
	.slide{
		height: 193px;
	}

	}
	form{
		width: 95%;
	}
	.tituloDestaque{
		font-size: 2em;
	}
	.modelo{
		width: 100%;
		height: 60px;
	}
	/*modelo img{
		height: 60%;
	}*/
}

.endereco li, address{
    line-height: 50px;
    font-style: italic;
    border-bottom: 1px #eee solid;
    list-style: none;
    text-align: left;
}
.endereco a{
    color: #444
}
.endereco a:hover{
    color: #ccc
}
.endereco img {
    float: left;
    width: 40px;
    height: 40px;
    margin: 5px
}

input[type="text"],input[type="email"],textarea {
    width: 100%;
    padding: 15px;
    background-color: #e9e9e9;
    border: 1px solid #ddd;
    margin: 1%;
    text-align: left
}

.botao {
    margin: 10px;
    display: inline-block;
    border: 1px solid;
    color: #fff;
    cursor: pointer
}

.botaoGrande {
    padding: 15px 50px;
}
.botaoAzul {
	background-color: #008B8B;
    background-color: #0089fa;*/
    border-color: #0082ec
}

iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    
 }