@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;
  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;
}
@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;
}
