*{
	margin: 0;
	padding: 0;
}
header{
	height:13vh;
	color: #000000;
	background-color:  #04abf8;
	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: #089fe6;
	color: #000000;
	font-style: italic;
	font-weight: bolder;
	position: fixed;
	width:100%;
	height: 15vh;
}
section{
	padding-top: 100px;
	height: 95vh;
}

section.topo{
	background-color: #dedede;
	background-image: url("../imagens/desenho2.jpg");
	color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}


section.conteudo1{
	background-image: url("../imagens/desenho6.jpg");
	color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	
}
section.conteudo2{
		background-image: url("../imagens/desenho4.jpg");
	color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.conteudo3{
		background-image: url("../imagens/desenho7.webp");
	color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

section.conteudo4{
		background-image: url("../imagens/desenho5.jpg");
	color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/*Formatação do MENU Principal*/
.logo img{
	width: 200px;
	height: 75px;
}
nav{
	display: flex;
	justify-content: space-around;
}
.titulo h2{
	padding-top: 10px;
	font-size: 40px;
	color: #000000;
}
.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: #000000;
	display: block;
	height: 80px;
	padding-top: 20px;
	text-transform: capitalize;
}
.menu ul li a:hover{
	background-color: #000000;
	color: #00ccff;
}
.menu ul ul{
	display: none;
}
.menu ul li:hover ul{
	display: block;
	width: 150%;
	
}
.menu ul li ul li{
	width: 100%;
	flex: none;
	background-color: #0784fa;
}

/*  Configuração da section 1   */
.container1{
	width: 50%;
	margin: 0 auto;
	display: block;
	padding-top: 5%;
}
.container1 .titulo{
	font-size: 42px;
	text-align: center;
	color: #00ccff;
	background-color: #000000;
	padding: 3%;
	border-color: #00ccff;
	border-width: 5px;
	border-style: double;
}
 .container1 .texto{
	text-align: center;
	font-size: 22px;
	line-height: 1.5em;
 }

 .container2{
	width: 80%;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 auto;
	gap: 20px;
	padding-top: 10%;
 }
 .container2 .titulo{
	font-size: 42px;
	color: #dedede;
	text-decoration: underline;
	text-align: center;
 }
 .container2 .texto{
	font-size: 22px;
	color: aqua;	
 }
 .container3{
	padding-top: 10%;
	display: flex;
	flex-direction: row-reverse;
	margin: 0 auto;
	align-items: center;
 }
 .container3 .titulo{
	font-size: 42px;
	color: #cfcfcf;
	background-color: #000000;
	border-color: #cfcfcf;
	border-style: outset;
	border-width: 5px;
	padding: 20px;
 }
 .container3 .texto{
	font-size: 18px;
	color: #ffffff;
 }
 .container4{
	display: flex;
	flex-direction: row;
	width: 80%;
	margin: 0 auto;
	gap: 15px;
	padding-top: 10%;
 }
 .container4 .titulo{
	font-size: 42px;
	text-align: center;
	color: #e9e5e5;
	font-style: italic;
 }
 .container4 .texto{
	font-size: 22px;
	color: #00ccff;
	text-align: justify;
 }

.container{
	width: 90%;
	align-items: center;
	display: flex;
	justify-content: space-around;
	gap: 50px;
	padding-top: 5%;
}
.container h1{
	font-size: 66px;
	color: #00ccff;
	line-height: 1.5em;
}
.container h1 span{
	color: #dedede;
}
.container img{
	width: 500px;
	height: 500px;
	
	position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}
@keyframes flutuar{
	0%{
		top:0;
	}
	100%{
		top: 30px;
	}
}
.container p{
	color: #00ccff;
	font-size: 28px;
	text-align: center;
	margin: 40px 0;
}
.container .botao-contato{
	text-align: center;
}
.container .botao-contato button{
	font-size: 18px;
	background-color: #00ccff;
	color: #000000;
	padding: 10px 40px;
	border: 0;
	border-radius: 30px;
	cursor: pointer;
	transition: .2s;
}
.container .botao-contato button:hover{
	transform: scale(1.5);
}

/* 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: #00ccff;
	color: blue;
	border-radius: 10px;
}
.contato button:hover{
	background-color: #000000;
	color: #00ccff;
}
.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%;
}
.menu-mobile .btn-fechar{
	font-size: 60px;
	color: #FFFFFF;	
}
.menu-mobile ul{
	text-align: left;
	list-style-type: none;
}
.menu-mobile ul li a {
	font-size: 20px;
	color: #FFFF00;
	display: block;
	padding: 0%;
	line-height: 1.5em;
	text-decoration: none;	
}
/*Formatação paginas para celular */
@media only screen and (max-width:800px)
{
	.menu{
		display: none;
	}		
	.logo{
		display: none;
	}
	.container{
		width: 90%;
		flex-direction: column;
		padding-top: 30%;	
		margin: 0 auto;
		display: flex;
	}
	.container img{
		width: 50%;
		height: 50%;		
	}
	section.topo{
		margin: 0 auto;
		display: block;
		height: 950px;
		padding-top: 8%;
	}
	.container .imagem-topo{
		display: block;
		margin: 0 auto;
	}
	.container1{
		width: 95%;
	}
	.container2{
		flex-direction: column;
		width: 95%;
	}
	.container3{
		flex-direction: column;
		width: 95%;
	}
	.container3 .texto ul{
		font-size: 26px;
		margin-left: 20px;
	}
	.container4{
		flex-direction: column;
		width: 95%;
	}
	.container4 .texto ul{
		font-size: 26px;
		margin-left: 20px;
	}
	section.topo{
		background-image: none;
		background-color: #000000;
	}
	section.conteudo1{
		background-image: none;
		background-color: #010101;
	}
		section.conteudo2{
		background-image: none;
		background-color: #464646;
	}
		section.conteudo3{
		background-image: none;
		background-color: #898989;
	}
		section.conteudo4{
		background-image: none;
		background-color: #cfcfcf;
	}
}



/* 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: #00ccff;
    color: blue;
    border-radius: 10px;
}
.contato button:hover{
    background-color: #000000;
    color: #00ccff;
}
.contato input:focus{
    border-radius: 15px;
}
.contato textarea:focus{
    border-radius: 15px;
}

section.aulas{
	padding-top: 10%;
	min-height: 1000px;
}
.aulas h1{
	color: #00ccff;
	text-decoration: underline;
	text-transform: uppercase;
	padding-bottom: 2%;
}
.aulas p{
	padding-left: 5%;
	padding-right: 10%;
	text-align: justify;
}
.aulas ul li a{
	color: #00ccff;
	text-align: left;
}