*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

p{
  font-family: 'Noticia Text', serif;
  margin: 10px 0;
}

/** Boot CSS **/
html, body{
  height: 100%;
}

body{
  overflow-x: hidden;
}

.center{
  max-width: 1280px;
  padding: 0.2%;
  margin: 0 auto;
}

.p0{
  padding: 0;
}

.pr-0{
  padding-right: 0;
}

.al-c{
  text-align: center;
}

img{
  width: 100%;
  max-width: 400px;
}

input{
  border: 0;
  border-radius: 5px;
}

textarea{   
  border: 0;
  border-radius: 5px;
}

/** Estilização do site **/
/** Header **/
header a{
  text-decoration: none;
}

header .logo{
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
}

header .logo img{
  height: 120px;
  width: auto;
}

header nav ul{
  position: relative;
  top: 5px;
  list-style-type: none;
}

header nav li{
  text-transform: uppercase;
  display: inline-block;  
  padding: 0 15px;
}

nav a{
  text-decoration: none;
  transition: 0.5s;
  color: #252527;
}

nav a:hover{
  color: #2A97D2;
  text-decoration: underline;
  transition: 0.5s;
}

/** Dados **/
.dados{
  padding: 40px 0;
}

.blue-card{
  background: #1673d1;
  padding: 10px 20px;
  margin: 0 auto 20px;
  color: #fff;
  max-width: 600px;
}

form{
  width: 100%;
}

.form-dados-inputs{
  display: flex;
}

.card{
  background: #D3D4D6;
  padding: 20px;
  border-radius: 10px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.card-dados{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.card-dados .texts{
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
}

.card-dados .values{
  display: flex;
  flex-direction: column;
  min-height: 150px;
  justify-content: space-between;
}

.card-enderecos{
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #252527;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

/** Footer **/
footer {
  background: #252527;
  padding: 20px 0;
}

footer img{
  height: 80px;
  width: auto;
}

footer p{
  color: white;
  text-align: center;
  padding: 10px 0;
  font-size: 0.8em;
}

footer.fixed{
  position: fixed;
  bottom: 0;
  width: 100%;
}

footer h2{
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

footer a{
  background: #F58220;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 2em;
  text-align: center;
  padding: 5px 0;
  margin: 10px;
  transition: 0.5s;
}

footer a:hover{
  background: #00145B;
  transition: 0.5s;
}

footer i{
  width: 50px;
}

/** Form **/
form{
  margin-top: 40px;
}

.group-form{
  margin: 10px 0;
}

.email{
  padding-right: 5px;
}

.contato{
  padding-left: 5px;
}

.obs{
  margin-top: 20px;
  padding: 0;
}

label{
  display: block;
  margin: 0;
}

input, textarea, select {
  font-size: 1em;
  border: 1px solid #00145B;
  padding: 5px;
  border-radius: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea,
select{
  min-width: 600px;
  height: 35px;
}

input[type=radio]{
  margin-top: 15px;
}

textarea{
  resize: vertical;  
  height: 150px;
  width: 100%;
}

.botao{
  position: relative;
  height: 50px;
  margin: 15px auto;
  line-height: 50px;
  text-align: center;
}

input[type=submit]{
  background: #F57D16;
  color: white;
  cursor: pointer;  
  transition: 1s;  
  margin: 10px 0;
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  font-weight: bold;
}

input[type=submit]:hover{
  background: #00145B;
  transition: 1s;
}

.botoes-cancelamento {
  display: flex;
  justify-content: space-evenly;
}

input.input-cancelamento {
  position: relative;
  display: inline-block;
  min-width: 200px;
  transform: none;
  left: auto;
  top: auto;
}

/** Erro 404 **/
section.erro-404 h1{
  color: #E6502B;
}

section.erro-404 p1, section.erro-404 a{
  color: #00ACC1;
}

section.erro-404 h1, section.erro-404 p{
  text-align: center;
  width: 100%;
}

.wrapper-404{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.bordless{
  padding: 0 15px;
}

.mensagem{
  margin: auto;
  text-align: center;
  max-width: 400px;
  color: #fff;
  padding: 8px;
  border-radius: 15px;
}

.sucesso{
  background-color: #1eb34b;
}

.erro{
  background-color: #b42b22;
}

/** Scroll Bar **/
::-webkit-scrollbar-track {
  background-color: #00145B;
}

::-webkit-scrollbar {
  width: 12px;
  -webkit-border-radius: 16px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #004A94; 
}

/** Responsividade **/
@media screen and (max-width: 1000px){
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=submit],
  select{
    min-width: 300px;
  }
}

@media screen and (max-width: 768px){
  .center{
    padding: 20px;
  }

  .dados{
    padding: 0;
  }

  .card{
    padding: 20px;
    margin-bottom: 10px;
  }

  .obs{
    margin-top: 10px;
  }

  .texto{
    margin-top: 0;
  }
}

@media screen and (max-width: 600px){
  .form-dados-inputs{
    flex-direction: column;
  }

  .card{
    margin-right: 0;
  }

  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=submit],
  select{
    width: 100%;
  }
}