﻿@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700);

/* RESET
------------------------------------------------------------*/

html, body, div, span, iframe, h1, h2, p, a, img, ul, li, form, label, article, header, nav, section, footer {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

*, *::before, *::after {
  box-sizing: border-box;
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
}

* {
	font-family: 'Open Sans', Arial, sans-serif;
}

h1, h2, span {
	font-family: Arial, Helvetica, sans-serif;
}

body {
	background: #EEEEEE;
	color: #000000;
}

img {
	display: block;
	max-width: 100%;
}

h1, h2, a, ul {
	font-size: 1em;
	font-weight: normal;
}

p {
	font-size: 1em;
	line-height: 1.500em;
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #000000;
}

ol, ul {
	list-style: none;
}

/* GRID FLEX
------------------------------------------------------------*/
.flex {
	display: flex;
	max-width: 960px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.flex-row {
	display: flex;
	margin-left: -10px;
	margin-right: -10px;
	flex-wrap: wrap;
}

.flex-item-1, .flex-item-2, .flex-item-3, .flex-item-4, .flex-item-5, .flex-item-6,
.flex-item-7, .flex-item-8, .flex-item-9, .flex-item-10, .flex-item-11, .flex-item-12 {
	margin-left: 10px;
	margin-right: 10px;
	align-self: flex-start;
}

.flex-item-1  { flex: 0 0 calc( 08.333% - 20px ); max-width: calc( 08.333% - 20px ); /* IE */ flex-basis: calc( 08.333% - 20px ); }
.flex-item-2  { flex: 0 0 calc( 16.666% - 20px ); max-width: calc( 16.666% - 20px ); /* IE */ flex-basis: calc( 16.666% - 20px ); }
.flex-item-3  { flex: 0 0 calc( 25.000% - 20px ); max-width: calc( 25.000% - 20px ); /* IE */ flex-basis: calc( 25.000% - 20px ); }
.flex-item-4  { flex: 0 0 calc( 33.333% - 20px ); max-width: calc( 33.333% - 20px ); /* IE */ flex-basis: calc( 33.333% - 20px ); }
.flex-item-5  { flex: 0 0 calc( 41.666% - 20px ); max-width: calc( 41.666% - 20px ); /* IE */ flex-basis: calc( 41.666% - 20px ); }
.flex-item-6  { flex: 0 0 calc( 50.000% - 20px ); max-width: calc( 50.000% - 20px ); /* IE */ flex-basis: calc( 50.000% - 20px ); }
.flex-item-7  { flex: 0 0 calc( 58.333% - 20px ); max-width: calc( 58.333% - 20px ); /* IE */ flex-basis: calc( 58.333% - 20px ); }
.flex-item-8  { flex: 0 0 calc( 66.666% - 20px ); max-width: calc( 66.666% - 20px ); /* IE */ flex-basis: calc( 66.666% - 20px ); }
.flex-item-9  { flex: 0 0 calc( 75.000% - 20px ); max-width: calc( 75.000% - 20px ); /* IE */ flex-basis: calc( 75.000% - 20px ); }
.flex-item-10 { flex: 0 0 calc( 83.333% - 20px ); max-width: calc( 83.333% - 20px ); /* IE */ flex-basis: calc( 83.333% - 20px ); }
.flex-item-11 { flex: 0 0 calc( 91.666% - 20px ); max-width: calc( 91.666% - 20px ); /* IE */ flex-basis: calc( 91.666% - 20px ); }
.flex-item-12 { flex: 0 0 calc( 100.00% - 20px ); max-width: calc( 100.00% - 20px ); /* IE */ flex-basis: calc( 100.00% - 20px ); }

/* GRID FLEX - TABLET
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.flex {
		max-width: 720px;
		flex-direction: row;
	}
}

/* GRID FLEX - MOBILE
------------------------------------------------------------*/
@media (max-width: 739px) {
	.flex {
		max-width: 300px;
	}

	.flex-item-1, .flex-item-2, .flex-item-3, .flex-item-4, .flex-item-5, .flex-item-6,
	.flex-item-7, .flex-item-8, .flex-item-9, .flex-item-10, .flex-item-11, .flex-item-12 {
		margin-left: 0px;
		margin-right: 0px;
		max-width: 100%;
		align-self: auto;
		flex: 0 0 300px; /* IE */
	}
}

/* ESTILOS SITE
------------------------------------------------------------*/

/* TÍTULOS
------------------------------------------------------------*/
.title {
	font-size: 1.500em;
	line-height: 1.875em;
	font-weight: 700;
	letter-spacing: .1em;
	color: #000000;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 40px;
}

.title::after {
	content: " ";
	display: block;
	width: 60px;
	height: 3px;
	background: #000000;
	margin: 8px auto;
}

.subtitle {
	font-size: 1.125em;
	line-height: 1.500em;
	font-weight: 500;
	letter-spacing: 0.07em;
	color: #000000;
	text-transform: uppercase;
	text-align: left;
	margin-bottom: 10px;
}

.subtitle::after {
	content: " ";
	display: block;
	width: 100px;
	height: 2px;
	background: #000000;
	margin: 0 0 6px;
}

/* LISTA
------------------------------------------------------------*/
.lista li::before {
	display: inline-block;
	content: "-";
	margin: 0 5px;
}

/* HEADER
------------------------------------------------------------*/
.header-system {
	display: none;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	background: #EEEEEE;
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
	border-bottom: 1px solid #000000;
}

.header-logo {
	margin: 0 10px;
	padding: 5px 0;
}

/* HEADER - RESPONSIVO
------------------------------------------------------------*/
@media (max-width: 739px) {
	.header-system {
		display: flex;
		justify-content: flex-end;
	}

	.header-system a {
		background: #B61D15;
		color: #EEEEEE;
		font-weight: 700;
		padding: 2px 3px 2px 5px;
		font-size: 0.75em;
		border-radius: 0px 0px 6px 6px;
	}	

	.header-logo {
		margin: 0 auto;
	}
}

/* HEADER SOCIAL
------------------------------------------------------------*/
.header-social {
	margin: 0 10px;
	flex: 1;
		flex-basis: auto; /* IE */
	align-self: center;
}

.header-social ul {
	display: flex;
	float: right;
}

.header-social ul li {
	display: flex;
	align-items: center;
}

.header-social ul li:last-child::before {
	content: '•';
	display: block;
	margin-right: 10px;
}

.header-social ul li a {
	padding: 0 10px 0 5px;
	font-size: 1.250em;
}

.header-social ul li:last-child a {
	padding: 0px;
}

.fa-1-5x {
	font-size: 1.5em;
}

.fa-facebook-official:hover {
	color: #FFFFFF;
	background: url(../img/bg-icon.png) no-repeat center;
}

/* HEADER SOCIAL - RESPONSIVO
------------------------------------------------------------*/
@media (max-width: 739px) {
	.header-social {
		margin: 0;
	}
	
	.header-social ul {
		justify-content: center;
		float: none;
	}

	.header-social ul li:last-child::before {
		margin-right: 5px;
	}

	.header-social ul li a {
		padding: 0 5px 0 3px;
		font-size: 0.875em;
	}
	
	.fa-facebook-official:hover {
		background: none;
		color: #000000;
	}
}

/* HEADER - MENU NAV
------------------------------------------------------------*/
.menu {
	background-image: linear-gradient(90deg,
											rgba(238,238,238,1) 0%,
											rgba(225,225,225,1) 30%,
											rgba(0,0,0,1) 80%
										);
}

.menu-nav {
	flex: 1;
		flex-basis: auto; /* IE */
	margin: 0 10px;
	align-self: center;
}

.menu-nav ul {
	display: flex;
	float: right;
}

.menu-nav ul li a {
	display: block;
	font-size: 1em;
	font-weight: 700;
	padding: 10px;
	text-transform: uppercase;
	color: #EEEEEE;
	transition: all .8s ease;
}

.menu-nav ul li a:hover, .menu-active, #menu-system-link {
	background: #B61D15;
}

/* HEADER - MENU NAV - RESPONSIVO
------------------------------------------------------------*/
@media (max-width: 739px) {
	.menu {
		background: #000000;
	}

	.menu-nav {
		margin: 0px;
		align-self: auto;
	}
	
	.menu-nav ul {
		justify-content: space-between;
		float: none;
	}

	.menu-nav ul li a {
		font-size: 0.875em;
		padding: 10px 5px;
	}

	li a#menu-system-link {
		display: none;
	}
}

/* INTRO
------------------------------------------------------------*/
.intro {
	width: 100%;
	padding: 40px 0;
	margin-top: 123px;
	background: url('../img/bg-principal.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed; 
	background-position: 0 70%;
}

.intro-typewriter h1 {
	font-size: 3.875em;
	font-weight: 700;
	padding: 40px 0;
	color: #FFFFFF;
	text-align: center;
}

/* INTRO - RESPONSIVO
------------------------------------------------------------*/
@media (max-width: 980px) {
	.intro {
		background-attachment: scroll;
	}
}

@media (min-width: 740px) and (max-width: 980px) {
	.intro-typewriter h1 {
		font-size: 2.875em;
	}
}

@media (max-width: 739px) {
	.intro {
		margin-top: 147px;
	}
		
	.intro-typewriter {
		height: 120px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.intro-typewriter h1 {
		font-size: 2em;
		padding: 20px 0;
	}
}

/* INTRO-CARDS
------------------------------------------------------------*/
.card-pack {
	flex: 1;
}

.card-container {
	width: calc( 100% - 20px );
	height: 240px;
	margin: 15px auto;
	perspective: 500px;
		-webkit-perspective: 500px;
		-moz-perspective: 500px;
	transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
	box-sizing: border-box;
}

.card {
	position: relative;
	width: 100%;
	height: 100%;
	perspective: 500px;
		-webkit-perspective: 500px;
		-moz-perspective: 500px;
	transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
		-moz-transform-style: preserve-3d;
	transition: all 0.8s ease;
}

.card-container:hover .card {
	transform: rotateY(-180deg);
}

/* INTRO-CARDS - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.card-container {
		height: 200px;
	}
}

/* CARD-FRONT
------------------------------------------------------------*/
.card-front {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
	backface-visibility: hidden;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

/* SERVIÇO-IMAGEM */
.card-front img {
	padding: 10px;
	background-image: linear-gradient(90deg,
											rgb(148, 148, 148) 0%,
											rgb(238, 238, 238) 60%,
											rgba(252, 255, 244, 0.9) 90%
										);
}

/* CARD-FRONT - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.card-front img {
		height: 161px; /* IE */
	}
}

/* CARD-NOME-SERVICE
------------------------------------------------------------*/
.card-front-call, .card-back-call {
	font-size: 1.125em;
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
	text-transform: uppercase;
	background: #000000;
	color: #FAFAFA;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-basis: calc(100% - 200px);
}

/* CARD-NAME-SERVICE - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.card-front-call, .card-back-call {
		font-size: 0.875em;
		flex-basis: calc(100% - 160px);
	}
}

/* CARD-BACK
------------------------------------------------------------*/
.card-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
	backface-visibility: hidden;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-image: linear-gradient(90deg,
											rgb(148, 148, 148) 0%,
											rgb(238, 238, 238) 60%,
											rgba(252, 255, 244, 0.9) 90%
										);
	transform: rotateY(-180deg);
}

/* CARD-BACK - LIST-SERVICE
------------------------------------------------------------*/
.card-back-list {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-left: 10px;
	flex: 1;
	font-size: 1.250em;
}

.card-back-list li::before {
	display: inline-block;
	content: "-";
	margin-right: 5px;
}

.card-back-call {
	transition: 1s all ease;
}

.card-back-call:hover {
	letter-spacing: 0.5em;
}

/* CARD-BACK - LIST-SERVICE - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.card-back-list {
		font-size: 0.875em;
	}
}

/* SUPORTE IE - MODIFICAÇÕES
------------------------------------------------------------*/
/* SEM EFEITO DE GIRO */
/*.card { -ms-transition: 2s; }*/
/*.card-container:hover .card { -ms-transform: rotateY(0deg); }*/
/*.card-back { -ms-transform: rotateY(0deg); z-index: -1; }*/
/*.card-container:hover .card-back { z-index: 0; }*/

/* COM EFEITO DE GIRO */
.card { -ms-transition: 1.4s; }
.card-container:hover .card-front { -ms-transform: rotateY(180deg); }
.card-container:hover .card-back { -ms-transform: rotateY(0deg); -ms-transform: scaleX(-1); }

/* INTRO-CALL (MOBILE)
------------------------------------------------------------*/
.intro-call {
	text-align: center;
	display: none;
}

.intro-call p {
	color: #FFFFFF;
	font-weight: 600;
	margin-bottom: 20px;
}

.intro-call-btn {
	width: 140px;
	display: block;
	font-size: 0.875em;
	font-weight: 700;
	margin: 0 auto;
	padding: 10px 0;
	color: #FFFFFF;
	border: 3px solid #FFFFFF;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: .1em;
	transition: all .7s linear;
}

.intro-call-btn:hover {
	background: #B61D15;
	border: 3px solid #B61D15;
}

/* INTRO-CALL (MOBILE) - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 1367px) {
	.intro {
		padding: 120px 0;
	}
}

@media (max-width: 739px) {
	.intro-cards {
		display: none;
	}
	.intro-call {
		display: block;
	}
}

/* SOBRE
------------------------------------------------------------*/
.sobre {
	padding: 40px 0px;
	background: #FFFFFF;
	color: #000000;
}

.sobre-texto {
	padding-left: 20px;
}

.sobre p {
	margin-bottom: 15px;
}

.sobre img {
	max-width: 100%;
	border-radius: 8px;
}

.sobre ul li::before {
	display: inline-block;
	content: "-";
	margin-right: 5px;
}

.sobre ul li {
	line-height: 25px;
}

/* SOBRE - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.sobre-texto {
		padding-left: 0px;
	}
}

@media (max-width: 739px) {
	.sobre-texto {
		margin-top: 40px;
		padding-left: 0px;
	}
}

/* SERVIÇOS
------------------------------------------------------------*/
.servicos {
	width: 100%;
	padding: 40px 0px 0px;
	color: #000000;
}

.servicos hr {
	max-width: 60px;
	height: 2px;
	margin: 0 auto;
	background: #484B4D;
	border: none;
}

.servicos img  {
	border-radius: 8px;
}

.servicos article {
	margin-bottom: 40px;
}

.servicos article:not(:last-of-type)::after {
	content: ' ';
	display: block;
	width: 60px;
	height: 2px;
	margin: 40px auto 0;
	background: #484B4D;
	border: none;
	order: 2;
}

.servicos p {
	margin-bottom: 10px;
}

.servicos-texto {
	align-self: center;
}

.servicos-order {
	display: flex;
	justify-content: center;
	order: 1;
}

/* SERVIÇO CUPIM - IMAGEM
------------------------------------------------------------*/
.img-desk { display: block; }
.img-mobile { display: none; }


/* SERVIÇOS - RESPONSIVO
------------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {	
	.servicos img { width: 280px; /* IE */ }
}

@media (max-width: 739px) {	
	.img-desk { display: none; }
	.img-mobile { display: block; }

	.servicos article::after { margin: 20px auto 0; }

	.servicos .lista { margin-bottom: 10px; }
	
	.servicos-order { order: 0; }

	.servicos-texto { margin-top: 20px; }

	.servicos img { width: 300px; /* IE */ }
}


/* SERVIÇOS - PAGAMENTO
------------------------------------------------------------*/
.credit-cards {
	display: flex;
	align-self: stretch;
	justify-content: space-between;
	margin: 10px;
}

.credit-cards li:nth-child(even) {
	align-self: flex-end;
}

.credit-cards li img {
  border-radius: 5px;
  box-shadow: 0 0 1rem rgba(0,0,0,.6);
}

/* SERVIÇOS - PAGAMENTO - RESPONSIVO
-----------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.credit-cards {
		margin: 30px 10px;
	}
	.credit-cards img {
		width: 68px; /* IE */
	}
}

@media (max-width: 739px) {
	.credit-cards {
		margin: 10px 0 0;
		height: 90px;
	}
	.credit-cards img {
		width: 60px; /* IE */
	}	
}

/* CONTATO
------------------------------------------------------------*/
.contato {
	padding: 40px 0;
	background: #FFFFFF;
}

.contato-principal {
	position: relative;
}

/* CONTATO - FORMULÁRIO
------------------------------------------------------------*/
.formphp {
	min-height: 400px;
}

.formphp label.nao-aparece, .formphp input.nao-aparece {
	visibility: hidden;
	position: absolute;
	height: 0px;
}

.contato-form {
	padding-right: 40px;
}

.contato-form label {
	display: block;
	font-size: 1.125em;
	line-height: 25px;
	margin-bottom: 4px;
}

.contato-form input {
	width: 100%;
	display: block;
	border: 3px solid #969593;
	border-radius: 5px;
	padding: 7px 10px;
	margin-bottom: 10px;
	font-size: 0.875em;
	outline: none;
}

.contato-form textarea {
	width: 100%;
	height: 150px;
	display: block;
	border: 3px solid #969593;
	border-radius: 5px;
	padding: 7px 10px;
	margin-bottom: 10px;
	font-size: 0.875em;
	outline: none;
}

.contato-form input:focus, .contato-form textarea:focus {
	background-color: #EEEEEE;
}

.contato-form-btn {
	width: 140px;
	display: block;
	font-size: 0.875em;
	font-weight: 700;
	margin: 0;
	padding: 10px 0;
	background: transparent;
	color: #000000;
	border: 3px solid #969593;
	border-radius: 5px;
	text-transform: uppercase;
	letter-spacing: .1em;
	transition: all .7s linear;
}

.contato-form-btn:hover {
	background: #B61D15;
	color: #FFFFFF;
	border: 3px solid #B61D15;
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
}

.g-recaptcha { /*new*/
	margin-bottom: 10px;
}

.resolveCaptcha { /*new*/
	display: none;
	margin-bottom: 10px;
	font-size: 0.875em;
	color: #B61D15;
}

/* CONTATO - DADOS
-----------------------------------------------------------*/
.contato-dados ul li i {
	width: 26px;
	text-align: center;
	line-height: 1.4;
}

.contato-dados ul li a {
	display: inline-block;
	margin: 0;
	font-size: 1.125em;
	line-height: 1.4;
}

.contato-dados-2 {
	margin-top: 10px;
}

.contato-dados-2 li {
	margin: 0;
	font-size: 1.125em;
	line-height: 1.875em;
}

.contato-facebook {
	position: absolute;
	top: 260px;
	right: 130px;
	display: flex;
}

.contato-mapa {
	margin-top: 40px;
}

.contato-mapa iframe {
	height: 240px;
	display: block;
}

/* CONTATO - RESPONSIVO
-----------------------------------------------------------*/
@media (min-width: 740px) and (max-width: 980px) {
	.contato-form {
		padding-right: 0px;
	}
	.contato-facebook {
		right: 10px;
	}
}

@media (max-width: 739px) {
	.formphp {
		min-height: auto;
	}
	.contato-form {
		padding-right: 0px;
		margin-bottom: 20px;
	}
	.contato-facebook {
		position: static;
		order: 1;
		max-width: 100%;
	}
	.contato-mapa {
		margin: 10px 0 20px;
	}
	.contato-mapa iframe {
		height: 154px;
	}
}

/* FOOTER
------------------------------------------------------------*/

.footer {
	font-size: 0.875em;
	padding: 9px 0;
	color: #FFFFFF;
	border-top: 1px solid #000000;
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
	background-image: linear-gradient(90deg,
											rgba(238,238,238,1) 0%,
											rgba(225,225,225,1) 30%,
											rgba(0,0,0,1) 80%
										);
}

.copy {
	flex: 1;
		flex-basis: auto; /* IE */
	text-align: left;
	color: #000000;
}

.footer p {
	margin: 0 10px;
}

.footer p a {
	font-weight: 700;
	color: #FFFFFF;
}

/* FOOTER - RESPONSIVO
------------------------------------------------------------*/
@media (max-width: 739px) {
	.footer {
		background: #000000;
		border: none;
	}
	.footer p, .copy {
		text-align: center;
		margin: 0;
		color: #FFFFFF;
	}	
}

/* BOTÃO VOLTAR AO TOPO
------------------------------------------------------------*/
.voltar-ao-topo {
	position: fixed;
	font-size: 0.750em;
	bottom: 2em;
	right: 1em;
	padding: 0.750em;
	color: #F9F9F9;
	text-decoration: none;
	border-radius: 6px;
	background-color: rgba(0, 0, 0, 0.3);
	display: none;
	z-index: 999;
}

.voltar-ao-topo:hover {
	background-color: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 1rem rgba(0,0,0,.6);
}

/* ANIMAÇÕES
------------------------------------------------------------*/
.js .intro-typewriter > h1,
.js .intro-typewriter > span,
.js .intro-cards,
.js .intro-call p,
.js .intro-call-btn,
.js .sobre .title,
.js .sobre .subtitle,
.js .sobre p {
	opacity: 0;
}

.animated {
	-webkit-animation-duration: 1s;
					animation-duration: 1s;
	-webkit-animation-fill-mode: both;
					animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -20px, 0);
						transform: translate3d(0, -20px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
						transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -20px, 0);
						transform: translate3d(0, -20px, 0);
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
						transform: none;
	}	
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
					animation-name: fadeInDown;
}