/* Documento CSS */
.topo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 140px;
	overflow: hidden;
	background-color: #2d201a;
	transition: all 0.4s ease;
	border-bottom: 1px solid #3b3330;
	z-index: 99;
	box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
}
.topo.mini {
	height: 85px;
	transition: all 0.4s ease;
}
.topo.mini .logo {
	width: 200px;
	height: 100%;
	margin: 12px auto 0;
	/*transition: all 0.4s ease;*/
}
.topo .logo {
	width: 146px;
	height: 100%;
	margin: 20px auto 0;
	/*transition: all 0.4s ease;*/
}
.topo .logo img {
	width: 100%;
	height: 100%;
	transition: all 0.4s ease;
}
.topo .logo .logo1,
.topo .logo .logo2 {
	width: 0;
	height: 0;
	display: block;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.topo .logo .logo1.visivel,
.topo .logo .logo2.visivel {
	width: 100%;
	height: 100%;
	visibility: visible;
	opacity: 1;
	transition: opacity 0.4s ease;
}

.topo .container {
	position: relative;
}
.slideshow {
	background-image: url('../imagens/bg-slideshow.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-bottom: 2px solid #b5b5b5;
}
.slideshow .container {
	max-width: 1280px;
	margin: 0 auto;
}
.slideshow .ei-slider-loading { /* carregando */
	font-size: 14px;
	letter-spacing: 0.04em;
	color: dimgrey;
}
.botao-menu {
	position: absolute;
	top: 25px;
	left: 25px;
	width: 32px;
	height: 26px;
	display: block;
	font-size: 25px;
	text-align: center;
	color: #b2a174;
}
.navegacao {
	position: fixed;
	top: 0;
	left: -255px; /* mais 10px por causa da sombra */
	width: 245px;
	background-color: #e4dfbd;
	box-shadow: 0px 3px 20px rgba(0,0,0, 0.5);
	transition: all 0.4s ease;
	z-index: 999999;
}
.navegacao.visivel {
	left: 0;
	transition: all 0.4s ease;
	z-index: 999999;
}
.navegacao .botao-fechar {
	position: absolute;
	top: 2px;
	right: -30px;
	font-size: 25px;
	width: 28px;
	height: 28px;
	text-align: center;
	color: #d5d5d5;
	opacity: 0;
	transition: all 0.4s ease;
}
.navegacao.visivel .botao-fechar {
	opacity: 1;
	transition: all 1s ease-in-out;
}
.navegacao ul.nav li {
	font-size: 16px;
	border-bottom: 1px solid #c0b7a1;
	width: 88%;
	margin: 0 auto;
}
.navegacao ul.nav li:last-child {
	border-bottom: none;
}
.navegacao ul.nav li a {
	color: #333;
	padding: 23px;
	display: block;
}
.navegacao li a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 17px;
}
.navegacao li:nth-child(1) a:before {
	content: "\f19c";
}
/*.navegacao li:nth-child(2) a:before {
	content: "\f0f6";
}*/
.navegacao li:nth-child(2) a:before {
	content: "\f0b1";
}
.navegacao li:nth-child(3) a:before {
	content: "\f002";
}
.navegacao li:nth-child(4) a:before {
	content: "\f2c3";
}
.corpo {
	position: relative;
	margin: 140px 0 0;
}
.conteudo {
	background-color: #f6f6f6;
}
.conteudo .container {
	padding: 5em 3em;
}
@media screen and (min-width: 1280px) {
  	.navegacao .container,
	.topo .container,
	.conteudo .container,
	.feed .container {
		width: 1280px;
		margin: 0 auto;
	}
	.conteudo .container {
		padding: 6em 3em 8em;
	}
	.topo .logo {
		margin: 20px 0 0 30px;
	}
	.topo.mini .logo {
		margin: 12px 0 0 30px;
	}
	.topo.mini .navegacao {
		top: 0;
	}
	.botao-menu,
	.botao-fechar {
		display: none;
	}	
	.navegacao,
	.navegacao.visivel {
		position: fixed;
		top: 45px;
		left: initial;
		right: 0;
		width: 100%;
		background-color: unset;
		box-shadow: none;
	}
  	.navegacao.mini,
	.navegacao.mini.visivel {
		top: 0;
	}
	.navegacao .container {
		position: relative;
	}
    .navegacao nav {
		position: absolute;
      	right: 0;
    }
	.navegacao ul.nav li {
		font-size: 14px;
		width: auto;
		float: left;
		border-bottom: none;
	}
	.navegacao ul.nav li a {
		color: #ccc;
		letter-spacing: 0.03em;
		transition: all 1s ease;
	}
  	.navegacao.mini ul.nav li a {
        padding: 23px 23px 16px;
    }
	.navegacao ul.nav li.active a,
	.navegacao ul.nav li.active a::before {
		color: #fff;
	}
	.navegacao ul.nav li a:hover {
		color: #fff;
		background-color: rgba(255,255,255, 0.1);
		transition: all 1s ease;
	}
	.navegacao li a::before {
		color: #747474;
		font-size: 20px;
		display: block;
		text-align: center;
		margin: 0 0 10px;
	}
}
/* <------ BANNERS ------> */
.banner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-bottom: 2px solid #b5b5b5;
}
.banner.contato {
	height: 350px;
	background-image: url('../imagens/zion-fachada.jpg');
}
.banner.servicos {
	height: 200px;
	background-image: url('../imagens/bg-servicos.jpg');
	background-position: left;
}
.banner.servicos .container {
	padding: 50px 0 0;
}
@media screen and (min-width: 768px) {
	.banner.contato {
		height: 500px;
		background-image: url('../imagens/zion-fachada-maior.jpg');
	}
}
@media screen and (min-width: 1280px) {
	.banner.servicos {
		height: 230px;
	}
	.banner.servicos .container {
		width: 1280px;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1280px) {
	.mapa {
		width: 80%;
		margin: 0 auto;
	}
}
/* <------ RODAPÉ ------> */
.rodape {
	color: #f9f9f9;
	text-align: center;
}
.rodape .container {
	padding: 3em;
}
.rodape .fa {
	margin-right: 10px;
}
.rodape .container .creditos p {
	font-size: 1.5em;
	line-height: 1.6em;
	margin-bottom: 2em;
	color: #d2d2d2;
}
.rodape .container span {
	font-size: 1.2em;
}
@media screen and (min-width: 1280px) {
	.rodape .container {
		width: 1280px;
		padding: 3em 0;
		margin: 0 auto;
	}
	.rodape .container .creditos p {
		float: left;
		width: 50%;
	}

}
/* <------ HOME ------> */
.home-destaques strong {
	font-weight: 600;
}
.home-destaques h1 {
	font-family: 'Merriweather', serif;
	font-size: 2.4em;
	color: #592f1c;
}
.home-destaques img {
	width: 60%;
	max-width: 170px;
	margin: 20px 0;
}
.home-destaques p {
	font-size: 1.6em;
	line-height: 1.5em;
	padding: 15px 0 30px;
}
@media screen and (min-width: 768px) {
	.home-destaques p {
		padding: 15px;
	}
}
/* <------ SERVIÇOS ------> */
.servicos .su-icon {
	margin: 0;
}
.servicos .su-counter-desc {
	font-family: 'Open Sans Condensed', sans-serif;
}
.servicos h1 {
	font-family: 'Merriweather', serif;
	font-size: 2em;
	line-height: 1.7em;
}
/*.servicos .barra {
	margin: 0 0 8px;
	width: 80% !important;
}*/
/* NOVO - Fotos - Aprimoramento */
.servicos .su-photo-panel {
    max-width: 95% !important;
}
.servicos .su-blockquote {
	border-left: 4px solid #dedede;
}
.servicos .foto-aprimoramento img {
	width: 100%;
}
.servicos .su-blockquote-font-2 .su-blockquote-inner {
	font-family: 'Merriweather', serif !important;
	color: #5f5f5f;
}
.servicos .su-photo-panel-content {
	font-size: 1.1em;
}
.servicos .su-photo-panel-content span {
	color: #cb7047;
	font-weight: bold;
}
/* fix box fotos */
.mfp-wrap {
	z-index: 1000000;
}
/* NOVO */
.servicos .social {
	margin: 0 auto;
}
@media screen and (min-width: 798px) {
	.servicos h1 {
		padding: 0 20px 20px;
	}
}
/* <------ FEEDs ------> */
.feed {
	border-top: 2px solid #f78422;
	background-color: #e6e6e6;
}
.feed .clr { /* fix */
	display: none;
}
.feed div.srfrContainer ul.srfrList li {
	padding: 28px 28px 0 !important;
	margin: 0 !important;
	border-bottom: 0 !important;
}
.feed .container {
	position: relative;
}
/*.feed .srfrPreText {
	text-align: center;
	font-size: 2em;
	color: #f78422;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 1em 0;
}*/
.feed div.srfrContainer ul.srfrList li:last-child {
	padding: 28px !important;
}
.feed .container:before {
	position: absolute;
	top: -29px;
	left: 30px;
	content: '';
	display: table;
	width: 32px;
	height: 32px;
	background: url(../imagens/rss-icone.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100%;
	background-color: transparent;
}
.feed .srfrRow:before { /* linha divisoria */
	content: '';
	display: block;
	margin: 0 auto 20px;
	width: 80%;
	height: 2px;
	background-color: #d7d7d7;
}
.feed .srfrRow:first-child:before {
	display: none;
}
.feed .srfrRow h3 {
	font-family: 'Merriweather', serif;
	font-size: 1.6em;
	line-height: 1.5em;
}
/*.feed .srfrRow h3 a {
	color: #333;
}*/
.feed .srfrRow h3,
.feed .srfrRow span,
.feed .srfrImage {
	display: block;
	margin-bottom: 15px !important;
}
.feed .srfrRow span.srfrReadMore {
	display: inline-block;
	background-color: #f8f8f8;
	border-bottom: 1px solid #8FB0B0;
	border-left: 1px solid #d1d1d1;
	border-right: 1px solid #d1d1d1;
	border-top: 1px solid #fff;
	margin-bottom: 0 !important;
}
.feed .srfrReadMore {
	font-size: 1.4em;
}
.feed .srfrReadMore a {
	color: #007575;
	display: block;
	padding: 10px;
}
.feed .srfrReadMore a:before { /* icone leia mais */
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0f6";
	margin-right: 7px;
}
.feed .stj:before {
	content: '';
	display: table;
	width: 99px;
	height: 50px;
	background: url(../imagens/logo-stj.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100%;
	background-color: transparent;
	margin: 25px auto 0;
}
.feed .stf:before {
	content: '';
	display: table;
	width: 44px;
	height: 50px;
	background: url(../imagens/logo-stf.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100%;
	background-color: transparent;
	margin: 25px auto 0;
}
@media screen and (min-width: 1280px) {
	.feed .container:before {
		top: -18px;
	}
	.feed .stj,
	.feed .stf {
		width: 49%;
	}
	.feed .stj {
		float: left;
	}
	.feed .stf {
		float: right;
	}
}
/* <------ CONSULTA ONLINE ------> */
.login-head .info {
	font-size: 1.5em;
	line-height: 1.5em;
}
.login-head .info strong {
	font-size: 1.3em;
	font-weight: 600;
}
.login {
	margin-top: 60px !important;
}
.login p:first-child {
	font-size: 15px;
}
@media screen and (min-width: 1280px) {
	.login-head {
		width: 75%;
		margin: 0 auto !important;
	}
	 .login {
	 	width: 50%;
		margin: 60px auto !important;
	}
}

/* <------ CONTATO e LOGIN ------> */
.control-group {
	margin-top: 18px;
	margin-bottom: 18px;
}

.control-label {
	width: 100%;
	text-align: left !important;
}
.star {
	color: #ff9000;
}
label, input, button, select, textarea {
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 8px;
	font-family: 'Open Sans', sans-serif;
}
label {
	display: block;
	margin-bottom: 5px;
}
input, select, textarea {
	width: 100%;
	color: #7d5441;
	letter-spacing: 0.04em;
}
input, select {
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #9e9e9e;
	border-left: none;
	background-color: #fff;
	transition: all 0.4s ease;
}
button[type="submit"] {
	background-color: #1d7507;
	color: #fff;
	border: none;
	border-radius: 5px;
	letter-spacing: 0.05em;
	cursor: pointer;
	box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
}
button.entrar[type="submit"]:before,
button.btn[type="submit"]:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 10px;
}
button.entrar[type="submit"]:before {
	content: "\f090";
}
button.btn[type="submit"]:before{
	content: "\f1d9";
}
textarea {
	background-color: #fff;
	border: 1px solid #9e9e9e;
}
.mapa {
	position: relative;
	padding-bottom: 77.77%;
	height: 0;
	overflow: hidden;
}
.mapa iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100% !important;
	width: 100% !important;
}
.contato p {
	font-size: 1.5em;
	line-height: 1.5em;
}
.su-divider span i {
	display: initial !important;
}
.alert {
	padding: 20px;
  	margin: 0 auto 30px;
	background-color: white;
  	font-size: 2em;
	line-height: 1.5em;
  	color: #2a9b5e;
	text-align: center;
	border-radius: 15px;
}
.alert .close,
.alert .alert-heading {
	display: none;
}
@media screen and (min-width: 1280px) {
    .alert {
		width: 50%;
    }
}