@charset "utf-8";
/* REGRAS GERAIS
   ================================ */
html {
  font-size: 16px;
  height: 100%;
  line-height: 1.5em;
  color: #222;
  box-sizing: border-box;
}
body,
button,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
select,
textarea {
  font-family: "Trebuchet MS", "arial", "helvetica", "Open Sans", sans-serif;
  line-height: 1.5em;
}
button {
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  margin: 0;
}
/* Ícones */
i,
.icomoon-liga {
  font-size: 1.5em;
  display: inline-block;
  vertical-align: middle;
}
/* Converte PX para REM usando /@px */
/* CLASSES GERAIS
   -------------------------------- */
.clear {
  clear: both;
}
.borda-redonda {
  border-radius: 5 / 16rem;
}
.recipiente {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .recipiente {
    grid-gap: 2rem;
  }
}
.largura-maxima {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.vidro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.65;
}
.rotacao-90 {
  transform: rotate(90deg);
}
/* MEDIA QUERIES : TAMANHOS DE TELAS
   --------------------------------
   Regras menores valem para as telas maiores
*/
/* PALETA DE CORES
   -------------------------------- */
/* Cores de fundo */
.bg-branco {
  background-color: white;
  color: #222;
}
.bg-bege {
  background-color: #f5f3f0;
  color: #222;
}
.bg-bege-mais {
  background-color: #efedea;
  color: #222;
}
.bg-azul {
  background-color: #00416b;
  color: white;
}
.bg-amarelo {
  background-color: #ffd400;
  color: #52473b;
}
.bg-bt {
  background-color: #0071ad;
  color: white;
}
.bg-bt-alt {
  background-color: #807569;
  color: white;
}
.bg-bt-alerta {
  background-color: #d50000;
  color: white;
}
.bg-bt-confirmar {
  background-color: #587441;
  color: white;
}
/* TEXTO E PARÁGRAFOS
   -------------------------------- */
p {
  margin-bottom: 1rem;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.normal {
  font-weight: normal;
}
.sem-sublinhado {
  text-decoration: none;
}
/* TÍTULOS
   -------------------------------- */
h1 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1.802em;
}
h2 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1.602em;
}
h3 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1.424em;
}
h4 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1.266em;
}
h5 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1.125em;
}
h6 {
  font-weight: bold;
  color: #00416b;
  margin-bottom: 1rem;
  line-height: 1.2em;
  font-size: 1em;
}
.titulo-destacado {
  background-image: url(../imgs/titulo-destaque.svg);
  background-size: 2rem;
  background-repeat: no-repeat;
  background-position: center left -5 / 16rem;
  padding-left: 2rem;
}
.titulo-detalhe {
  background-image: url(../imgs/titulo-detalhe.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 2rem;
  padding-bottom: 5 / 16rem;
}
/* Títulos em Fundo amarelo */
.bg-amarelo h1,
.bg-amarelo h2,
.bg-amarelo h3,
.bg-amarelo h4,
.bg-amarelo h5,
.bg-amarelo h6 {
  color: #00416b;
}
.bg-amarelo .titulo-destacado {
  background-image: url(../imgs/titulo-destaque-azul.svg);
}
.bg-amarelo .titulo-detalhe {
  background-image: url(../imgs/titulo-detalhe-azul.svg);
}
/* Títulos em Fundo Azul */
.bg-azul h1,
.bg-azul h2,
.bg-azul h3,
.bg-azul h4,
.bg-azul h5,
.bg-azul h6 {
  color: white;
}
.bg-azul .titulo-destacado {
  background-image: url(../imgs/titulo-destaque-branco.svg);
}
.bg-azul .titulo-detalhe {
  background-image: url(../imgs/titulo-detalhe-branco.svg);
}
.titulo-icone {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
}
.titulo-icone img {
  max-width: 3rem;
  margin-right: 1rem;
  margin-top: -0.4rem;
  flex-grow: 1;
}
/* LINKS
   -------------------------------- */
a {
  box-sizing: border-box;
  color: #0071ad;
  fill: #0071ad;
  text-decoration: underline;
}
a:focus {
  box-shadow: 0 0 0 1px #a65718;
  outline: none;
}
a:visited {
  color: #995580;
}
a:hover {
  color: #a65718;
  fill: #a65718;
  text-decoration: none;
}
/* Links em menus */
nav a,
ul a {
  text-decoration: none;
  padding: 0.25rem;
}
nav a:focus,
ul a:focus {
  box-shadow: 0 0 0 1px #a65718;
  outline: none;
}
nav a:visited,
ul a:visited {
  color: #0071ad;
}
nav a:hover,
ul a:hover {
  color: #a65718;
  fill: #a65718;
}
/* Links em Fundo Amarelo */
.bg-amarelo a {
  color: #00416b;
}
.bg-amarelo a:visited {
  color: #a03478;
}
.bg-amarelo nav a,
.bg-amarelo ul a {
  text-decoration: none;
  padding: 0.25rem;
}
.bg-amarelo nav a:visited,
.bg-amarelo ul a:visited {
  color: #00416b;
}
.bg-amarelo nav a:hover,
.bg-amarelo ul a:hover {
  text-decoration: underline;
  color: #00416b;
  fill: #00416b;
}
/* Links em Fundo Azul */
.bg-azul a {
  color: #1ebff0;
}
.bg-azul a:visited {
  color: #db9ac4;
}
.bg-azul a:hover {
  color: #ffd400;
}
/* Links em lista com ícones */
.lista-icone li a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: -0.25rem;
}
.lista-icone li a:hover {
  text-decoration: none;
}
.lista-icone li a:hover span:last-of-type {
  text-decoration: underline;
}
.lista-icone li i:first-child {
  flex-grow: 0;
  align-self: center;
  margin-right: 0.5rem;
}
.lista-icone li i:nth-child(3n) {
  flex-grow: 0;
  align-self: center;
  margin-left: 0.5rem;
}
.lista-icone li span {
  flex-grow: 1;
  margin-right: 0;
}
.lista-icone li span.simbolo {
  flex-grow: 0;
  width: 1.5rem;
  font-size: 1.5rem;
  align-self: center;
  margin-right: 0.5rem;
}
.lista-icone li img {
  flex-grow: 0;
  width: 2rem;
  align-self: center;
  margin-right: 1rem;
}
.lista-icone svg {
  flex-grow: 0;
  width: 1.5rem;
  align-self: center;
  margin-right: 0.5rem;
}
/* BOTÕES
   -------------------------------- */
/* Botões básicos */
.bt {
  box-sizing: border-box;
  background-color: #0071ad;
  color: white;
  border: none;
  outline: none;
  border-radius: 5 / 16rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  margin: 0.5rem 0;
}
.bt:focus {
  box-shadow: 0 0 0 3px #00416b;
}
.bt:hover {
  background-color: #00416b;
}
.bt:active {
  box-shadow: 0 0 0 3px #00416b;
  background-color: #0071ad;
}
.bt-alt {
  box-sizing: border-box;
  background-color: #0071ad;
  color: white;
  border: none;
  outline: none;
  border-radius: 5 / 16rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  margin: 0.5rem 0;
  background-color: #807569;
}
.bt-alt:focus {
  box-shadow: 0 0 0 3px #00416b;
}
.bt-alt:hover {
  background-color: #00416b;
}
.bt-alt:active {
  box-shadow: 0 0 0 3px #00416b;
  background-color: #0071ad;
}
.bt-alt:focus {
  box-shadow: 0 0 0 3px #52473b;
}
.bt-alt:hover {
  background-color: #52473b;
}
.bt-alt:active {
  box-shadow: 0 0 0 3px #52473b;
  background-color: #807569;
}
.bt-alerta {
  box-sizing: border-box;
  background-color: #0071ad;
  color: white;
  border: none;
  outline: none;
  border-radius: 5 / 16rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  margin: 0.5rem 0;
  background-color: #d50000;
}
.bt-alerta:focus {
  box-shadow: 0 0 0 3px #00416b;
}
.bt-alerta:hover {
  background-color: #00416b;
}
.bt-alerta:active {
  box-shadow: 0 0 0 3px #00416b;
  background-color: #0071ad;
}
.bt-alerta:focus {
  box-shadow: 0 0 0 3px #9e1d1d;
  outline: none;
}
.bt-alerta:hover {
  background-color: #9e1d1d;
}
.bt-alerta:active {
  box-shadow: 0 0 0 3px #9e1d1d;
  background-color: #d50000;
}
.bt-confirma {
  box-sizing: border-box;
  background-color: #0071ad;
  color: white;
  border: none;
  outline: none;
  border-radius: 5 / 16rem;
  padding: 0.25rem 1rem;
  cursor: pointer;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  margin: 0.5rem 0;
  background-color: #587441;
}
.bt-confirma:focus {
  box-shadow: 0 0 0 3px #00416b;
}
.bt-confirma:hover {
  background-color: #00416b;
}
.bt-confirma:active {
  box-shadow: 0 0 0 3px #00416b;
  background-color: #0071ad;
}
.bt-confirma:focus {
  box-shadow: 0 0 0 3px #455e31;
}
.bt-confirma:hover {
  background-color: #455e31;
}
.bt-confirma:active {
  box-shadow: 0 0 0 3px #455e31;
  background-color: #587441;
}
/* Botões com ícone interno */
.bt-ic-esq i {
  margin-right: 0.5rem;
}
.bt-ic-dir i {
  margin-left: 0.5rem;
}
.bt-ic-redondo {
  padding: 0.25rem;
  border-radius: 50%;
}
/* Botões com links e/ou icones */
.bt-link-ic {
  box-sizing: border-box;
  background-color: transparent;
  font-size: 1rem;
  border: 2px solid transparent;
  color: #0071ad;
  fill: #0071ad;
  padding: 0.25rem;
  margin: 0px;
  cursor: pointer;
  text-decoration: none;
}
.bt-link-ic:focus {
  border: 2px solid #a65718;
  outline: none;
}
.bt-link-ic:visited {
  text-decoration: none;
  color: #0071ad;
  fill: #0071ad;
}
.bt-link-ic:hover {
  color: #a65718;
  fill: #a65718;
}
/* Botões com links e/ou icones em fundo amarelo */
.bg-amarelo a.bt-link-ic {
  color: #00416b;
  fill: #00416b;
}
.bg-amarelo a.bt-link-ic:hover span {
  text-decoration: underline;
}
/* CONTROLADOR
   -------------------------------- */
.controlador {
  border-radius: 5 / 16rem;
  background-color: white;
  margin-top: -1.25rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  transition: 0.2s ease-in-out;
}
.controlador:hover {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3);
}
.controlador #anterior i {
  transform: rotate(180deg);
}
/* FORMULÁRIOS
   -------------------------------- */
.campo {
  margin: 1rem 0;
  /* Radio  */
  /* Checkbox */
}
.campo .controle {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  padding: 0;
}
.campo input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: white;
  color: #807569;
  border: 1px solid #807569;
  padding: 0.25rem 1rem;
  border-radius: 5 / 16rem;
}
.campo input[type="text"]:focus {
  box-shadow: 0 0 0 2px #0071ad;
  border: 1px solid #0071ad;
  outline: none;
}
.campo .mensagem {
  font-style: italic;
}
.campo select {
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: white;
  color: #807569;
  border: 1px solid #807569;
  padding: 0.25rem 1rem;
  border-radius: 5 / 16rem;
  appearance: button;
}
.campo select:focus {
  box-shadow: 0 0 0 2px #0071ad;
  border: 1px solid #0071ad;
  outline: none;
}
.campo select option {
  overflow: hidden;
}
.campo .seletor i {
  color: #0071ad;
  transform: rotate(90deg);
  pointer-events: none;
}
.campo textarea {
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5 / 16rem;
  border: 1px solid #807569;
  padding: 5 / 16rem 15 / 16rem;
  color: #807569;
  background-color: #efedea;
  margin-bottom: 0;
}
.campo input[type="radio"]:checked,
.campo input[type="radio"]:not(:checked) {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.campo input[type="radio"]:checked + label,
.campo input[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
  display: inline-block;
}
.campo input[type="radio"]:checked + label:before,
.campo input[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  border: 1px solid #807569;
  border-radius: 100%;
  background: white;
}
.campo input[type="radio"]:focus + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  border: 1px solid #0071ad;
  box-shadow: 0 0 0 2px #0071ad;
  border-radius: 100%;
  background: white;
}
.campo input[type="radio"]:checked + label:after,
.campo input[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: #0071ad;
  position: absolute;
  top: 0.45em;
  left: 0.28em;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.campo input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.campo input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.campo input[type="checkbox"]:checked,
.campo input[type="checkbox"]:not(:checked) {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.campo input[type="checkbox"]:checked + label,
.campo input[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 1.5em;
  cursor: pointer;
  display: inline-block;
}
.campo input[type="checkbox"]:checked + label:before,
.campo input[type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  border: 1px solid #0071ad;
  background: #0071ad;
  border-radius: 3px;
}
.campo input[type="checkbox"]:not(:checked) + label:before {
  background-color: white;
  border: 1px solid #807569;
}
.campo input[type="checkbox"]:focus + label:before {
  border: 1px solid #0071ad;
  box-shadow: 0 0 0 2px #0071ad;
}
.campo input[type="checkbox"]:checked:focus + label:before {
  background-color: white;
}
.campo input[type="checkbox"]:checked + label:after,
.campo input[type="checkbox"]:not(:checked) + label:after {
  font-family: "IconesCorreios";
  content: "\e97c";
  font-size: 0.9em;
  line-height: 1em;
  color: white;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0.3em;
  left: 0.1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 3px;
  border: 1px solid #0071ad;
}
.campo input[type="checkbox"]:not(:checked) + label:after {
  color: #0071ad;
}
.campo input[type="checkbox"]:checked:focus + label:after {
  content: "";
  font-family: "IconesCorreios";
  content: "\e97c";
  font-size: 0.9em;
  color: #0071ad;
  width: 1em;
  height: 1em;
  top: 0.3em;
  left: 0.1em;
}
.campo input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.campo input[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* CARDS
   -------------------------------- */
.card {
  background-color: white;
  border-radius: 5 / 16rem;
  transition: 0.15s ease-in-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.35);
}
/* TABELAS
   -------------------------------- */
.tabela-rolagem-x {
  overflow-x: auto;
}
table {
  width: 100%;
  border-radius: 5 / 16rem;
  border-bottom: 3px solid #d1ccc7;
  border-collapse: collapse;
  border-spacing: 0;
  caption-side: bottom;
  position: relative;
}
tr {
  vertical-align: middle;
}
table caption {
  font-style: italic;
  text-align: left;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
table thead tr th {
  font-weight: bold;
  background-color: #0071ad;
  padding: 1rem;
  color: white;
  border-bottom: 2px solid #d1ccc7;
  text-align: left;
}
table thead tr th:first-child {
  border-radius: 5 / 16rem 0 0 0;
}
table thead tr th:last-child {
  border-radius: 0 5 / 16rem 0 0;
}
table tbody tr th,
table tfoot tr th {
  background-color: #efedea;
  border-top: 1px solid #d1ccc7;
}
table td {
  padding: 1rem;
  border-top: 1px solid #d1ccc7;
}
table tr {
  border-top: 1px solid #d1ccc7;
}
table tr:hover {
  background-color: #efedea;
}
table thead {
  border-radius: 5 / 16rem 5 / 16rem 0 0;
  border-radius: 5 / 16rem 0 0 0;
}
/* ABAS
   -------------------------------- */
/* Style the tab */
.tab {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid #efedea;
  background-color: #f5f3f0;
  box-sizing: border-box;
  border-bottom: 1px solid white;
}
/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  width: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1rem;
  transition: 0.3s;
  font-size: 1rem;
  color: #0071ad;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #efedea;
  color: #a65718;
}
/* Create an active/current tablink class */
.tab button.active {
  background-color: white;
  color: #a65718;
}
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 1rem 0;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}
/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* HEADER / CABEÇALHO
   ================================ */
/* HEADER: Barra de Acessibilidade
   -------------------------------- */
#barra-acessibilidade .recipiente {
  grid-row-gap: 0;
}
#barra-acessibilidade {
  background-color: #efedea;
  color: #222;
  border-bottom: 1px solid white;
  padding: 0 1rem;
}
.bt-acessibilidade {
  grid-column: span 6;
  justify-self: start;
  padding: 0.25rem 0.1rem;
  margin-left: -0.1rem;
}
.bt-acessibilidade i,
.bt-idioma i {
  transform: rotate(90deg);
}
.bt-acessibilidade:active i,
.bt-idioma:active i {
  transform: rotate(270deg);
}
.bt-idioma {
  grid-column: span 6;
  justify-self: end;
  padding: 0.25rem 0.1rem;
  margin-right: -0.1rem;
}
.bt-idioma img {
  vertical-align: middle;
  margin-top: -0.125em;
  margin-right: 0.1rem;
  height: 1em;
}
/* Lista de comandos de acessibilidade */
.lista-acessibilidade {
  grid-column: span 12;
  border-top: 1px solid #d1ccc7;
  padding: 1rem 0;
}
.bt-fechar-lista {
  grid-column: span 12;
  grid-row: 1;
  justify-self: end;
  margin-right: -0.25rem;
}
.lista-acessibilidade ul {
  grid-column: span 12;
}
@media screen and (min-width: 576px) {
  .lista-acessibilidade ul {
    grid-column: span 6;
  }
}
@media screen and (min-width: 768px) {
  .lista-acessibilidade ul {
    grid-column: span 4;
  }
}
@media screen and (min-width: 992px) {
  .lista-acessibilidade ul {
    grid-column: span 3;
  }
}
@media screen and (min-width: 1200px) {
  .lista-acessibilidade ul {
    grid-column: span 2;
  }
}
/* HEADER: Barra de Menu
   -------------------------------- */
#barra-menu {
  background-color: #f5f3f0;
  color: #222;
  background-color: #f2e8d0;
  color: #222222;
  box-sizing: border-box;
  padding: 0 1rem;
  border-bottom: 1px solid #ffd400;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
  z-index: 100;
}
#barra-menu h1,
#barra-menu h2 {
  color: inherit;
}
@media screen and (min-width: 992px) {
  #barra-menu {
    text-align: left;
    padding: 0 1rem;
    border-bottom: 0px;
  }
}
/* Menu Hamburguer */
#barra-menu .bt-menu-hamburguer {
  flex-grow: 0;
  order: 0;
  padding: 0.5rem;
  margin-left: -0.5rem;
}
@media screen and (min-width: 992px) {
  #barra-menu .bt-menu-hamburguer {
    order: 2;
    margin-right: 0.5rem;
  }
}
#barra-menu .bt-menu-hamburguer i {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  #barra-menu #bt-menu-hamburguer-inicial {
    display: none;
  }
}
/* Logo Correios */
#barra-menu .logo-correios {
  flex-grow: 1;
}
#barra-menu .logo-correios a {
  box-sizing: content-box;
  display: inline-block;
  padding: 0.5rem;
  height: 2rem;
}
#barra-menu .logo-correios img {
  height: 30 / 16rem;
}
/* Links Rápidos */
#barra-menu .links-rapidos {
  display: none;
}
@media screen and (min-width: 992px) {
  #barra-menu .links-rapidos {
    flex-grow: 0;
    display: flex;
  }
}
#barra-menu button {
  display: flex;
  align-items: center;
  align-content: center;
  flex-grow: 0;
  padding: 0.5rem;
  margin: 0 0.25rem;
}
#barra-menu button img {
  height: 2rem;
  margin-right: 0.25rem;
}
/* FOOTER / RODAPÉ
   ================================ */
#rodape {
  padding: 2rem 1rem 1rem 1rem;
  background-color: #ffe600;
  background-image: url(../imgs/rodape-bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 150px;
}
@media screen and (min-width: 992px) {
  #rodape {
    background-size: 100% 250px;
  }
}
#rodape .rodape-links {
  grid-column: span 12;
}
@media screen and (min-width: 576px) {
  #rodape .rodape-links {
    grid-column: span 6;
  }
}
@media screen and (min-width: 768px) {
  #rodape .rodape-links {
    grid-column: span 4;
  }
}
.marca-gov {
  grid-column: span 12;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.marca-gov img {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 992px) {
  .marca-gov {
    grid-column: span 6;
  }
}
.copyright {
  grid-column: span 12;
  align-self: end;
  justify-self: center;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 992px) {
  .copyright {
    grid-column: span 4;
    justify-self: start;
  }
}
.copyright p {
  padding-bottom: 0;
  margin-bottom: 0;
}
@font-face {
  font-family: CantedComic;
  src: url(../../FonteBLOG/CantedComic-Regular.otf);
}
:root {
  --cor-verde: #14703d;
  --cor-vinho: #761935;
  --cor-marrom: #b78569;
  --cor-bege: #f2e8d0;
  --cor-vermelho: #c2301a;
  --degrade-fundo: linear-gradient(121deg, #c5341b 0%, #d6795d 100%);
  --raio-borda: 8px;
  --largura-maxima: 1000px;
  --sombra: 0px 8px 12px 6px rgba(0, 0, 0, 0.15),
        0px 4px 4px rgba(0, 0, 0, 0.15);
}
/* ACESSIBILIDADE */
.esconder-visualmente {
  /* Esconde visualmente elementos e mantém a leitura através de leitores de tela */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.bg-verde {
  background-color: #14703d;
  color: #f2e8d0;
}
.bg-bege {
  background-color: #f2e8d0;
  color: #222222;
}
.bg-bege h1,
.bg-bege h2 {
  color: inherit;
}
.bg-vermelho {
  background-color: #c2301a;
  color: white;
}
.bg-branco {
  background-color: white;
  color: #222222;
}
.bg-branco h1 {
  color: #c2301a;
  line-height: 1em;
}
.bg-branco h2 {
  color: #c2301a;
}
.btn-primary,
.bt-roxo,
a.bt-roxo {
  background-color: #c2301a;
  color: white;
  border-radius: 8px;
  padding: 0.5rem 2rem;
  margin: 0;
  border: 0;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5em;
}
.btn-primary:visited,
.bt-roxo:visited,
a.bt-roxo:visited {
  color: white !important;
  background-color: #c2301a;
}
.btn-primary:hover,
.bt-roxo:hover,
a.bt-roxo:hover {
  background-color: white;
  color: #c2301a !important;
  box-shadow: inset 0 0 0 1px #c2301a;
  border: 0;
  outline: none;
}
.btn-primary:active,
.bt-roxo:active,
a.bt-roxo:active,
.btn-primary:hover:active,
.bt-roxo:hover:active,
a.bt-roxo:hover:active,
.btn-primary:active:focus,
.bt-roxo:active:focus,
a.bt-roxo:active:focus,
.btn-primary:focus,
.bt-roxo:focus,
a.bt-roxo:focus {
  background-color: white !important;
  color: #c2301a !important;
  box-shadow: 0 0 0 3px #c2301a !important;
  border: 0;
  outline: none;
}
.btn-primary .fa,
.bt-roxo .fa,
a.bt-roxo .fa {
  color: inherit !important;
}
.btn-secondary,
.bt-bege,
a.bt-bege {
  background-color: #f2e8d0;
  color: #c2301a;
  border-radius: 8px;
  padding: 0.5rem 2rem;
  margin: 0;
  border: 0;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5em;
}
.btn-secondary:visited,
.bt-bege:visited,
a.bt-bege:visited {
  color: #c2301a !important;
  background-color: #f2e8d0;
}
.btn-secondary:hover,
.bt-bege:hover,
a.bt-bege:hover {
  background-color: #c2301a;
  color: #f2e8d0 !important;
  border: 0;
  outline: none;
}
.btn-secondary:focus,
.bt-bege:focus,
a.bt-bege:focus,
.btn-secondary:hover:active,
.bt-bege:hover:active,
a.bt-bege:hover:active,
.btn-secondary:active:focus,
.bt-bege:active:focus,
a.bt-bege:active:focus,
.btn-secondary:active,
.bt-bege:active,
a.bt-bege:active {
  background-color: #f2e8d0 !important;
  color: #c2301a !important;
  box-shadow: 0 0 0 3px #c2301a;
  border: 0;
  outline: none;
}
.btn-secondary .fa,
.bt-bege .fa,
a.bt-bege .fa {
  color: inherit !important;
}
.bg-bege .bt-bege,
.bg-bege a.bt-bege {
  box-shadow: inset 0 0 0 1px #c2301a;
}
.bg-bege .bt-bege:focus,
.bg-bege a.bt-bege:focus,
.bg-bege .bt-bege:active,
.bg-bege a.bt-bege:active {
  box-shadow: 0 0 0 3px #c2301a;
}
.box {
  border: 1px solid #14703d;
  border-radius: 8px;
  height: auto;
  padding: 0.5rem;
}
.box:focus {
  box-shadow: 0 0 0 3px #14703d;
  border: 1px solid #14703d;
}
.box option:hover {
  background-color: #14703d;
}
/***** 
Blog Noel 2022
*****/
body {
  background: url(../../../static/blognoel/imgs/fundo-desenhos-1080-2.png), repeat-y, var(--degrade-fundo);
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100%;
  height: unset;
}
body > header,
body > #header-fixo {
  height: 0px;
  overflow: hidden;
  border: none;
}
#breadcrumb {
  height: 0px;
}
#geral {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
#geral #corpo {
  flex: 1 0 auto;
  height: auto;
  padding-top: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  box-shadow: none;
}
body .content-wrapper {
  flex: 1;
  min-height: unset;
  background-repeat: no-repeat;
  background-size: 100%;
}
.content-wrapper .container-fluid {
  padding: 1rem 1rem 2rem 1rem;
}
.containerblognoel-coluna-fundo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: var(--largura-maxima);
  width: 100%;
  margin: 1rem auto 0 auto;
  box-shadow: var(--sombra);
  border-radius: 8px;
}
.img-topo {
  display: block;
  margin: 0 auto -4rem;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1080px;
}
.lottie-topo {
  max-width: 1000px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.img-luzes {
  position: absolute;
  top: 128px;
  max-width: calc(100% + 1rem);
  z-index: -1;
  left: -1rem;
}
.secao-blog {
  width: 100%;
  padding: 2rem 1rem;
  border-radius: none;
  background-image: none;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
.secao-blog p {
  margin-bottom: 1rem;
  text-align: left;
  font-family: inherit;
}
.secao-blog h1 {
  font-family: CantedComic, sans-serif;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .secao-blog h1 {
    font-size: 2.8rem;
  }
}
.secao-blog h2 {
  font-family: CantedComic, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .secao-blog h2 {
    font-size: 2.3rem;
  }
}
.secao-blog:first-child {
  border-radius: 8px 8px 0 0;
}
.secao-blog:last-child {
  border-radius: 0 0 8px 8px;
}
#divCampanha {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-items: flex-end;
  align-content: flex-end;
  gap: 1rem;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  #divCampanha {
    flex-direction: row;
    justify-content: center;
  }
}
#divCampanha div:first-child {
  flex: 1 1 50%;
}
.campanha-titulo {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 576px) {
  .campanha-titulo {
    gap: 1rem;
  }
}
.campanha-titulo h2 {
  flex: 0 0 auto;
  margin-bottom: 0;
}
.campanha-titulo a {
  flex: 0 1 auto;
  align-self: flex-start;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .campanha-titulo a {
    margin-top: 5px;
    padding: 0.5rem 1rem;
  }
}
.img-campanha {
  align-self: center;
  flex: 1 0 100%;
  width: 100%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .img-campanha {
    flex: 1 0 50%;
    align-self: flex-start;
    max-width: 550px;
    margin-right: -4rem;
  }
}
.video-campanha {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.video-campanha iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#divSejaVoceNoel {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  #divSejaVoceNoel {
    flex-direction: row;
    justify-content: center;
  }
}
.adotar-titulo {
  display: flex;
  gap: 1rem;
  flex-basis: 100%;
}
.adotar-titulo img {
  display: block;
  width: 80px;
  align-self: flex-start;
  flex: 0 1 0;
}
@media screen and (min-width: 576px) {
  .adotar-titulo img {
    width: 100px;
  }
}
.adotar-passos {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 100%;
  align-self: flex-start;
}
@media screen and (min-width: 576px) {
  .adotar-passos {
    flex-direction: column;
    flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 992px) {
  .adotar-passos {
    flex: 1 0 calc(25% - 1rem);
  }
}
.adotar-passos .img-adotar,
.adotar-passos .lottie-adotar {
  max-width: 250px;
  flex: 1 0 50%;
  display: block;
}
.adotar-passos .img-adotar img,
.adotar-passos .lottie-adotar img {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .adotar-passos .img-adotar,
  .adotar-passos .lottie-adotar {
    flex: 1 0 auto;
  }
}
.adotar-passos p {
  flex: 1 0 50%;
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .adotar-passos p {
    text-align: center;
    flex: 1 0 auto;
  }
}
#divSejaVoceNoel .bt {
  align-self: center;
}
#divPadrinhos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
#divPadrinhos .padrinho-form {
  max-width: 100%;
  flex: 1 0 100%;
}
@media screen and (min-width: 768px) {
  #divPadrinhos .padrinho-form {
    flex: 1 0 0;
  }
}
#divPadrinhos .img-padrinho {
  flex: 1 0 100%;
  align-self: flex-start;
  max-width: 250px;
}
#divPadrinhos .img-padrinho img {
  width: 100%;
}
#divPadrinhos .padrinhos-atencao {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}
#divPadrinhos .padrinhos-atencao p:last-child {
  margin-bottom: 0;
}
#divPtoEntrega {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#divPtoEntrega .form-pontos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-items: center;
}
#divPtoEntrega .form-pontos .form-group {
  flex: 0 1 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  #divPtoEntrega .form-pontos .form-group {
    flex: 0 1 calc(33.3333% - 0.33333333rem);
  }
}
@media screen and (min-width: 768px) {
  #divPtoEntrega .form-pontos .form-group {
    flex: 1 0 calc(25% - 1rem);
  }
}
#divPtoEntrega .form-pontos .form-group:first-child {
  align-self: center;
}
.img-pontos {
  max-height: 400px;
  align-self: center;
}
#divEnvioCartas {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  justify-items: center;
}
@media screen and (min-width: 768px) {
  #divEnvioCartas {
    flex-direction: row;
  }
}
#divEnvioCartas div {
  flex: 0 0 calc(50% - 0.5rem);
}
#divEnvioCartas .bt {
  align-self: center;
}
#divEnvioCartas .img-envio-carta {
  display: flex;
  justify-content: center;
}
#divEnvioCartas .img-envio-carta img {
  max-height: 400px;
}
.atencao-envio-carta {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background-color: #f2e8d0;
  color: #222222;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: 0;
  text-decoration: none;
}
@media screen and (min-width: 576px) {
  .atencao-envio-carta {
    margin: 0;
    flex-direction: row;
  }
}
.atencao-envio-carta span {
  color: #222222;
}
.atencao-envio-carta:visited {
  color: #222222;
}
.atencao-envio-carta:hover {
  color: #222222;
  box-shadow: 0 0 0 1px #c2301a !important;
  border: 0;
  outline: none;
}
.atencao-envio-carta:hover span {
  color: #222222;
}
.atencao-envio-carta:active,
.atencao-envio-carta:focus {
  color: #14703d;
  box-shadow: 0 0 0 3px #14703d !important;
  border: 0;
  outline: none;
}
.atencao-envio-carta:active span,
.atencao-envio-carta:focus span {
  color: #14703d;
}
#ModalCriteriosEnvio ul {
  padding-left: 1rem;
  list-style-type: disc;
}
#ModalCriteriosEnvio ul li {
  font-weight: normal;
  line-height: 1rem;
  margin-bottom: 1rem;
}
#ModalCriteriosEnvio .modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bt-perguntas-freq {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.bt-perguntas-freq img {
  max-width: 100px;
  align-self: center;
}
.bt-perguntas-freq .lottie-perguntas {
  max-width: 130px;
  height: 180px;
  align-self: center;
}
.bt-perguntas-freq .bt-roxo {
  align-self: center;
}
h3,
h4 {
  font-size: 1rem;
  font-weight: bold;
  color: inherit;
  margin-bottom: 0;
}
#divMidiasSociais {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 576px) {
  #divMidiasSociais {
    gap: 2rem;
  }
}
#divMidiasSociais a {
  height: 2rem;
  width: 2rem;
  padding: 0;
  margin: 0;
  align-self: center;
  border: 0;
  border-radius: 8px;
}
#divMidiasSociais a img {
  margin: 0;
  padding: 0;
}
#divMidiasSociais a:hover {
  box-shadow: 0 0 0 1px #14703d !important;
  outline: none;
  border: 0;
}
#divMidiasSociais a:active,
#divMidiasSociais a:focus {
  box-shadow: 0 0 0 3px #14703d !important;
  outline: none;
  border: 0;
}
/* Menu principal */
.navbar-inverse {
  height: auto;
  background-color: #efedea;
  margin-bottom: 0;
  border: 0;
  padding: 0;
  min-height: unset;
}
.navbar-inverse .container {
  width: 100%;
  padding: 7px 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.navbar-inverse:before,
.container:before,
.container .navbar-header:before {
  content: none;
}
.container .navbar-header {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  height: fit-content;
  padding: 0;
}
.navbar-header .navbar-brand {
  flex: 0 1 auto;
  order: 0;
  padding: 0;
  margin: 0;
  align-self: flex-start;
}
.navbar-header .navbar-toggle {
  flex: 0 0 auto;
  order: 1;
  border-radius: var(--raio-borda);
  margin: 0;
  background-color: var(--cor-verde);
}
.navbar-header .navbar-toggle:hover {
  background-color: var(--cor-vinho);
}
.navbar-header .navbar-toggle:active {
  background-color: var(--cor-vinho);
}
.container #menu-top.nav a {
  color: var(--cor-vermelho);
  border-radius: var(--raio-borda);
  border: none;
  outline: none;
}
.container #menu-top.nav a:active,
.container #menu-top.nav a:focus,
.container #menu-top.nav a:hover {
  background-color: var(--cor-vermelho);
  color: #efedea !important;
  border: none;
  outline: none;
}
@media (min-width: 576px) {
  .navbar-inverse .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  #menu-top {
    flex-direction: row;
  }
  .navbar-inverse .container {
    max-width: 100%;
    flex-wrap: nowrap;
    padding: 7px 15px 7px 15px;
  }
  .container .navbar-header {
    width: auto;
    flex: 1 1 auto;
  }
  .container .navbar-header .navbar-brand {
    margin: 0;
    padding: 0;
    height: auto;
  }
  .container .navbar-header .navbar-brand img {
    margin-top: 0;
    width: 100%;
    max-height: 85px;
    image-rendering: -webkit-optimize-contrast;
  }
  .container #menu-topo-principal {
    display: flex !important;
    justify-content: flex-end;
    max-width: 100%;
    padding: 0;
  }
  .container #menu-top.nav {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 1rem;
    justify-content: flex-end;
  }
  .container #menu-top.nav a {
    min-width: 0;
    max-width: 100%;
    padding: 0.5rem;
    margin: 0;
  }
}
/* Menu login */
.menu-section {
  background-color: #efedea;
  border-top: 1px solid #d1ccc7;
  border-bottom: 1px solid #ffd400;
  box-shadow: var(--sombra);
}
.menu-section .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
.navbar-collapse #menu-top.menu-acesso a {
  display: flex;
  align-items: center;
  color: var(--cor-vermelho);
  padding: 0.5rem;
  /* border-radius: var(--raio-borda); */
}
.navbar-collapse #menu-top.menu-acesso a:hover,
.navbar-collapse #menu-top.menu-acesso a:active,
.navbar-collapse #menu-top.menu-acesso a:focus {
  background-color: var(--cor-vermelho) !important;
  color: #efedea !important;
  outline: none;
  box-shadow: none;
}
.navbar-collapse #menu-top.menu-acesso a *:last-child {
  margin-left: 0.5rem;
}
.navbar-collapse #menu-top.menu-acesso a .fa {
  color: inherit;
  font-size: 1.5em;
}
#menu-top.menu-acesso .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#menu-top.menu-acesso .dropdown-menu a:hover {
  color: white !important;
}
@media (min-width: 768px) {
  .navbar-collapse #menu-top.menu-acesso {
    position: relative;
    margin: 0;
    top: 0;
    float: unset !important;
    display: flex;
    justify-content: flex-end;
  }
  #menu-top.menu-acesso .dropdown-menu {
    background-color: white;
    border: none;
    box-shadow: var(--sombra);
    border-radius: var(--raio-borda) !important;
    padding: 0.5rem !important;
    top: 40px !important;
    left: unset !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }
  #menu-top.menu-acesso .dropdown-menu a *:last-child {
    margin-left: 0.5rem;
  }
}
@media (max-width: 768px) {
  #menu-top.menu-acesso .dropdown-menu {
    background-color: #efedea;
    position: relative !important;
    transform: translate3d(0px, 0px, 0px) !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
}
#divRodapeLogos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 0;
}
@media screen and (min-width: 576px) {
  #divRodapeLogos {
    justify-content: space-between;
  }
}
#divRodapeLogos .marca-papai-noel {
  max-width: 150px;
  flex: 1;
}
#divRodapeLogos .marca-correios {
  flex: 1;
  max-width: 400px;
  min-width: 260px;
}
#geral footer,
body > footer {
  align-self: flex-end;
  width: 100%;
  background-color: #ffe600;
  background-image: url(../imgs/prisma.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 30% 100%;
  color: #00416b;
  padding: 0.5rem;
  margin-top: 1rem;
  line-height: 1.5rem;
  height: auto;
  position: relative !important;
}
#geral footer .container .row,
body > footer .container .row {
  padding: 0;
}
#geral footer .textoNomeSistema,
body > footer .textoNomeSistema {
  font-size: 16px;
}
.modal-header {
  color: #c2301a;
}
.modal-content {
  border-radius: var(--raio-borda);
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 100%;
  }
}
#ModalCronograma .modal-header {
  align-items: center;
}
#ModalCronograma .modal-header button.close {
  margin-top: -1rem;
}
#ModalCronograma table {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  display: table;
}
#ModalCronograma table tbody tr {
  display: table-row;
  width: 100%;
}
#ModalCronograma table tbody tr td,
#ModalCronograma table thead tr th {
  display: table-cell;
}
#ModalCronograma table thead,
#ModalCronograma table tbody {
  display: table-row-group;
  width: 100%;
}
#ModalCronograma table thead tr th {
  background-color: var(--cor-verde);
  color: var(--cor-bege);
  border: none;
  font-size: 14px;
  line-height: 20px;
  padding: 8px;
}
#ModalCronograma table tbody tr td {
  padding: 8px;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 400px) {
  #ModalCronograma table thead tr th,
  #ModalCronograma table tbody tr td {
    word-break: break-word;
    font-size: 12px;
    line-height: 16px;
  }
}
.alert-warning {
  background-color: #c2301a;
}
.alert-warning a,
.alert-warning a:visited {
  color: white;
}
