@charset "utf-8";
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/materialicons/v140/flUhRq6tzZclQEJ-Vdg-IuiaDsNZ.ttf) format('truetype');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}
/*==============================================================
ESTRUTURA BASE
==============================================================*/
* {
  outline-style: none;
  outline: none;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0px;
  color: #01424d;
  padding: 0px;
}
body {
  background-color: #8e0c07;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
.largura_padrao {
  max-width: 1024px;
  margin: 0 auto;
}
a {
  text-decoration: none;
}
p {
  margin: 5px 0;
}
.miolo_principal {
  background-color: #FFFFFF;
  flex: auto;
}
.conteudo_titulo {
  font-size: 26px;
  font-weight: bold;
  font-style: italic;
  color: #9ba4ad;
  margin: 10px 0px 0px 5px;
  height: 40px;
  padding-left: 85px;
  background-image: url("../imagens/img_titulo_vermelho-b.png");
  background-position: left;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
.conteudo {
  padding: 0px 10px 30px 90px;
  margin: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  height: auto;
}
.cabecalho {
  background-color: #f5f5f5;
  border-bottom: solid 1px #c0ccd7;
}
.cabecalho_conteudo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
}
/*==============================================================
REDES SOCIAIS
==============================================================*/
.topo_redes_sociais {
  background-color: #000000;
  margin-bottom: 1px;
}
.redes_sociais_icones {
  padding: 5px 0 5px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: stretch;
  align-items: center;
  cursor: pointer;
}
/*==============================================================
MÓDULO BOTÕES
==============================================================*/
.grupo-btn {
  padding: 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.btn,
a.btn {
  font-size: 16px;
  color: #5b617e;
  text-decoration: none;
  background-color: #e9eaef;
  border: solid 1px;
  border-color: #bdc0cf;
  border-radius: 3px;
  height: 40px;
  padding: 0 10px;
  margin: 3px;
  cursor: pointer;
  transition-duration: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:hover,
a.btn:hover {
  border-color: #9fa4b9;
  background-color: #dadce4;
  box-shadow: 0px 0px 5px 0px rgba(96, 96, 96, 0.5);
}
.btn-azul,
a.btn-azul {
  color: #ffffff;
  border-color: #007BFF;
  background-color: #007BFF;
}
.btn-azul:hover,
a.btn-azul:hover {
  border-color: #0062cc;
  background-color: #006fe6;
}
/*==============================================================
BLOCO TAB ABAS
==============================================================*/
.tab-principal-abas {
  width: 650px;
  margin: 0 auto;
}
.tab-abas {
  display: flex;
}
.tab-abas .aba {
  color: #7c8897;
  font-size: 16px;
  border-bottom: solid 1px transparent;
  padding: 7px 10px;
  height: 44px;
  background-color: #DEE1E5;
  cursor: pointer;
  display: flex;
  align-content: stretch;
  align-items: center;
}
.tab-abas .aba ~ .aba {
  margin-left: 1px;
}
.tab-abas .aba:not(.aba-ativa):hover {
  color: #FFFFFF;
  background-color: #b00600;
}
.tab-abas .aba-ativa {
  color: #FFFFFF;
  cursor: default;
  background-color: #b00600;
  margin-bottom: -1px;
}
.tab-conteudo {
  color: #000000;
  font-size: 16px;
  width: 100%;
  padding: 10px;
  border-top: solid 3px #b00600;
}
.tab-conteudo ~ .tab-conteudo {
  display: none;
}
.tab-conteudo .titulo {
  font-weight: bold;
}
.tab-conteudo .texto {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .tab-principal-abas {
    width: 100%;
  }
}
/*==============================================================
MÓDULO FORMULÁRIO
==============================================================*/
.form-principal {
  margin: auto;
}
label {
  color: #8C9BAD;
  position: relative;
  font-size: 13px;
  bottom: -10px;
  background-color: #FFFFFF;
  padding: 0 6px 0 4px;
  margin-top: -10px;
  margin-left: 5px;
  border-radius: 4px 4px 0 0;
}
.label-ativo {
  color: #5D79FF;
}
.form-titulo {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
  margin: 0 0 10px 3px;
  border-bottom: solid 1px #BCC0D2;
}
.form-linha {
  display: flex;
  flex-wrap: wrap;
}
.form-grupo-input {
  position: relative;
  width: 100%;
  margin-top: -4px;
  padding: 0 3px 0 3px;
}
.form-input {
  font-size: 17px;
  width: 100%;
  padding-left: 12px;
  display: flex;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  min-height: 40px;
  resize: vertical;
}
.form-input:focus {
  border-color: #7A91FF;
  box-shadow: 0 0 5px #859AFF;
}
.form-info-rodape {
  color: #7c8ca2;
  font-size: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.form-info-rodape *:hover {
  color: #0062cc;
}
.preenchimento-obrigatorio {
  color: #FF0000;
  font-weight: bold;
}
.destaca-input-obrigatorio:focus {
  border: 2px solid #FF0000 !important;
}
/*==============================================================
MÓDULO TAMANHO DE COLUNAS
==============================================================*/
.col-md-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}
.col-md-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}
.col-md-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}
.col-md-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.col-md-5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}
.col-md-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.col-md-7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}
.col-md-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}
.col-md-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}
.col-md-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}
.col-md-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}
.col-md-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (max-width: 990px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*==============================================================
BOX MIOLO PÁGINA INICIAL
==============================================================*/
.grupo-box-miolo {
  background-color: #FFFFFF;
  padding: 20px 0 20px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: normal;
}
a.box-miolo {
  color: #69747f;
  width: 240px;
  height: 310px;
  border: solid 1px #c0ccd7;
  background-color: #f5f5f5;
  padding: 5px 5px 10px 5px;
  margin: 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
}
a.box-miolo:hover {
  border: solid 1px #EB5E5A;
  box-shadow: 0px 0px 9px 0px rgba(151, 1, 34, 0.39);
}
.txt_a {
  font-size: 16px;
  text-align: center;
  padding: 7px 0px;
  border-bottom: solid 1px #D5D4D4;
  margin-bottom: 4px;
}
.txt_b {
  font-size: 15px;
  font-weight: bold;
}
/*==============================================================
GRUPO BOX's DO RODAPÉ
==============================================================*/
.grupo-box-rodape {
  background-image: url("../imagens/fd-grupo-box-rodape-vermelho.png");
  background-position: center;
  background-repeat: repeat-y;
  background-color: #b00600;
}
.grupo-box-rodape_conteudo {
  display: flex;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}
a.box-rodape {
  color: #FFFFFF;
  width: 270px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}
a.box-rodape:hover {
  background-color: #790300;
}
.box-rodape_txt_a {
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 5px 0 6px 0;
  border-bottom: 1px dotted #FFFFFF;
  margin-bottom: 5px;
}
.box-rodape_txt_b {
  text-align: center;
  font-size: 16px;
}
.box-rodape_cor_a {
  background-color: #b00600;
}
.box-rodape_cor_b {
  background-color: #c82c25;
}
.box-rodape_cor_c {
  background-color: #c84d46;
}
.box-rodape_cor_d {
  background-color: #ff807b;
}
/*==============================================================
RODAPÉ
==============================================================*/
.grupo-rodape {
  background-color: #8e0c07;
  display: flex;
  flex-direction: column;
}
.rodape-enderecos {
  padding: 15px 0;
  color: #FFFFFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
}
.rodape-endereco_ma {
  text-align: right;
  padding: 15px;
  border-right: 1px solid #620400;
}
.rodape-endereco_rp {
  text-align: left;
  padding: 15px;
}
.copyright {
  color: #FFFFFF;
  font-size: 11px;
  padding: 10px 0;
  text-transform: uppercase;
  text-align: center;
  border-top: 1px solid #620400;
}
.assinatura_gruporh {
  font-size: 13px;
}
/*==============================================================
ASSINATURA
==============================================================*/
.container-assinatura {
  background-color: #000000;
}
.assinatura a {
  color: #8E9AA9;
  font-size: 10px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.assinatura img {
  width: auto;
  height: 30px;
}
.link-ativo {
  background-color: #000000;
  border-bottom: none !important;
  cursor: default;
}
@media screen and (max-width: 990px) {
  .redes_sociais_icones {
    padding-right: 10px;
  }
  .cabecalho_conteudo {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
  .logotipo {
    text-align: center;
  }
  .conteudo {
    padding: 10px 0px 10px 10px;
  }
  .grupo-box-miolo {
    flex-direction: column;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
  }
  a.box-miolo {
    margin-top: 15px;
    width: 260px;
  }
  .grupo-box-rodape_conteudo {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
  }
  a.box-rodape {
    margin: 0 auto;
    width: 100%;
  }
  .rodape-enderecos {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
  .rodape-endereco_ma {
    text-align: center;
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid #620400;
  }
  .rodape-endereco_rp {
    text-align: center;
    padding: 15px;
  }
  .assinatura {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
  }
  .assinatura div ~ div {
    margin-top: 15px;
  }
}
/*==============================================================
BLOCO MENU DE NAVEGAÇÃO
==============================================================*/
.nav-barra-navegacao {
  display: flex;
  flex-direction: column;
  z-index: 1100;
}
.barra-menu * {
  text-decoration: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-niv-1 {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.item-menu-niv-1 {
  position: relative;
}
.item-menu-niv-1 ~ .item-menu-niv-1 {
  border-left: solid 1px rgba(228, 228, 228, 0);
  margin-left: 5px;
}
.link-menu-niv-1,
.link-menu-niv-2 {
  height: 36px;
  padding: 0 4px;
  font-size: 13px;
  font-weight: 800;
  color: #40536D;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  border-bottom: solid 3px rgba(198, 10, 0, 0);
}
.link-menu-niv-1:hover,
.link-menu-niv-2:hover {
  border-bottom: solid 3px #c60a00;
}
.menu-niv-2 {
  min-width: 200px;
  position: absolute;
  border: solid 1px #E3E3E3;
  background-color: #FFFFFF;
  flex-direction: column;
  display: none;
}
.item-menu-niv-1:hover .menu-niv-2 {
  display: flex;
}
.item-menu-niv-2 ~ .item-menu-niv-2 {
  border-top: solid 1px #E3E3E3;
}
.barra-mobile,
.icon-ocultar-menu {
  display: none;
}
@media screen and (max-width: 990px) {
  .barra-mobile {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: #c60a00;
  }
  .barra-mobile .material-icons {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: normal;
    cursor: pointer;
    margin: 8px 8px;
  }
  .barra-menu {
    display: none;
  }
  .item-menu-niv-1 ~ .item-menu-niv-1 {
    border-left: none;
    border-top: solid 1px #E3E3E3;
  }
  .menu-niv-1 {
    border-bottom: solid 1px #E3E3E3;
    width: 100%;
    flex-direction: column;
  }
  .item-menu-niv-2 {
    border-top: solid 1px #E3E3E3;
  }
  .link-menu-niv-1,
  .link-menu-niv-2 {
    font-size: 20px;
  }
  .link-menu-niv-2 {
    padding-left: 35px;
  }
  .menu-niv-2 {
    position: static;
    border: none;
  }
}
