html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
*{
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: 'Roboto', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.container{
	width: 100%;
	max-width: 1440px;
	padding: 0px 50px;
	display: block;
	margin: 0 auto;
}
header .conteudo{
	display: inline-flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 20px 0px;
}
header .conteudo .logo img{
	max-height: 70px;
}
header .conteudo .menu ul{
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
header .conteudo .menu ul li{
	margin-right: 80px;
}
header .conteudo .menu ul li:last-child{
	margin-right: 0px;
}
header .conteudo .menu ul li a{
	text-transform: uppercase;
	color: black;
	text-decoration: none;
	font-weight: 900;
}
header .conteudo .menu ul li a:hover{
	text-decoration: underline;
}
.banner{
	width: 100%;
	display: block;
}
.banner .conteudo{
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.banner .conteudo .texto{
	width: 50%;
	display: block;
	padding: 0px 90px;
}
.banner .conteudo .texto h2{
	font-size: 56px;
	margin-bottom: 25px;
	text-transform: uppercase;
	position: relative;
	font-weight: 900;
}
.banner .conteudo .texto h2:after{
	content: ' ';
	background-color: black;
	height: 4px;
	width: calc(100% - 115px);
	position: absolute;
	bottom: 8px;
	right: 0px;
}
.banner .conteudo .texto h3{
	font-size: 35px;
	margin-bottom: 25px;
	font-weight: 900;
	text-transform: uppercase;
}
.banner .conteudo .texto h4{
	font-size: 27px;
	margin-bottom: 25px;
	text-transform: uppercase;
	font-weight: 900;
}
.banner .conteudo .texto .botoes{
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.banner .conteudo .texto .botoes a{
	width: max-content;
	padding: 0px 40px;
	line-height: 50px;
	display: inline-block;
	border-radius: 25px;
	border: 1px solid #00002f;
	text-transform: uppercase;
	text-decoration: none;
	color: #00002f;
}
.banner .conteudo .texto .botoes a:hover{
	background-color: #00002f;
	color: white;
	box-shadow: 0px 0px 5px 5px #00002f;
}
.banner .conteudo .imagem{
	width: 50%;
	padding: 0px 30px;
}
.banner .conteudo .imagem img{
	width: 100%;
}
.quem-sou-eu{
	width: 100%;
	display: block;
}
.quem-sou-eu .conteudo{
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.quem-sou-eu .conteudo .texto{
	width: 50%;
	display: block;
	padding: 0px 0px 0px 30px;
}
.quem-sou-eu .conteudo .texto h2{
	font-size: 48px;
	margin-bottom: 25px;
	text-transform: uppercase;
	position: relative;
	width: max-content;
	font-weight: 900;
}
.quem-sou-eu .conteudo .texto h2:after{
	content: ' ';
	background-color: black;
	height: 4px;
	width: 50%;
	position: absolute;
	bottom: -5px;
	left: 0px;
}
.quem-sou-eu .conteudo .texto p{
	font-size: 16px;
	margin-bottom: 25px;
}
.quem-sou-eu .conteudo .texto .botoes{
	width: 100%;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.quem-sou-eu .conteudo .texto .botoes a{
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	border-radius: 25px;
	border: 1px solid #00002f;
	text-transform: uppercase;
	text-decoration: none;
	color: #00002f;
	font-size: 28px;
	margin-right: 20px;
	text-align: center;
}
.quem-sou-eu .conteudo .texto .botoes a:hover{
	background-color: #00002f;
	color: white;
	box-shadow: 0px 0px 5px 5px #00002f;
}
.quem-sou-eu .conteudo .texto .botoes a:last-child{
	margin-right: 0px;
}
.quem-sou-eu .conteudo .imagem{
	width: 50%;
	padding: 0px 30px;
}
.quem-sou-eu .conteudo .imagem img{
	width: 100%;
}
.servicos{
	padding: 100px 0;
	color: white;
	background: rgb(5,5,134);
	background: linear-gradient(55deg, rgba(5,5,134,1) 0%, rgba(4,4,103,1) 100%); 
}
.servicos .conteudo .texto h2{
	font-size: 42px;
	margin-bottom: 25px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 900;
}
.servicos .conteudo .texto p{
	font-size: 16px;
	margin-bottom: 25px;
	text-align: center;
}
.servicos .conteudo .itens{
	width: 100%;
	display: inline-flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.servicos .conteudo .itens .item{
	width: auto;
	max-width: 390px;
	padding: 30px 60px;
	border-radius: 30px;
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.servicos .conteudo .itens .item:hover{
	border: 1px solid white;
}
.servicos .conteudo .itens .item i{
	width: 50px;
	text-align: center;
	font-size: 35px;
	margin-right: 10px;
}
.servicos .conteudo .itens .item h3{
	width: max-content;
	max-width: calc(100% - 60px);
	font-size: 18px;
	text-transform: uppercase;
}
.servicos .conteudo .itens .item p{
	text-align: center;
	margin-top: 20px;
}
.projetos{
	width: 100%;
	display: block;
	padding: 100px 0;
}
.projetos .conteudo .texto h2{
	font-size: 42px;
	margin-bottom: 25px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 900;
}
.projetos .conteudo .itens{
	width: 100%;
	display: inline-flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.projetos .conteudo .itens .item{
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0px 20px;
}
.projetos .conteudo .itens .item img{
	width: 100%;
	border-radius: 50px;
}
.projetos .conteudo .itens .item .hover{
	width: calc(100% - 40px);
	border-radius: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.70);
	opacity: 0;
	visibility: hidden;
}
.projetos .conteudo .itens .item:hover > .hover{
	opacity: 1;
	visibility: visible;
}
.projetos .conteudo .itens .item .hover i{
	color: white;
	font-size: 20px;
}
footer{
	width: 100%;
	display: block;
	padding: 80px 0px 60px 0px;
	background-color: #ededed;
}
footer .conteudo{
	width: 100%;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
footer .conteudo img{
	width: auto;
	max-height: 140px;
	margin-bottom: 10px;
}
footer .conteudo p{
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 900;
}
footer .conteudo .botoes{
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 30px 0;
}
footer .conteudo .botoes a{
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	border-radius: 25px;
	border: 1px solid #00002f;
	text-transform: uppercase;
	text-decoration: none;
	color: #00002f;
	font-size: 28px;
	margin-right: 20px;
	text-align: center;
}
footer .conteudo .botoes a:hover{
	background-color: #00002f;
	color: white;
	box-shadow: 0px 0px 5px 5px #00002f;
}
footer .conteudo .botoes a:last-child{
	margin-right: 0px;
}