*{
	margin: 0;
	padding: 0;

}
header{
	height: 13vh;
	color: #00ccff;
	background-color: #000000;
	position: fixed;
    width: 100%;	
}
main{
	height: 95vh;
}
h2{
	text-align: center;
	padding-top: 50px;
}
h1{
	text-align: center;
	padding-top: 50px;
}
p{
	font-size: 20px;
	margin-left: 50px;
}
ul{
	margin-left: 80px;
	font-size: 20px;
    list-style-type: circle;
}
footer{
	text-transform: capitalize;
	text-align: right;
	background-color: #000000;
	color: #00ddff;
	font-style: italic;
	font-weight: bolder;
	position: fixed;
	width: 100%;
	}
section{
	height: 96vh;
}
section.topo{
	background-color: #dedede;
	background-image: url("../imagens/desenho3.webp");
	color: #ff0000;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
section.conteudo1{
	background-image: url("../imagens/segurança2.jpg");
	color: #0000ff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
section.conteudo2{
	background-image: url("../imagens/atk3.jpg");
	color: #00ff00;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
section.conteudo3{
	background-image: url("../imagens/desenho1.webp");
	color: #ff0000;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
section.conteudo4{
	background-image: url("../imagens/tecnologia1.jpg");
	color: #ff0000;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/*Formatação do MENU Principal*/
.logo img{
	width: 200px;
	height: 80px;
}
nav{
	display: flex;
	justify-content: space-around;
}
.titulo h2{
	padding-top: 10px;
	font-size: 40px;
	color: navy;
}
.menu{
	width: 30%;
}
.menu ul{
	list-style-type: none;
	padding: 0px;
	margin-left: 0px;
}
.menu ul li{
	float: inline-start;
	width: 25%;
	text-align: center;
}
.menu ul li a {
	text-decoration: none;
	color: #0000ff;
	display: block;
	height: 40px;
	padding-top: 20px;
	text-transform: capitalize;
}
.menu ul li a:hover{
	background-color: #ff0000;
	color: blueviolet;
}
.menu ul ul {
	display: none;
}
.menu ul li:hover ul{
	display: block;
}
.menu ul li ul li{
	width: 100%;
	flex: none;
}

/* Formatação pagina contato*/
section.contato{
	padding-top: 8%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
	min-height: 900px;
}
.contato .formulario{
	width: 60%;
	border-color: #000000;
	border-radius: 30px;
	border-width: 5px;
	border-style: solid;
	padding: 5%;
}
.contato form{
	width: 100%;
	flex-direction: column;
	display: flex;
}
.contato label{
	color: #000000;
	font-size: 20px;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 4px;
	text-transform: capitalize;
}
.contato input{
	font-size: 16px;
	padding: 5px;

}
.contato .botoes-form{
	margin: 0 auto;
	display: block;
}
.contato button{
	padding: 20px;
	cursor: pointer;
	background-color: #0000ff;
color: #ff0000;
border-radius: 10px;
}
.contato button:hover{
	background-color: #000000;
	color: #0000ff;
}
.contato input:focus{
	border-radius: 15px;
}
.contato textarea:focus{
	border-radius: 15px;
}
/*Formatação Menu celular*/
.btn-abrir-menu{
	font-size: 50px;
	color: #0000FF;
	padding-top:2%;
}
.menu-mobile{
	background-color:#2d2e2e;
	height: 100vh;
	position: fixed;
	top:0;
	right: 0;
	z-index: 9999;
	width: 0%;
	overflow: hidden;
	transition: 1s;
}
.menu-mobile.abrir-menu{
	width: 100%;
}