/* Folhas de estilos*/
@import 'main.css';

.banner{
	width: 100%;
	height: 100vh;
	overflow: hidden !important;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.no-webp .banner{
	background-image: url('../img/banner-contato.png');
}

.webp .banner{
	background-image: url('../img/banner-contato.webp');
}

.banner h1{
	font-weight: 300;
	font-size: 2.25em;
	text-align: center;
	color: #fff;
	margin: 0;
}

.banner h1 b{
	font-weight: 800;
}

.banner h1 i{
	color: #FFD41D;
	font-style: italic;
}

.banner h1 span{
	color: #F75828;
	font-style: italic;
}

.banner-fundo{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8));
	position: relative;
	top:0;
	left: 0;

	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

/*Free Pass=============================*/
.free-pass{
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #000;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.no-webp .free-pass{
	background-image: url('../img/banner-free.jpg');
}

.webp .free-pass{
	background-image: url('../img/banner-free.webp');
}

.free-pass h2{
	font-style: italic;
	font-weight: 800;
	font-size: 2.375em;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

.free-pass h2 b{
	color: #FFD41D;
}

.free-pass p{
	font-style: italic;
	font-weight: 300;
	font-size: 1.5em;
	color: #fff;
	text-align: center;
}

.free-pass p b{
	font-weight: 800;
}

.free-pass p i{
	color: #F75828;
	font-weight: 800;
}

/*Formulário=============================*/
.form{
	padding-top: 50px;
	padding-bottom: 50px;
}

.form textarea, .form input{
	width: 100%;
	height: 50px;
	padding: 15px;
	padding-top: 17px;
	font-size: 1em;
	color: #000;
	border: 1px solid #000;
	border-radius: 0;
	margin: 5px 0;
}

.form button{
	width: 100%;
	height: 50px;
	border:0;
	cursor: pointer;

	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.form textarea::placeholder, .form input::placeholder{
	font-family: 'Galano', 'Arial', sans-serif;
}

.form textarea{
	height: 150px;
}

.form input:focus, .form textarea:focus{
	outline: none;
	border-color: #FFD41D;
}

.icon-contatos{
	width: 100%;
}

.icon-contatos div{
	display: inline-block;
}

.icon-contatos h2{
	font-size: 1.5em;
	font-weight: 700;
	color: #000;
	margin: 0;
	margin-top: 20px;

	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.icon-contatos p{
	font-size: 1.125em;
	color: #000;

	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.icon-contatos svg{
	height: 40px;
	margin-right: 10px;
}

.icon-contatos a:hover h2, .icon-contatos a:hover p{
	color: #F75828;
}

/* Responsive=======================*/

@media screen and (max-width: 767px){
	.icon-contatos svg{
		height: 30px;
	}
	.icon-contatos h2, .icon-contatos p{
		font-size: 1em;
	}

	.banner{
		height: 300px;
		background-position: left;
	}

	.text-banner{
		padding-top: 100px;
	}
}