body {
  margin:0 ;
  padding: 0;
}

header {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  background: rgb(135,188,156);
  background: -moz-linear-gradient(45deg, rgba(135,188,156,1) 0%, rgba(229,255,239,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(135,188,156,1) 0%, rgba(229,255,239,1) 100%);
  background: linear-gradient(45deg, rgba(135,188,156,1) 0%, rgba(229,255,239,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#87bc9c",endColorstr="#e5ffef",GradientType=1);
  border-bottom: 2px solid #e5e5e5;
}


#miolo {
  width: 100%;
  min-height: calc(100vh - 330px);
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center
}

#miolo .container {
  max-width: 800px;
}

#miolo p {
  color: #606060;
  font-size: 16px;
  margin-bottom: 20px;
}

#miolo h1 {
  font-size: 36px;
  margin: 0;
  margin-bottom: 30px;
}

#miolo h2 {
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

#miolo h3 {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

#miolo h4 {
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
}

.box {
  background-color: rgb(192,206,222);
  padding: 30px 10px;
  border-radius: 15px;
  margin-top: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.4);
}

.box input[type=text] {
  /* width: 200px; */
  min-width: 150px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.box h2 {
  margin-bottom: 20px !important;
}

.box p {
  margin-top: 20px;
  margin-bottom: 15px !important;
}

.box label {
  font-size: 13px;
  margin-left: 5px;
  margin-right: 5px;
}

.box textarea {
  width: 100%;
}

.msgErro {
  width: 100%;
  margin-top: 5px;
  color: red;
}

.btn-enviar {
  font-size: 14px;
  color: white !important;
  border:0;
  border-radius: 8px;
  background: #28a745;
  cursor: pointer;
  padding: 3px 15px;
  transition: all .3s ease-in; 
}

.btn-enviar:hover {
  color: #7dae2f !important;
  background-color: #132b35;
}

.btn-pesquisa {
  font-size: 14px;
  color: white !important;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all .3s ease-in;
}

.btn-pesquisa:hover {
  color: #7dae2f !important;
  background-color: #132b35;
}

.btn-formulario {
  background: #28a745;
  margin-top: 20px;
}

#resultados {
  margin-top: 20px;
}

.colunaResultado {
  padding: 0;
  margin-bottom: 15px;
}

.boxResultado {
  width: 100%;
  background-color: #ffffff;
  padding: 20px 10px;
  margin: 0;
  border-radius: 15px;
  min-height: 300px;
  box-shadow: 0px 2px 15px rgba(0,0,0,0.5);
}

.boxResultado p {
  font-size: 14px !important;
  text-align: center;
  margin-bottom: 10px;
}

.boxSubResultado {
  padding: 10px 0px;
  margin: 0;
}

.boxSubResultado p {
  font-size: 13px !important;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}

footer {
  width: 100%;
  height: 80px;
  background: rgb(7,33,74);
  background: -moz-linear-gradient(90deg, rgba(7,33,74,1) 0%, rgba(26,77,158,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(7,33,74,1) 0%, rgba(26,77,158,1) 100%);
  background: linear-gradient(90deg, rgba(7,33,74,1) 0%, rgba(26,77,158,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#07214a",endColorstr="#1a4d9e",GradientType=1);
}

