body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    border-top: 10px solid #5d5c5e;
    color: #535252;
}
section.blocos{
    width: 960px;
    margin: 0 auto;
    padding-bottom: 20px;
}
section.alinha-centro{
    width: 890px;
    margin: 0 auto;
    padding-bottom: 50px;
    background-image: url("../images/sombra_pagina.png");
    background-repeat: no-repeat;
    background-position: bottom;
}
.clear:after{
    display: block;
    content: " ";
    clear: both;
}
div.titulo-cabecalho-pagina h3{
    background-color: #5d5c5e;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 5px;
    padding-top: 5px;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 50px;
    font-size: 17px;
}
div#aviso_navegador {
    background-color: #ffff66;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}
body > header {
    height: 240px;
    background-image: url('../images/logotipo2.png');
    background-position: 20%;
    background-repeat: no-repeat;
    padding: 20px 0px 20px 0px;
}
body > header h1 {
    display: none;
}
#resultado-exames {
  float: right;
  margin: 8rem 12rem 0px 0px;
  padding: 15px;
  border-radius: 15px;
  border: 2px solid #5d5c5e;
  background-color: #f18200;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 4px 4px 5px 0px rgba(125, 125, 125, 0.75);
  transition-property: background-color, border-color;
  transition-delay: 0s;
  transition-duration: 0.5s;
}
#resultado-exames:hover {
  background-color: #5d5c5e;
  border-color: #ff7c00;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modal label {
  color: #535252 !important;
}
.modal-content {
  position: relative;
  background-color: #f5f5f5;
  margin: auto;
  padding: 10px 20px 20px 20px;
  border: 1px solid #888;
  width: 60%;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  top: 20%;
  border-radius: 20px;
  border: 2px solid #ff7c00;
}
.modal-content form {
  text-align: center;
}
.modal-content form .campo-login {
  width: 100%;
}
.modal-content form .campo-senha {
  width: 100%;
}
.modal-content form .campo-login {
  margin-left: 0px;
}
.modal-content form input {
  vertical-align: middle;
}
.modal-header {
  text-align: center;
}
.modal-header h2 {
  color: #5d5c5e;
}
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:20%; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:20%; opacity:1}
}
.close {
  color: #5d5c5e;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition-property: color;
  transition-delay: 0s;
  transition-duration: 0.3s;
}
.close:hover,
.close:focus {
  color: #ff7c00;
  text-decoration: none;
  cursor: pointer;
}
body > nav {
    margin: 0 auto;
    width: 776px;
    position: relative;
    top: 28px;
    margin-top: -28px;
    z-index: 1000;
    font-size: 0; /* fix: espaço estranho no inline-block*/
    border-bottom: 3px solid #5d5c5e;
    background: #5d5c5e; /* Old browsers */
    background: -moz-linear-gradient(top,  #5d5c5e 0%, #5d5c5e 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#fefefe)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #5d5c5e 0%,#5d5c5e 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #5d5c5e 0%,#5d5c5e 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #5d5c5e 0%,#5d5c5e 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #5d5c5e 0%,#5d5c5e 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#fefefe',GradientType=0 ); /* IE6-9 */
}
body > nav a {
    display: inline-block;
    width: 128.5px;
    height: 69px;
    line-height: 69px; /* texto centralizado na vertical */
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #ffff;
    text-decoration: none;
    margin-right: 1px;
    background: linear-gradient(180deg, rgba(166,51,84,1) 0%, rgba(246,138,52,1) 100%);
}
/* remove a margem do último botão do menu */
body > nav a:last-child {
    margin-right: 0;
}
/* */
body > nav a:hover {
  color: #616161;
  background: #fdfdfd; /* Old browsers */
  background: -moz-linear-gradient(top, #fdfdfd 25%, #e3e3e3 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,#ff7c00), color-stop(100%,#ae1b49)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* IE10+ */
  background: linear-gradient(to bottom, #fdfdfd 25%,#e3e3e3 100%); /* W3C */
}
/* body > nav a:hover::before {
    content: '';
    position: absolute;
    display: block;
    height: 10px;
    width: 128.5px;
    background-color: #ff7b00;
} */
section#destaque {
    background-image: url('../images/textura_cabecalho.png');
    background-repeat: repeat;
}
div#slider {
    position: relative;
    font-size: 0; /* fix: margem indesejada abaixo do img */
    width: 906px;
    height: 366px;
    overflow: hidden;
}
div#slider img {
    position: absolute;
    z-index: 1;
    width: 906px;
    height: 350px;
    display: none;
    left: 0;
    margin-left: 0px;
}
section#destaque nav {
    position: unset;
    bottom: 0;
    z-index: 1000;
    font-size: 0; /* fix: espaço estranho no inline-block*/
}
section#destaque nav a {
    display: inline-block;
    width: 318px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-top: 3px solid #5d5c5e;
    border-bottom: 3px solid #5d5c5e;
    color: #fff;
    background: linear-gradient(120deg, rgba(166,51,84,1) 0%, rgba(246,138,52,1) 100%);

}
section#destaque nav a:hover {
  color: #616161;
  background: #fdfdfd; /* Old browsers */
  background: -moz-linear-gradient(top, #fdfdfd 25%, #e3e3e3 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%,#ff7c00), color-stop(100%,#ae1b49)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fdfdfd 25%,#e3e3e3 100%); /* IE10+ */
  background: linear-gradient(to bottom, #fdfdfd 25%,#e3e3e3 100%); /* W3C */
}
section#destaque nav a:first-child, section#destaque nav a:nth-child(2) {
    margin-right: 3px;
}
body > footer {
    background-image: url('../images/logo_rodape03.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #151515;
}
body > footer h2 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding-top: 40px;
    opacity: 0.6;
}
.content-wrap {
    position: relative;
    margin: 0 auto;
    width: 960px;
}
html {
    position: relative;
    min-height: 100%;
}
body{
    /* margin-bottom: 100px; */
}
body > footer {
    /* position: absolute; */
    left: 0;
    bottom: 0;
    width: 100%;
    height: 240px;
    background-color: #606062;
    margin-top: 15px;
    border-top: 4px solid #ffcb00;
}
button{
    border-radius: 5px;
    color: #38383a;
    border: 1px solid #fbfbfb;
    background-color: #ededed;
    text-transform: uppercase;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
    z-index: 10000;
}
#overlay p{
      color: #fff;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase;
      margin-top: 10px;
}
#overlay img {
  margin: auto;
  border: 2px solid #053340;
  border-radius: 10px;
}
#overlay .btn-fechar {
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  align-items: center;
  border: solid 2px #1a1818;
}
#overlay span {
  font-weight: 600;
  font-size: 20px;
  margin: auto;
}
#mensagem-covid {
  border-radius: 5px;
  border: 2px solid #fb8924;
  width: 50%;
  margin: 10px auto 20px auto;
  padding: 0px 15px 5px 15px;
  box-shadow: 5px 5px 10px 0px rgba(161,161,161,1);
}
#mensagem-covid h3 {
  text-align: center;
  font-size: 20px;
  margin: 10px 0px 0px 0px;
}
#mensagem-covid p {
  font-size: 14px;
  text-align: justify;
  text-indent: 15px;
  margin-bottom: 10px;
}
#mensagem-covid ul {
  margin: 0px;
}
#mensagem-covid li {
  font-weight: bold;
  font-size: 14px;
}
