@charset "utf-8";
/* CSS Document */

/*@import url("Fonts.css");*/

@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css?family=Titillium+Web");

body {
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  background-color: var(--bgSite);
  color: var(--txtSite);
}
body,
select,
textarea,
option,
input,
button,
.ui-widget,
.ui-widget * {
  font-family: "Montserrat", "Titillium Web", sans-serif !important;
}
input[type="text"],
input[type="number"],
select,
textarea {
  border-radius: 8px !important;
  /* width: 100%; */
  height: 25px !important;
  padding: 2px !important;
  background: #ffffff !important;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25) inset !important;
}
body {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.logo-svg * {
  fill: var(--bgSite);
}
.rodape .fill-branca,
.rodape .logo-svg * {
  fill: #fff;
}

a:link,
.link {
  color: var(--link);
  text-decoration: none;
}
a:visited {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  color: var(--linkHover);
  text-decoration: none;
}
a:active {
  color: var(--linkHover);
  text-decoration: none;
}

/* .infoTopo a:link {
  color: var(--primary) !important;
  text-decoration: none;
}
.infoTopo a:visited {
  color: var(--primary) !important;
  text-decoration: none;
}
.infoTopo a:hover {
  color: var(primaryHover) !important;
  text-decoration: none;
}
.infoTopo a:active {
  color: var(primaryHover) !important;
  text-decoration: none;
} */

hr {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  margin: 15px 0;
}
fieldset {
  border: none;
  border-radius: 3px;
  margin: 5px auto;
  /* background-image: url("../../assets/midia/green-bg.jpg"); */
  background-size: 100%;
  background-position: center;
  background-color: var(--light-bg);
  color: var(--light);
  margin: 5px auto;
  width: 90%;
}

fieldset legend {
  background-color: var(--corTema);
  color: var(--corTexto);
  border-radius: 5px;
  margin-top: 5px;
  padding: 5px 13px;
  text-transform: uppercase;
  text-align: left;
}
fieldset fieldset {
  color: var(--dark) !important;
  background-color: #fbfbfb;
  background-image: none;
}

fieldset fieldset .subLegenda,
.subFieldset {
  background-color: var(--corTema);
  color: var(--corTexto);
}
fieldset fieldset .subLegenda {
  border: none;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
fieldset button {
  background: var(--button-bg) !important;
  color: var(--button-txt) !important;
  padding: 12px 40px !important;
  border-radius: 9px !important;
  border: none !important;
  font-weight: bold;
}
fieldset button .ui-icon {
  filter: brightness(0);
}
button {
  transition: all 0.2s ease-in-out;
}
button:hover {
  scale: 1.05;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  background: var(--button-bg-hover) !important;
}
ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

.on-print {
  display: none;
}

* html .ui-autocomplete {
  height: 50%;
  width: 80%;
}

.margin0 {
  margin: 0;
}
.padding0 {
  padding: 0;
}

tr.pago {
  background-color: #b2ff91 !important;
}
tr.incompleto {
  color: #848484 !important;
}
tr.incompleto td {
  color: #848484 !important;
}

.timer-regressivo {
  display: flex;
  flex-direction: column;
  /* row-gap: 16px; */
  /* width: 100%; */
}
.timer-regressivo h2 {
  color: #ffffff;
  margin: 0;
}
.timer-regressivo .timer__number {
  font-size: 295%;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  color: #fff;
}
.timer-regressivo .timer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.timer-regressivo .timer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 8px; */
}
.timer-regressivo .timer > div span {
  color: #ffffff;
}
.timer-regressivo .timer > div:last-child .timer__number {
  color: var(--link);
}
.timer-regressivo .timer > div .timer__number {
  position: relative;
}
.timer-regressivo .timer > div .timer__number::before {
  content: ":";
}
.timer-regressivo .timer > div:first-of-type .timer__number::before {
  position: absolute;
  right: -17px;
}
.timer-regressivo .timer > div:not(:first-of-type) {
  margin-left: 20px;
}
.timer-regressivo .timer > div:not(:first-of-type) .timer__number::before {
  position: absolute;
  left: -17px;
}
.timer-regressivo .timer > div:nth-of-type(2) .timer__number::before {
  display: none;
}

.fontPEQ {
  font-size: 75% !important;
}
.fontPEQ-MED {
  font-size: 90% !important;
}
.fontMED {
  font-size: 110% !important;
}
.fontGRD {
  font-size: 130% !important;
}

.txtcenter {
  text-align: center;
}
.txtleft {
  text-align: left;
}
.txtright {
  text-align: right;
}
.txtjustify {
  text-align: justify;
}

.negrito {
  font-weight: bold !important;
}

.cotTxtA {
  color: var(--corTexto);
}
.corBranca {
  color: #ffffff;
}

.msgAtencao {
  border: 1px solid #ccc;
  text-transform: uppercase;
  background-color: #fffee4;
  margin-top: 5px;
  padding: 5px 13px;
}

.oculto {
  display: none !important;
}
.marginTop {
  margin-top: 10px !important;
}
.marginTop-20 {
  margin-top: 20px !important;
}
.marginTop-30 {
  margin-top: 30px !important;
}
.marginTop-50 {
  margin-top: 50px !important;
}

.fixRightTop {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
.sombraBox {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.bordaVE {
  border-left: 1px solid var(--corTema);
}
.marcado {
  background-color: #cfc !important;
  font-weight: bold;
}

.maiuscula {
  text-transform: uppercase;
}
.minuscula {
  text-transform: lowercase;
}
.left {
  float: left;
}
.right {
  float: right;
}
.infoBalao {
  position: absolute;
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.6);
  padding: 5px;
}

.bt,
.cursor,
button {
  cursor: pointer;
}

.corpo {
  margin: 20px 10px;
  padding: 0;
}
.menuUser {
  background: none !important;
  color: #000;
}
.formulario {
  margin: 1px auto;
}
.formulario legend {
  text-transform: uppercase;
}

.Fconcluido .dado {
  font-size: 150%;
  font-weight: normal;
  border-right: none;
}
.Fconcluido .dadoV {
  font-size: 150%;
  font-weight: normal;
  border-right: none;
}

.dado,
.txt-dado {
  color: var(--txt-dado) !important;
}
.txt-destaque {
  color: var(--txt-destaque) !important;
}

.dadoV {
  color: #ff0000 !important;
}
.dadoC {
  color: #545454 !important;
}

span .dado,
span .dadoV {
  font-weight: bold;
}

.semdado,
.dadoOFF {
  color: #999999 !important;
}
.dadoHora {
  color: #5d5d5d !important;
}
.dadoHora:hover {
  color: #000099 !important;
}

.dinheiro {
  color: #ff0000;
}

.desativado {
  color: #b6b4b2;
  background-color: #e9e9e9;
}

.obrigatorio {
  color: #f00;
}

.info {
  color: #999999;
  font-size: 85%;
}
.infoV {
  color: #666666;
  font-size: 85%;
}

.statusIMG {
  height: 30px;
}

.statusInscricoes {
  padding: 4px;
  border-radius: 3px;
  border: 1px solid #ccc;
}
.statusInscricoesON {
  background-color: #e1fde0;
}
.statusInscricoesOFF {
  background-color: #fde9e0;
}
.infoD {
  border-radius: 5px;
  padding: 2px 7px;
  background-color: #ebf8fc;
  border: 1px solid #d5d5d5;
  margin: 2px 0;
  color: #000;
}

.alerta {
  color: #f00 !important;
  background-color: #ffff99;
  padding: 1px 3px;
  border: 1px dotted #ccc;
  border-radius: 5px;
}

.msgAlerta,
.dadosSalvos {
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
}

.dadosSalvos {
  background-color: #b0f9b0;
  border: 1px solid #d5d5d5;
  font-size: 120%;
}
.g-recaptcha {
  width: 300px;
  margin: 0.5rem auto;
}
.msgAlerta {
  background-color: #fff9b1;
  border: 1px solid #ff0700;
  font-size: 100%;
  color: #333;
}

.inativoAlerta {
  background-color: #ff0700;
  border: 3px solid #fff;
  font-size: 100%;
  color: #fff;
  border-radius: 5px;
  padding: 0 5px;
  font-weight: bold;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
}
#container_payment {
  font-size: 1rem;
}
#container_payment a {
  padding: 10px;
  font-size: 1.3rem;
  margin: 25px;
}
.txtSombra {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.menu button {
  margin: 2px 0;
}
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu ul li {
  list-style: none;
  float: left;
  margin: 2px;
  padding: 0;
}
.bordaredonda {
  border-radius: 5px;
}
.submenu {
  z-index: 99;
  margin: 0;
  padding: 10px;
  position: absolute;
  background-color: #fff5c1;
  border-radius: 5px;
  border: 1px solid #999;
}
.submenu button {
  box-shadow: 1px 2px 1px -1px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.submenu ul li {
  list-style: none;
  margin: -3px 0;
  padding: 0;
  float: none;
  display: grid;
  text-align: left;
}
.selectMultiplo {
  width: 200px;
}
.selectMultiplo select {
  z-index: 99;

  padding: 10px;
  position: absolute;
  background-color: #fff5c1;
  border-radius: 5px;
  border: 1px solid #999;
}
.OutrosItens {
}
.tags {
  background-color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin: 2px;
  padding: 2px;
}
.borda {
  border: 1px solid #ccc;
}
.bordaCampo {
  border: none;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  border-radius: 3px;
}
.marginCampo {
  margin: 5px 10px;
}
.paddingCampo {
  padding: 3px 10px;
}
.largura100 {
  width: 100%;
}
.larguraMED {
  width: 40%;
}
.inline-block {
  display: inline-block;
}
.campoL {
  width: 100%;
  padding: 5px 0;
}
.campoL:focus {
  background-color: #ffc;
}
.campoBG {
  background-color: #fff;
  color: var(--cor-campo);
}

.campoHoras {
  /*width:3rem;*/
}
.fundoBranco {
  background-color: #fff !important;
}

.autocomplete {
  padding: 2px 7px;
  background-color: transparent;
  margin: 2px 0;
  border: none !important;
}
.autocomplete li {
  padding: 2px 7px;
  margin: 2px !important;
  background-color: #ebf8fc;
  border-radius: 5px;
  box-shadow: 1px 0px 2px 1px rgba(0, 0, 0, 0.2);
  font-size: 75%;
}

.ui-autocomplete {
  max-height: 50%;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 80%;
  background-color: #fff;
  box-shadow: 1px 1px 3px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.img_invertida img {
  filter: invert(1);
}

.topo {
  background: url("../../assets/midia/hero-background.jpg");
  background-position: center;
  background-size: 100%;
  background-color: var(--dark);
  color: var(--corTexto);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.topo .logo img {
  height: 60px;
}
.topo .logo-corrida-reis img {
  height: 150px;
}
.topo .bg {
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.topo .APP-titulo {
  font-size: 180%;
  font-weight: bold;
}
.topo .APP-subtitulo {
  font-size: 160%;
}
.topo .dado {
  color: var(--corTexto) !important;
}

.valor {
  color: #f00;
}
.listaSimples {
  list-style: none;
  padding: 0;
  margin: 0;
}
.listaSimples li {
  padding: 0;
  margin: 2px 0;
}

.listaSimples li:hover {
  background-color: #ffc;
  border-radius: 5px;
}

.listaFilhos {
  margin: 0;
  padding: 0;
}

.listaFilhos li {
  margin: 5px;
  padding: 0 0 0 5px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  background-color: #e7f3ff;
}

.listaFilhos .listaFilhos li {
  margin: 5px 5px;
  padding: 2px;
  display: inline-block;
  border: 1px dotted #e8e8e8;
  background-color: #fff;
}

.acoesBT {
  width: 70px;
}

.ListaAcoes {
  font-size: 80%;
  padding: 0;
  margin: 0;
}
.ListaAcoes li {
  padding: 0.1rem 0;
}

.listaUser {
  padding: 0;
  margin: 0.5rem;
}
.listaUser li {
  display: inline-block;
  margin: 0.3rem;
}

.lista_left {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

.resumo {
  display: none;
}
.tabelaLista {
  background-color: #ccc;
}
.tabelaLista thead th,
.thead {
  background-color: #eeeeee;
  font-weight: bold;
  padding: 2px 6px;
  text-align: center;
}
.tabelaLista tbody td {
  padding: 2px 6px;
  /*width:200px;*/
}
.tabelaLista tbody tr {
  background-color: transparent;
}

.tabelaLista .tituloBg,
.tabelaLista .tituloBg tr:hover {
  background-color: #ff9 !important;
}

.tabelaLista tbody tr:nth-child(even),
.linhasAltCor:nth-child(even) {
  background-color: #eef3f9;
}
.tabelaLista tbody tr:nth-child(odd),
.linhasAltCor:nth-child(odd) {
  background-color: #ffffff;
}

.tabelaLista tbody tr:hover {
  background-color: #ffff00;
}

.tabelaLista .Baixando {
  background-color: #ffff00 !important;
}
.tabelaLista .Entregue {
  background-color: #cfc !important;
}

.tabelaLista tfoot td {
  background-color: #eeeeee;
  padding: 2px 6px;
}
.tabelaLista .tabelaSeparador {
  background-color: #fff;
}
.tabelaLista .destaqueBG {
  background-color: #ffff00 !important;
}
#PeriodoMeses .tabelaLista thead th {
  text-align: center;
}

.ultimoMes {
  background-color: #ff0000;
  color: #ffffff;
}
.PenultimoMes {
  background-color: #f0ff00;
}

.listaH {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-weight: normal;
}
.listaH li {
  float: left;
  list-style: none;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #999;
}

.infoTopo {
  display: inline-flex;
  flex-wrap: wrap;
  padding: 0;
  font-weight: normal;
  margin: 0 auto;
}

.infoTopo li {
  list-style: none;
  margin: 1px;
  padding-left: 3px;
  border-left: 1px solid #999;
}

.infoTopo .separador {
  margin-left: 5px;
  border-left: 1px solid #999;
  padding-left: 6px;
}

.BtSair {
  color: #f23535 !important;
}
.pagina {
  border: none;
  border-radius: 3px;
  margin: 5px auto;
  background-color: var(--corTema);
  margin: 2px;
}
.pagina legend {
  background-color: var(--corTema);
  border-radius: 3px;
  font-weight: bold;
  margin-top: 5px;
  padding: 1px 13px;
  text-transform: uppercase;
}

.contator span {
  font-size: 130%;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.1);
}
.areaA {
  background-color: var(--dark);
  margin: 10px 0;
  padding: 10px;
}

.areaA fieldset {
  display: inline-block;
  background-color: var(--gray-dark);
  border-radius: 10px;
  box-shadow: 1px 2px 3px 0px rgb(0 0 0 / 50%);
}
.areaA fieldset fieldset {
  background-color: var(--white);
  width: -webkit-fill-available;
}

.areaA-titulo {
  background-color: var(--titulo-bg);
  padding: 6px;
  color: var(--corTexto);
  font-size: 230%;
  font-weight: bold;
}

.areaB-titulo {
  background-color: var(--titulo-bg);
  padding: 5px;
  border-radius: 10px;
  color: var(--titulo-txt);
  font-size: 160%;
  font-weight: bold;
  margin: 0;
}

.blocoInsc-a {
  background-color: #fff5c2 !important;
  opacity: 0.8;
  filter: alpha(opacity=80);
  display: none !important;
}
.inscricoes-a {
  font-size: 150%;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0;
  color: #7f7f7f;
}

.blocoInsc-c {
  border: 2px solid #ccc;
  font-size: 130%;
}
.blocoInsc-t,
.blocoInsc-encerradas {
  background-color: #ccc !important;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.inscricoes-t {
  font-size: 120%;
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px 0;
}

.legenda {
  background-color: var(--corTema);
  border-radius: 5px;
}
.legenda li {
  border: none;
  border-radius: 5px;
  display: inline-block;
  margin: 1px;
  text-align: center;
  padding: 2px;
  font-size: 80%;
  min-width: 50px;
}
.numPeito {
  font-size: 130%;
  font-weight: bold;
  background-color: #f9ff00;
  border: 1px solid #fff;
  color: #000000;
  border-radius: 5px;
  padding: 0 10px;
}
.numPeitoLivre {
  background-color: #ffc;
}
.numPeitoLivreO {
  background-color: #cf0;
}
.numPeitoReservado {
  background-color: #f9ebeb;
  color: #ad8d8d;
}
.numPeitoOcupado {
  background-color: #00ff66;
}
.numPeitoOcupadoR {
  background-color: #00ffbb;
}
.paginacao {
  font-size: 80%;
}

.listaCenter li {
  border-radius: 5px;
  background-color: #fffee4;
  margin: 3px 9px;
  display: inline-block;
  padding: 5px;
}
.listaCenter li:hover {
  background-color: #fffddd;
  font-weight: bold;
  opacity: 1;
  filter: alpha(opacity=100);
}

.listaLinks {
}

.listaLinks li {
  border-radius: 5px;
  background-color: #f8f8f8;
  margin: 3px 9px;
  display: inline-block;
  padding: 5px;
}
.listaLinks li:hover {
  background-color: #fffddd;
  font-weight: bold;
}
.listaLinks li a {
  color: #0c4b9d;
}

.areaB {
  background-color: #f7f7f7;
  padding: 5px 10px;
}

.pagina fieldset {
  background-color: #ffffff;
}
.pagina fieldset .arquivoPI {
  background-color: #e8e8e8;
}

.bloco {
  border: none;
  border-radius: 5px;
  margin: 5px 5px 20px 5px;
  padding: 20px 0;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.6);
  background-color: #ffffff;
}

.bloco legend {
  background-color: var(--corTema);
  border: none;
  border-radius: 3px;
  padding: 5px;
  font-size: 120%;
  width: 70%;
  float: unset;
  text-align: center;
  margin: 1px auto;
  box-shadow: 0px 0px 8px -4px rgba(0, 0, 0, 0.5);
}

.rodape {
  color: var(--white);
  padding: 50px 0 30px 0;
  background-color: var(--light-bg);
  margin-top: 20px;
  text-align: center;
  /* box-shadow: 0px -1px 14px -7px rgb(0 0 0 / 60%); */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.rodape .logosmarcas {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}
.rodape .footer__item .logos {
  display: flex;
  align-items: center;
}

.rodape svg,
.rodape img {
  max-width: 100px;
  margin: 0 10px;
  max-height: 95px;
}

.rodape .logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.rodape .menu {
  margin: 1px auto;
  padding: 1px;
}
.rodape .menu li {
  list-style: none;
  float: left;
}
.rodape .menu img {
  width: auto;
  height: 65px;
}

.rodape .marcas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.rodape .marcas img {
  width: auto;
  height: 65px;
  border-left: 1px solid #d5d5d5;
  margin: 0 10px;
  padding: 0 5px;
}

.rodapePrivacidade {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 40px 5px;
  color: var(--light);
  /* background: var(--light); */
}

footer {
  display: flex;
  justify-content: center;
  padding: 40px 8px;
  background: #00205b;
}
footer h4 {
  color: #ff6900;
}
footer nav {
  padding-top: 32px;
  border-top: 1px solid #ff6900;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
footer nav ul li {
  width: 100%;
}
footer nav ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: #ff6900;
}
footer nav ul li a:hover {
  color: #f2a900;
}
footer svg {
  fill: #ffffff;
}
footer .logo-corrida-reis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
}
footer section {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  width: 100%;
  max-width: 1728px;
}
footer section > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 32px;
  width: 100%;
}
footer section > div > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  width: 100%;
}
footer section > div > div > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 16px;
}
footer section > div > div > ul > li {
  width: 90px;
  height: 60px;
}
footer section > div > div > ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
footer section > div > div > ul > li > a > img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
footer section > div > div > ul > li > a#pp-logo-footer > img {
  filter: brightness(0) invert(1);
}
footer section > div > div > ul > li > a:hover {
  filter: brightness(0.8);
}
footer section > div > div > ul.sn-list > li {
  width: 64px;
  height: 64px;
}
footer section > div > div > ul.sn-list > li > a {
  position: relative;
  width: 64px;
  height: 64px;
}
footer section > div > div > ul.sn-list > li > a[href^="https://www.facebook"]
{
  background-image: url("../../assets/images/icons/Facebook.svg");
}
footer section > div > div > ul.sn-list > li > a[href^="https://www.instagram"]
{
  background-image: url("../../assets/images/icons/Instagram.svg");
}
footer .logo-corrida-reis {
  margin: 0;
}
@media (min-width: 1025px) {
  footer {
    padding: 80px;
  }
  footer nav {
    padding-top: 0px;
    border-top: none;
  }
  footer nav ul {
    width: 200px;
  }
  footer nav ul li a {
    padding: 8px;
  }
  footer .logo-corrida-reis {
    width: 300px;
  }
  footer section {
    row-gap: 40px;
  }
  footer section > div {
    flex-direction: row;
  }
  footer section > div > div {
    align-items: flex-start;
    width: -moz-max-content;
    width: max-content;
  }
  footer section > div > div > ul {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  footer section > div > div > ul > li {
    width: 135px;
  }
}

.hide-text,
footer section > div > div > ul.sn-list > li > a,
header h1,
header #btn-main-menu {
  overflow: hidden;
  padding: 0; /* 1 */
  font-size: 0;
  text-indent: -999em;
  white-space: nowrap;
  color: transparent;
}

.blocoW {
  width: 47%;
}

@media only screen and (max-width: 750px) {
  .topo,
  .rodape {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    padding: 0 10px;
    gap: 20px;
  }
  .infoTopo {
    margin: 0;
    padding: 0;
    justify-content: center;
  }
  .infoTopo li {
    list-style: none;
    margin: 1px;
    padding-left: 3px;
    border-left: 1px solid #999;
  }
  fieldset {
    width: fit-content;
  }
  blockquote {
    margin: 0;
    padding: 0;
  }
  #Fconsultar span {
    display: inline-block;
    margin: 3px;
  }
  .formulario {
    font-size: 80%;
  }
}
@media screen and (max-width: 900px) {
  .blocoW {
    width: auto;
    float: none;
  }
  .imgLargura {
    width: 100%;
  }
  .leftDIV {
    width: 100%;
  }
  .rightDIV {
    width: 100%;
  }
}

/* @media print {
  fieldset {
    border-top: 0px solid #e8e8e8 !important;
    font-size: 90% !important;
  }
  fieldset legend {
    padding: 3px !important;
    margin: 0;
    font-size: 60% !important;
  }
  hr {
    margin: 3px !important;
    padding: 0;
  }
  .on-print {
    display: initial;
  }
  .topo {
    display: flex;
    justify-content: center;
  }
  .topo hr {
    display: none;
  }
  .topo .logo-svg {
    float: left;
    height: 80px !important;
  }
  .logo-svg {
    height: 30px !important;
  }
  .no-print,
  video,
  button {
    display: none;
  }
  .areaA,
  .areaB {
    margin: 0;
    padding: 0;
    border: none !important;
  }
  .areaA fieldset {
    box-shadow: none !important;
  }
  .areaB-titulo {
    font-size: 150% !important;
  }
  .logo {
    float: left !important;
  }
  .logo img {
    height: 50px !important;
    width: auto !important;
  }
  .topo .APP-titulo {
    float: left !important;
    margin: 15px 0;
  }
  .topo .APP-subtitulo {
    float: left !important;
    margin: 18px 10px;
  }
  .Fconcluido .dado,
  .Fconcluido .dadoV {
    border: none;
    border-bottom: 1px solid #cccccc;
  }

  .Fconcluido .paddingCampo {
    padding: 0;
  }
  .Fconcluido .marginCampo {
    margin: 0;
  }
  .statusIMG {
    height: 15px !important;
  }
  .termoResponsabilidade {
    display: block !important;
  }
  .termo {
    font-size: 60% !important;
  }

  .rodape .realizacao svg,
  .rodape .realizacao svg * {
    fill: var(--corTema);
  }

  .rodape .marcas img {
    height: 60px !important;
    width: auto;
  }

  .rodape {
    border: none !important;
    box-shadow: none !important;
  }
  .rodape .logosPatrocinio img {
    height: 30px !important;
  }
} */
