@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap);
a,abbr,acronym,address,applet,article,aside,
audio,b,big,blockquote,body,canvas,caption,
center,cite,code,dd,del,details,dfn,div,dl,dt,
em,embed,fieldset,figcaption,figure,footer,form,
h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,
ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,
p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,
summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,
var,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,aside,details,figcaption,figure,footer,header,
hgroup,menu,nav,section {
	display: block;
}

body {
	line-height: 1;
}

a {
	text-decoration: none;
}

blockquote,q {
	quotes: none;
}

blockquote:after,blockquote:before,
q:after,q:before {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}



:root{
	--azul: #07425C;
	--verde: #275963;
	--dourado: #BE8F33;
	font-size: 16px;
}



body {
	font-family: 'Open Sans', sans-serif;
}

.container {
	width: 90%;
	margin: 0 auto;
}

h1,h2,h3,h4,h5,h6,p {
	line-height: 1.25em;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.8em;
}

h4 {
	font-size: 1.7em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.1em;
}

p {
	font-size: 1em;
	margin-bottom: 1em;
}

header {
	display: table;
	height: 20vh;
	text-align: center;
}

#logo {
	width: 50%;
	padding: 10px;
	position: relative;
	top: 4vh;
}

section {
	width: 100%;
	float: left;
}

#clientes h2,
#depoimentos h2,
#servicos h2,
#titulo {
	font-weight: 800;
	color: var(--dourado);
	text-transform: uppercase;
	margin-bottom: .3em;
}

#texto {
	width: 100%;
	height: auto;
	float: left;
}

form{
	display: flex;
    flex-flow: column;
    align-items: stretch;
    justify-content: center;
}

form .contatos{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.g-recaptcha{
	align-self: center;
	margin-bottom: 1rem;
}

#texto a {
    background: var(--azul);
    background: linear-gradient( 
135deg
 ,rgba(0, 62, 88, 1) 0%,rgba(20, 80, 112, 1) 100%);
    padding: .5em 1em;
    border-radius: 10px;
    margin-top: 2em;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-top: 1rem;
    width: fit-content;
	font-size: 1.3rem;
}

#texto p {
	font-weight: 300;
	color: #757575;
}

#formulario {
	background-color: #fff;
	width: calc(100% - 80px);
	margin: auto;
	height: fit-content;
	padding: 20px 40px;
	border-radius: 20px;
	float: left;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .37);
	-moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .37);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .37);

}

#formulario p {
	color: var(--azul);
	font-weight: 700;
	text-align: center;
	font-size: 1.5em;
}

button,
label {
	display: block;
}

label,
option {
	color: #505050;
	font-weight: 800;
}

input,
select {
	margin: 1em 0;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #d7d7d8;
	background-color: transparent;
	padding: 0 .2em .2em .2em;
}

select {
	font-weight: 300;
	color: #505050;
}

.radios {
	text-align: center;
	width: 33.333333333333333333333333%;
	float: left;
}

button {
	background: var(--azul);
    background: linear-gradient( 
135deg
 ,rgba(0, 62, 88, 1) 0%,rgba(20, 80, 112, 1) 100%);
	border-radius: 45px;
	padding: .5em 1em;
	border: none;
	color: #fff;
	font-weight: 800;
	width: 100px;
	position: relative;
	left: calc(50% - 50px);
}

#depoimentos .container{
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}

#depoimentos .cardContainer{
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem 0;
}

.cardContainer > .card{
	position: relative;
	transition: all .5s ease-in-out;
	border-radius: 20px;
}

.cardContainer > .card img{
	border-radius: 20px;
}

.cardContainer > .card:hover{
	transition: all .5s ease-in-out;
	transform: scale(1.1);
}

.cardContainer > .card h3{
	position: absolute;
	top: 2rem;
	left: 1rem;
	color: var(--azul);
	font-size: 1.6rem;
	font-weight: bold;
}

.cardContainer > .card:hover h3{
	z-index: 2;
	color: #fff;
}

.cardContainer > .card .cardContent{
	display: none;
	height: 100%;
	width: 100%;
	padding: 4rem 1rem 1rem 1rem;
	animation: fadeIn .5s;
	border-radius: 20px;
	color: #fff;
}

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }

.cardContainer > .card:hover .cardContent{
	display: block;
	position: absolute;
	bottom: 0;
    padding: 0 1rem;
    box-sizing: border-box;
	background-color: rgba(39, 89, 99, .5);
}

.cardContainer > .card .cardContent p{
	position: absolute;
    bottom: 0;
    width: calc(100% - 2rem);
}

#servicos {
	background: var(--azul) url('../img/bg-clientes.webp');
	position: relative;
	color: #fff;
	background-size: contain;
}

/* #servicos > div:first-of-type{
	padding-left: 5%;
	padding-top: 10%;
	/* position: absolute; */
    /* width: 40%; */
    /* top: 10%; */
/* } */

.slide{
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}



.slide > div{
	/* padding-left: 5%; */
    position: relative;
	width: 70%;
    /* padding-top: 10% */
	display: flex;
	flex-flow: column;
	gap: 1rem;

}

#servicos > div > img{
	width: 100%;
	height: auto;
}

#servicos h2,
#servicos h3{
	color: var(--dourado);
	font-weight: bold;
}

#clientes h2,
#depoimentos h2{
	text-align: center;
}

#servicos>p {
	text-transform: uppercase;
	text-align: center;
	font-weight: 700;
}

.slick-initialized .slick-slide{
	grid-template-columns: 1fr;
}

#depoimentos{
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,1) 70%, rgba(238,238,238,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 70%, rgba(238,238,238,0) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,1) 70%, rgba(238,238,238,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#eeeeee",GradientType=1);
}

#depoimentos,
.depoimentosContainer {
	padding: 2em 0;
}

#depoimentos h2{
	color: var(--dourado);
}



footer {
	padding: 2em 0 1em;
	background-size: cover;
	background: var(--verde);
	width: 100%;
	float: left;
	background-repeat: no-repeat;
	font-weight: 800;
	text-align: center;
}

.footerContent {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: center;
	height: 100%;
	width: 70%;
	margin: auto;
	color: #fff;
}

.footerContent a {
	color: #fff;
}

#banner .container{
	display: grid;
	gap: 2rem;
}

/* .imgContainer{
	display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0 !important;
} */

.slide img{
	border-radius: 20px;
}

.slides{
	padding: 1rem 0;
}

.slick-next {
    left: 90% !important;
}

@media screen and (min-width:993px) {
	body {
		background: url('../img/bg-branco.webp');
		background-repeat: no-repeat;
		background-position-x: center;

	}

	/* #servicos > div:first-of-type{
		padding-left: 10%;
		padding-top: 0%;
		position: absolute;
		width: 40%;
		top: 10%;
	} */

	.slick-next {
		left: 97% !important;
	}

	#depoimentos .cardContainer{
		grid-template-columns: repeat(3, 1fr);
	}

	#banner{
		height: 80vh;
		display: flex;
	}

	#banner .container{
		grid-template-columns: repeat(2, 1fr);
	}

	#formulario,
	#texto {
		margin: 10px;
	}
	.container {
		width: 80%;
		margin: 0 auto;
	}
	header {
		text-align: left;
	}
	#logo {
		width: calc(16.66% - 20px);
		float: left;
	}
	/* #texto {
		width: calc(47.33% - 20px);
	} */
	#formulario {
		/* width: calc(41.66% - 160px); */
		float: right;
		margin: unset;
		padding: 40px;
	}
	.servicosCard {
		width: 20%;
	}
	.depoimentosCard {
		width: 25%;
	}

	.slick-initialized .slick-slide{
		grid-template-columns: repeat(2, 1fr);
	}

	.slide > div {
		width: 30%;
	}

	.slide{
		flex-flow: row;
	}

	footer {
		padding: 2em 0 1em;
	}
}

@media screen and (min-width:1366px){

	#banner .container{
		display: grid;
		grid-template-columns: 1.5fr 1fr;
		gap: 2rem;
	}

	#texto {
		width: auto;
	}

	#formulario {
		width: auto;
		margin: unset;
		box-sizing: border-box;
	}

	/* .slide > div {
		padding-top: 35%;
	} */
}
/* 
@media screen and (min-width:1900px){
	.slide > div {
		padding-top: 20%;
	}
} */