@charset "utf-8";
/* CSS Document */

body{background-color:#E3E0EC; color:#5D478F;}

/* TOPO */
header{
	/*padding-top:5px;*/
	position:relative;
}
header > .logo{
	padding:25px 20px;
	background-color:#FFF;	
	background: #ffffff;
	background: -moz-linear-gradient(left,  #ffffff 43%, #5d478f 70%);
	background: -webkit-linear-gradient(left,  #ffffff 43%, #5d478f 70%);
	background: linear-gradient(to right,  #ffffff 43%, #5d478f 70%); 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#5d478f',GradientType=1); 
}
header > .mulher{position:absolute;bottom:0;right:0;}

/* ICONE */
.icone{
	width:28px; 
	height:28px;
	display:inline-block;
	background-position:center center;
	background-repeat:no-repeat;
	position:absolute;
	bottom:0;
	left:0;
}
.icone-email{background-image:url(../imagens/email.png);}
.icone-home{background-image:url(../imagens/home.png);bottom:2px;}

/* TEXTO COM ICONE */
.texto-link{
	padding-left:28px; 
	color:#5D478F;
	font-size:16px;
	line-height:28px; 
	display:inline-block;
	position:relative;
	margin:0 20px 5px 20px;
}

/* MENU */
nav{background-image:url(../imagens/bg_menu.jpg);}
nav ul{list-style-type:none;padding:0;margin:0;}
nav > ul > li{float:left;padding:5px 10px; position:relative;}
nav > ul > li > a{color:#FFF;transition:all 0.5s;line-height:30px;display:block;}
nav > ul > li:hover{background-color:#E3E0EC;}
nav > ul > li:hover a{color:#5D478F;text-decoration:none;}
nav > ul > li:hover ul{display:block;}
nav > ul > li > ul{
	padding:5px 10px;
	position:absolute;
	left:-0px; 
	top:40px; 
	display:none;
	z-index:99;
	background-color:#E3E0EC;
}
nav > ul > li > ul > li{padding:2px 0; width:270px;}
nav > ul > li > ul > li > a{display:block;}
nav > ul > li > ul > li > a:hover{color:#848688;}
nav > ul > li:last-child{background-color: #ddd8e7;}
nav > ul > li:last-child a{color: #b82f81;}

/* CONTEUDO PRINCIPAL */
.principal{background-color:#FFF;padding:30px 0 20px 0;}
article.post{ padding:0; position:relative;}
article.post > .linha{
	position:absolute;
	height:40px; 
	width:100%;
	background-color:#E3E0EC;
	top:20px;
	z-index:1;
}
article.post > div{z-index:2; position:relative;}
article.post > div h1{text-transform:uppercase;font-size:24px;margin:28px 0;font-weight:bold;}
article.post > div .figura{margin-left:30px;}
article.post > div .figura > p{font-style:italic;}
article.post > div .conteudo{padding-right:30px;text-align:justify;}

/* RODAPE */
footer{margin-top:20px;}
footer ul{list-style-type:none;padding:0 0 0 30px;}
footer ul > li > a{display:block;color:#5D478F;}
footer > div img{float:right; margin:15px 30px 0 0;}
footer a.texto-link{margin-top:35px;}

/* FORMULARIO */
.formulario input, .formulario textarea, .formulario select{background-color:#E3E0EC;}
.formulario button{
	padding:5px 15px;
	background-color:#5D478F;
	border-radius:5px;
	text-transform:uppercase;
	color:#FFF;
	border:none;
	cursor:pointer;
}
.formulario .espaco{margin-top:230px;}


/* TABELA SOBRE */
.tabela_sobre{width:100%;border:solid 1px #5D478F;}
.tabela_sobre > thead > tr > th{
	border-bottom:solid 1px #5D478F;
	border-right:solid 1px #5D478F;
	text-align:center;
}
.tabela_sobre > tbody > tr > td{
	border-bottom:solid 1px #5D478F;
	border-right:solid 1px #5D478F;
	padding-left:10px;
}
.tabela_sobre > tbody > tr > td:first-child{text-align:center;padding:0;}


/* HOME */
html, body.home{height:100%}
body.home{
	background-image:url(../imagens/home_detalhe.png);
	background-repeat:no-repeat;
	background-position:left top;
	background-size:contain;
	position:relative;
}
body.home > .boas_vindas{
	position:absolute;
	right:15%;	
	top:50%;
	margin-top:-126px;
}
body.home > .boas_vindas > p{font-size:18px;margin-left:175px;margin-top:15px;}
body.home > .boas_vindas > a{font-size:18px;color:#5D478F; display:block;text-align:right; margin-right:40px;}

/* PATROCINIO */
.patrocinio{list-style-type:none;padding:0;}
.patrocinio > li{float:left;margin-right: 20px;}
.patrocinio > li:nth-child(4){margin-right:0;}
.patrocinio > li:last-child{margin:0 0 0 60px;}

/* DISPOSITIVO MOVEL */
@media screen and (max-width: 767px) {
	header > .logo{
		background: -moz-linear-gradient(left,  #ffffff 43%, #ffffff 70%);
		background: -webkit-linear-gradient(left,  #ffffff 43%, #ffffff 70%);
		background: linear-gradient(to right,  #ffffff 43%, #ffffff 70%); 
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1); 
	}
	header > .logo  img{max-width:300px;}
	header > .mulher{display:none;}	
	
	/* CONTEUDO */
	article.post > div .conteudo{padding:0 20px;}
	article.post > .linha{display:none;}
	article.post > div h1{background-color:#E3E0EC;padding:5px 0;}
	article.post > div .figura img{max-width:250px;}
	
	/* RODAPE */
	footer ul{padding:0;}
	footer a.texto-link{margin-top:10px; margin-left:0;}
	footer > div img{float:none;}
	
	/* HOME */
	body.home{ background-image:none; }
	body.home > .boas_vindas{
		margin-top:-200px;
		left:10px;
		right:inherit;
	}
	body.home > .boas_vindas > p{display:block;margin:20px 0 0 0; font-size:16px; text-align:center;}
	body.home > .boas_vindas > a{display:block;text-align:center;margin:0 auto;}
	body.home > .boas_vindas > img{width:300px}
	
	/* PATROCINIO */
	.patrocinio > li{display:block; width:100%;  text-align:center;}
	.patrocinio > li:last-child{margin:0;}
}

.carrosel img{border: #5D478F solid 3px;}


/* EVENTO LISTA */
ul.fotos{padding: 0;margin: 0;}
.evento_lista{display: block;cursor: pointer;margin-bottom: 15px;}
.evento_lista > div.min{float: left;margin-right: 10px;}
.evento_lista > div.texto{float: left;margin-left: 10px;}
.evento_lista > div.texto:after{clear: both;}

/* RESOLUCAO MEDIA 1024 / 768 */
@media screen and (max-width: 1024px) {
	article.post > div h1{padding-left:30px;}
	article.post > div .conteudo{padding:0 20px 0 30px;}
	
	/* PATROCINIO */
	.patrocinio > li:last-child{margin:0 0 0 60px;}
}