:root{
	--cor-texto: #464648;
}
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
  	font-weight: 400;
}
.container{
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
header{
	padding-top: 10px;
	padding-bottom: 10px;
}
header .conteudo{
	display: flex;
	justify-content: space-between;
	align-items: center;	
}
header .logo img{
	width: 100%;
	max-width: 150px;
}
header nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .menu-item{
	margin-left: 15px;
}
header .menu-item a{
	text-decoration: none;
	color: var(--cor-texto);
	font-size: 21px;
}
/********************************/
#home{
	background-color: #ea3118;
	width: 100%;
	height: 500px;
}
#home .container{
	height: 100%;
}
#home .msg{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#home h1{
	color: #fff;
	font-size: 42px;
	font-weight: bold;
}
#home h5{
	font-size: 28px;
	color: #fff;
}
/*************************/
#sobre{
	margin-top: 30px;
	margin-bottom: 30px;
}
#sobre .conteudo{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#sobre img{
	max-width: 100%;
	border-radius: 30px;
}
#sobre h5{
	color: #ea3118;
	font-size: 32px;
	text-transform: uppercase;
	font-weight: bold;
}
#sobre p{
	font-size: 21px;
}
#sobre .botao{
	margin-top: 30px;
}
#sobre .botao a{
	background-color: #ea3118;
	color: #fff;
	padding: 10px 30px;
	border-radius: 15px;
	font-size: 21px;
	text-decoration: none;
}

@media(max-width: 750px){
	#sobre .conteudo{
		display: block;
	}
	#sobre .imagem{
		margin-top: 30px;
	}
}

/****************************/

#overlay{
	width: 100%;
	height: 300px;
}

#overlay .img-overlay{
	background-image: url('images/imagem-fundo.jpg');
	background-size: cover;
	background-attachment: fixed;
	height: 100%;
	width: 100%;
}

/********************************/
#servicos{
	margin-top: 40px;
	margin-bottom: 40px;
}
#servicos .msg{
	font-size: 42px;
	font-weight: bold;
	color: #ea3118;
	margin-bottom: 30px;
	text-align: center;
	text-transform: uppercase;
}
#servicos .box{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
#servicos .box .item{
	float: left;
	width: 23%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 20px;
	box-shadow: 1px 5px 10px rgba(0,0,0,0.1);
	border-radius: 15px;
	text-align: center;
	margin-bottom: 20px;
}
#servicos .box .item .titulo{
	color: #ea3118;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}
#servicos .box .item .texto{
	font-size: 18px;
}
#servicos .botao{
	margin-top: 30px;
}
#servicos .botao a{
	background-color: #ea3118;
	color: #fff;
	padding: 10px 30px;
	border-radius: 15px;
	font-size: 21px;
	text-decoration: none;
}

@media(max-width: 750px){
	#servicos .box .item{
		width: 31%;
	}
}

@media(max-width: 550px){
	#servicos .box .item{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	#servicos .botao a{
		width: 100%;
	}
}

/**************************/

#mapa{
	margin-bottom: 30px;
}
#mapa iframe{
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
/**************************/

footer{
	background-color: #000;
	padding-top: 40px;
	padding-bottom: 40px;
	text-align: center;
}
footer img{
	max-width: 250px;
	width: 100%;
	margin-bottom: 10px;
}
footer p{
	font-size: 16px;
	color: #fff;
}