/*
Theme Name: Conquista
Theme Autor: Cláudia Barreto
*/


/* Fontes */

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,900');

/* Geral */

*{
	outline: none !important;
}

a{
	cursor: pointer;
}


a:hover, a:focus{
	text-decoration: none;
	color: #0c50a1;
}

html{
	font-size: 16px;
}

body{
	font-family: 'Montserrat', sans-serif;
	line-height: 1.5em;
	color: #888;
	font-weight: 400;
}

b{
	font-weight: 700;
}

.call-to {
	background: #fff;
	border: 2px solid #7fc241;
	color: #7fc241;
	font-weight: 700;
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-ms-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 10px;
	display: inline-block;
}


.call-to:hover,
.call-to:focus{
	color: #fff;
	background: #7fc241;
}

.call-to:hover:after,
.call-to:focus:after{
	animation: direcao 750ms infinite;
}


.titulo-principal{
	color: #004a8f;
	font-size: 2.25rem;
	font-weight: 900;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 20px 0;
}

.subtitulo1{
	color: #7fc241;
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 900;
	margin: 0 0 20px 0;
	margin: 0 0 20px 0;
}

.texto{
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-left: 60px;
	padding-bottom: 65px;
}

.texto footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	color: #888;
	border-top: 1px solid #ccc;
	text-align: left;
	padding: 20px;
	font-size: 14px;
}

.bg{
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
	/*filter: grayscale(100%);*/
	transition: all 350ms ease-in-out;
}

.bg:hover{
	filter: grayscale(0%);
}

.bg-content{
	position: relative;
}

.bg-content:before,
.bg-content:after{
	width: 5px;
	left: 0;
	height: 50%;	
	content: '';	
	position: absolute;
	z-index: 9;
}

.bg-content:before{
	top: 0;
	background: #7fc241;
}

.bg-content:after{
	bottom: 0;
	background: #004a8f;
}

/*Tarifas*/

.modal-body{
	padding: 40px;
}

.modal-body h3{
	color: #004a8f;
	font-size: 20px;
	font-weight: 900;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0px 0 50px 0;
}

.modal-body h4{
	color: #444;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	margin: 0px 0 5px 0;
}

.table{
	border: 2px solid #ececec;
	text-align: center;
	margin-bottom: 70px;
}

.table thead{
	color: #7fc241;
	font-weight: 900;
}

.table thead td{	
	border-bottom:2px solid #ececec;
	border-top: 0;
	border-right:2px solid #ececec;
	border-left:2px solid #ececec;
}

.table tbody{
	color: #888;
	font-weight: 500;
}

.table tbody td{	
	border-bottom: 0;
	border-top: 0;
	border-right:2px solid #ececec;
	border-left:2px solid #ececec;
}


.table tbody td b{
	font-weight: 900;
}

.formula{
	background: #ececec;
	display: block;
	padding: 20px;
	text-align: center;
	color: #004a8f;
	font-weight: 900;
	margin-bottom: 40px;
}

@media only screen and (max-height: 615px) {

	section#conteudo{
		height: 100%;
	}

	.texto{
		display: block;
		padding: 20px;
		height: auto;
	}

	.texto footer{
		position: relative;
		margin-top: 20px;
	}

	.bg-content{
		border-bottom: 5px solid #004992;
	}
}

@media only screen and (max-width: 1200px) {

	section#conteudo{
		height: 100%;
	}

	.texto{
		display: block;
		padding: 20px;
		height: auto;
	}

	.texto footer{
		position: relative;
		margin-top: 20px;
	}

	.bg-content{
		border-bottom: 5px solid #004992;
	}
}

@media only screen and (max-width: 550px) {

	.titulo-principal {
		font-size: 1.5rem;
	}

	.subtitulo1 {
		font-size: 1rem;
	}

	.bg {
		height: 300px;
	}

	.bg-content{
		border-bottom: 0;
	}

	.modal-body {
		padding: 10px;
	}

}