/**
 * RH Service by @igorfsouzaa
 * **/

@import url('css/reset.css');
@import url('css/grid.css');
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700);

body {
	width: 100%;
	height: 100%;
	color: #373435;
	overflow-x: hidden;
	font-family: 'Open Sans', sans-serif;
}

a {
	color: #373435;
	transition: .5s;
	text-decoration: none;
}

p {
	font-size: 14px;
}

img {
	width: 100%;
	height: auto;
}

main {
	width: 100%;
	height: 100%;
}

main:after {
	content: "";
	display: table;
	clear: both;
}

.wrap {
	width: 100%;
	min-width: 260px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 10px;
}

.wrap:after {
	content: "";
	display: table;
	clear: both
}

/** Header **/

.header {
	width: 100%;
	transition: .5s;
	padding: 35px 0 30px;
	background-color: #FFF;
}

.scroll-header {
	position: fixed;
	top: 0;
	z-index: 1000;
	opacity: .95;
	padding: 10px 0 5px;
	box-shadow: 0 0 10px rgba(0,0,0,.2);
}

.scroll-padding {
	padding-top: 122px;
}

.logo {
	width: 30%;
	float: left;
	padding-left: 10px;
}

logo a {
	width: 100%;
	height: 100%;
	display: block;
}

.logo img {
	max-width: 256px;
}

.top-fone {
	width: 20%;
	padding: 10px;
	float: left;
}

.top-fone p {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -1px;
	text-align: center;
}

.top-fone p span {
	font-size: 15px;
	display: inline-block;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

/** Nav **/

.navigation {
	width: 70%;
	float: left;
	padding: 15px 0;
	transition: height 1s;
	margin-top: 5px;
}

.menu li {
	cursor: pointer;
	text-align: center;
}

.menu li a {
	color: #666;
	font-size: 20px;
	display: block;
}

.menu li:hover a {
	color: #B6DC34;
}

.btn-selected {
	padding: 5px 0;
	margin-top: -5px;
	border-radius: 4px;
	background-color: #B6DC34;
}

.btn-selected a {
	color: #373435 !important;
	font-weight: 700;
}

.btn-selected:hover {
	background-color: #373435;
}

.btn-selected:hover a {
	color: #B6DC34 !important;
}


.navigation-cat {
	width: 100%;
	float: left;
	padding: 15px 0;
	transition: height 1s;
	margin-top: 5px;
	display: table;
}

.navigation-cat .menu li {
	cursor: pointer;
	text-align: center;
	height: 45px;
}

.navigation-cat .menu li a {
	color: #666;
	font-size: 11px;
	display: block;
	text-transform: uppercase;
}

.navigation-cat .menu li:hover a {
	color: #B6DC34;
}


.hamburger {
	width: 60px;
	padding: 10px;
	height: auto;
	float: right;
	display: none;
	cursor: pointer;
}

.hamburger span {
	width: 100%;
	height: 5px;
	margin: 3px 0;
	display: block;
	background-color: #373435;
}

.nav-active {
	width: 100% !important;
	height: 283px !important;
	opacity: 1 !important;
}

.nav-active .menu li {
	width: 100%;
	padding: 10px 0;
}

/** Busca **/

/*.busca {
				width: 7%;
				float: left;
				padding: 17px 0;
				position: relative;
}

.btn-busca {
				width: 15px;
				height: 15px;
				display: block;
				margin: 0 auto;
				cursor: pointer;
				background: url('imagens/buscar.png') no-repeat;
}

.box-busca {
				width: 300px;
				position: absolute;
				top: 110%;
				right: 0;
				padding: 15px;
				border: 1px solid #E1E1E1;
				border-radius: 2px;
				background-color: #FFF;
				box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.2);
				opacity: 0;
				display: none;
				transition: 1s;
}

.box-busca:before {
				content: "";
				width: 16px;
				height: 16px;
				position: absolute;
				top: -6%;
				right: 17px;
				z-index: -1;
				transform: rotate(45deg);
				background-color: #FFF;
				border: 1px solid #E1E1E1;
}

.box-busca:after {
				content: "";
				width: 12px;
				height: 12px;
				position: absolute;
				top: -6%;
				right: 19px;
				transform: rotate(45deg);
				background-color: #FFF;
}

.box-busca input {
				width: 85%;
				float: left;
				padding: 10px 5px;
				border: 1px solid #E1E1E1;
				border-radius: 3px 0 0 3px;
}

.box-busca button {
				padding: 10px 15px;
				float: left;
				cursor: pointer;
				transition: .3s;
				background: #B6DC34 url('imagens/buscar2.png') no-repeat center;
}

.box-busca button:hover {
				background-color: #373435;
}

.show-box {
				opacity: 1 !important;
				display: block;
}*/

/** Footer **/

.footer {
	width: 100%;
	padding: 30px 0;
	background-color: #212121;
}

.footer-logo {
	width: 20%;
	float: left;
	margin-right: 30px;
	padding-left: 10px;
}

.footer-infos {
	width: 25%;
	float: left;
	color: #FFF;
	padding: 10px;
	font-size: 14px;
}

.footer-social {
	width: 20%;
	float: left;
	padding: 10px;
}

.footer-social img {
	max-width: 45px;
	transition: .5s;
}

.footer-social img:hover {
	opacity: .7;
}

/** Main Banner **/

.main-banner {
	width: 100%;
	margin-bottom: -5px;
	position: relative;
}

#prev, #next {
	width: 100px;
	height: 100px;
	display: block;
	position: absolute;
	top: 20%;
	z-index: 200;
	text-align: center;
	color: #FFF;
	font-size: 100px;
}

#prev {
	left: 0;
}

#next {
	right: 0;
}

/** Home **/

.home-features {
	width: 100%;
	padding: 50px 0 25px;
	background-color: #D5D2BC;
}

.home-services li {
	text-align: center;
}
.home-services li > div {
	min-height: 241px;
	width: 85%;
	margin: 0 auto;
	padding: 25px;
	border-radius: 5px;
	background-color: #FFF;
}

.home-services span {
	width: 60px;
	height: 60px;
	display: block;
	margin: -60px auto 0;
}

.home-services .icon-red {
	background: url('imagens/icon-red.png') no-repeat;
}

.home-services .icon-blue {
	background: url('imagens/icon-blue.png') no-repeat;
}

.home-services .icon-orange {
	background: url('imagens/icon-orange.png') no-repeat;
}

.home-services h2 {
	font-size: 25px;
	font-weight: 700;
	letter-spacing: -1px;
	text-transform: uppercase;
	padding: 10px 0;
}

.home-services p {
	margin-bottom: 20px;
}

.btn-saibamais {
	padding: 5px 10px;
	font-size: 14px;
	font-weight: 900;
	border-radius: 5px;
}

.btn-saibamais.red {
	background-color: #BD9BA5;
}

.btn-saibamais.blue {
	background-color: #87BBD1;
}

.btn-saibamais.green {
	background-color: #B6DC34;
}

.btn-saibamais:hover {
	color: #FFF;
	background-color: #373435;
}

.bg-cinza {
	width: 100%;
	height: auto;
	padding: 15px 0;
	background: #E6E6E6 url('imagens/bg-cinza.jpg') no-repeat left bottom;
	background-size: cover;
}

.box-content {
	width: 85%;
	margin: 0 auto;
}

.box-content h3 {
	font-size: 19px;
	font-weight: 500;
	padding: 0 0 10px 0;
}

.box-social li {
	max-width: 239px;
	margin-top: 33px;
	margin-right: 5px;
}

.box-social img {
	transition: .5s;
}

.box-social img:hover {
	opacity: .7;
}

.home-newsletter {
	padding: 12px 0;
}

.home-newsletter legend {
	margin-bottom: 10px;
}

.home-newsletter input {
	width: 100%;
	padding: 10px;
	margin-bottom: 2px;
	border-radius: 5px;
	border: 1px solid #E1E1E1;
	box-shadow: inset 3px 3px 7px 0 rgba(0, 0, 0, 0.2);
}

.home-newsletter button {
	float: right;
	padding: 5px 10px;
	color: #373435;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
	border-radius: 4px;
	background-color: #B6DC34;
	transition: .5s;
}

.home-newsletter button:hover {
	color: #B6DC34;
	background: #373435;
}

/** Clientes **/

.home-clientes {
	width: 100%;
	padding: 15px 0;
	background-color: #B6DC34;
}

.home-clientes h4 {
	width: 30%;
	float: left;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	padding-left: 10px;
}

.home-clientes .ver-todos {
	font-size: 17px;
	font-weight: normal;
}

.home-clientes .line {
	width: 68%;
	display: block;
	float: right;
	border-bottom: 1px solid #FFF;
	margin-right: 1%;
}

.list-clientes {
	clear: both;
}

.list-clientes img {
	width: 90%;
	display: block;
	margin: 0 auto;
}

/* Page Content */

.page-content {
	width: 100%;
	height: auto;
	padding: 40px 0;
	background: url('imagens/bg-pages.jpg') no-repeat right bottom;
}

.page-content h1 {
	font-size: 25px;
	letter-spacing: -2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.page-content h2 {
	/*font-size: 43px;*/
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -3px;
	text-transform: uppercase;
}

.page-content h3 {
	font-size: 35px;
	font-weight: 700;
	letter-spacing: -3px;
	margin: 40px 0 20px;
}

.page-content h4 {
	font-size: 30px;
	font-weight: 700;
}

.page-content h4.center-upper {
	font-size: 22px;
	text-align: center;
	letter-spacing: -2px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.page-content p {
	/*font-size: 20px;*/
	font-size: 17px;
}

.bloco-empresa {
	padding: 20px;
}

.bloco-empresa h3 {
	margin: 10px 0;
	text-align: center;
	border-radius: 30px;
	background-color: #B6DC34;
}

.bloco-empresa h4 {
	font-size: 18px;
	margin-top: 20px;
}

.service-list hr {
	width: 80%;
	height: 1px;
	margin: 0 auto;
	clear: both;
	background-color: #CCC;
}

.service-item {
	padding: 30px 0;
}

.service-icon img {
	max-width: 120px;
}

.service-content {
	padding-left: 15px; 
}

.bloco-pages {
	padding-top: 20px;
}

.bloco-pages p {
	text-align: justify;
}

.bloco-pages.middle {
	padding: 40px 20px 0;
}

.bloco-pages .icon {
	max-width: 350px;
	display: block;
	margin: 10px auto;
}

.bloco-pages .btn-galeria {
	max-width: 300px;
	display: block;
	margin: 10px auto;
}

address {
	padding: 20px 10px;
	font-style: normal;
}

.map iframe {
	width: 100%;
	min-height: 200px;
	border: none;
}

/** Galeria de Fotos **/

.galeria img {
	transition: .5s;
}

.galeria a {
	max-height: 163px;
	margin: 10px;
	display: block;
}

.galeria a:hover img {
	opacity: .2;
}

.galeria.fotos a:hover {
	background: #D21D20 url('imagens/lupa.png') no-repeat center center;
}
.galeria.portfolio a:hover {
	background: #F8D739 url('imagens/lupa.png') no-repeat center center;
}
.galeria.posts a:hover {
	background: #A1D134 url('imagens/lupa.png') no-repeat center center;
}


/** BLOG**/
.blog {
	margin-bottom: 10px;
}
.blog img {
	transition: .5s;
}

.blog a {
	max-height: 163px;
	margin: 10px;
	display: block;
}

.blog a:hover img {
	opacity: .2;
}

/** Clientes **/

.clientes {
	margin-top: 20px;
}

.clientes li {
	padding: 10px;
}

.clientes img {
	border: 1px solid #CCC;
}

/** @media 768px **/

@media screen and (max-width: 768px) {
	[class*='col-'] {
		width: 100%;
	}
}

/** @media 880px **/

@media screen and (max-width: 880px) {

	.hamburger {
		display: block;
	}

	.navigation {
		width: 0;
		height: 0;
		opacity: 0;
		overflow: hidden;
	}

	.logo {
		width: 80%;
	}

	.footer-logo img {
		max-width: 245px;
	}

	.footer-logo, .footer-infos, .footer-social {
		width: 100%;
	}

	.footer-social {
		max-width: 200px;
	}

	.footer-social li {
		width: 25% !important;
	}

	.home-services li {
		margin-bottom: 50px;
	}

	.home-clientes .line {
		display: none;
	}

	.home-clientes h4 {
		width: 100%;
	}

	.list-clientes li {
		width: 50% !important;
	}

	.list-clientes img {
		max-width: 180px;
		margin: 10px auto;
	}

	.clientes li {
		width: 50% !important;
	}

	.clientes img {
		max-width: 180px;
	}

	#prev, #next {
		top: 20%;
	}
}