html{
	scroll-behavior: smooth;
}
body{
	background-color: #e4f1fa;
	font-family: Gill Sans, sans-serif;
}
/*menu*/
header{
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 2px 2px #416ae0, 0em 0 0.4em #416ae0;
}

header p{
	font-size: 22px;
	font-weight: bold;
	margin: 10px;
}
.wrap{
	flex-wrap: wrap;
}

nav ul{
	border-radius: 20px;
	background-color: #e4f1fa;
	list-style: none;
	display: flex;
	margin: 0px;
	padding: 0px;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: bold;
}
nav ul li{
	background-color: #416ae0;
	border-radius: 20px;
	margin: 3px;
	padding: 10px;
	width: auto;
}
nav ul li a{	
	text-decoration: none;
	color: white;
}
nav ul li:hover {
  transform: scale(1.2);
}
/*main*/

.home{
	
	height: auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 15px;
	background-color: #416ae0;

}
.home img{
	width: 52%;
}
.home-descricao{
	text-align: center;
	align-items: center;
	line-height: 15px;
	color: white;
	padding-left: 20px;

}
.home-descricao img{
	width: 30px;
	height: 30px;
}
.cargo{
	color: #e3e3e3;
	line-height: 20px;
}
.icon{
	color: white;
	text-decoration: none;
	margin-right: 12px;
}
.icon i:hover {
  transform: scale(1.3);
}

.componente{
	margin-top: 5px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.visivel{
	align-items: center;
	text-align: center;
	border-top: 1px solid #e3e3e3;
	margin-bottom: 8px;
}

.hidden{
	display: none;
}
.componente-descricao{
	width: 90%;
	margin:0 auto;	
	text-align: justify;
	font-size: 16px;
	line-height: 30px;
}
.titulo{
	text-align: center;
	color: #416ae0;
}
.titulo-secundario{
	text-align: center;
}
.subtitulo{
	text-align: center;
	margin-right: 5px;
}
.corPrimaria{
	background-color: #416ae0;
	color: #e4f1fa;
}

input{
	width: 35px;
	height: 35px;
	background-color: #e4f1fa;
	border: 0px;
	border-radius: 50%;
}
input:hover{
	transform: scale(1.2);
}
/*rodape*/
footer{
	text-align: center;
}