body{
    background-color: rgba(7, 80, 163, 0.904);
    margin: 0px;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;            
  }
  
  body::-webkit-scrollbar-track {
    background: rgb(0, 0, 0);        
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: rgb(140, 140, 219);    
    border-radius: 20px; 
  }

header{
    background-color: rgba(162, 219, 255, 0.719);
    margin: auto;
    padding: 0;
}

.caixa {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    max-width: 1440px;
    margin: 0 auto;
}

.caixa .logo {
    width: 100px;
    background-color: rgb(181, 188, 189);
    border-radius: 50%;
}

.caixa .menu {
    display: flex;
    align-items: center;
    height: 100%;
    text-transform: uppercase;
}

.caixa nav li a {
    font-weight: bold;
    color: #000000;
    font-size: 25px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.2s;
}

.caixa nav li a:hover {
    background-color: #4280cd;
    color: rgb(230, 230, 230);
}

.informaçao{
    padding: 40px;
    margin: 70px;
    display: flex;
    background-color: #bfe6ff;
    border-radius: 40px;
    box-shadow: 10px 10px  rgb(0, 0, 0);
}
.informaçao .surgimento{
    display:inline-block;
    padding: 20px;
}

.informaçao .sobreT{
    display:inline-block;
    padding: 20px;
}

.informaçao img{
    padding: 40px;
    max-width: 400px;
    display: flex;
    border-radius: 100px;
    max-height: 300px;
    margin: center;
}
.titulo{
    align-items: normal;
}

.informaçao h1 {
    font-weight: bold;
    font-size: 50px;
    padding-bottom: 20px;
    
}
.informaçao p{
    padding-bottom: 20px;
    display: flex;
    font-size: 20px;
}

.perguntasFrequentes{
    justify-content: center;
    border-radius: 35px;
    padding: 40px;
    margin-left: 200px;
    margin-right: 200px;
    background-color: rgb(37, 63, 134);
}

.perguntasFrequentes h1{
    font-size: 40px;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.perg{
    padding-top: 10px ;
    font-size: 30px;
    font-weight: bolder;
}

.resposta{
    font-style: italic;
    font-size: 20px;
    font-weight: lighter;
    color: rgb(0, 0, 0);
}

footer{
    display: flex;
    justify-content: center;
}

form {
    background-color: white;
	margin: 70px;
    padding: 10px;
    border-radius: 20px;
    justify-content: center;
    width: 1000px;
    box-shadow: 10px 10px  rgb(0, 0, 0);
}

form input {
    width: 95%;
}

form label, form legend {
	display:block;
    font-weight: bold;
	font-size: 20px;
	margin: 0 0 10px;
}
form fieldset{
    display: inline;
    margin: 0;
    padding: 0;
}

form fieldset label{
    font-weight: normal;
    width: 500px;
}

.inputPadrao {
	display: block;
	margin: 0 0 20px;
	padding-top: 10px;
    padding-left: 0;
	width: 50%;
}
.comoPrefereContato{
    cursor: pointer;
}

.checkbox {
	margin: 20px 0;
}

.enviar{
    width: 100%;
    padding: 10px 0;
    background-color: rgb(194, 194, 194);
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
}

.enviar:hover{
    background-color: rgb(82, 232, 255);
    transition: 1s all;
    transform: scale(1.03);
}