/* Módulo CSS: _siderBarGlobal.css */
/* =========================================
   Módulo CSS: _siderBarGlobal.css (Cabeçalho, Sidebar Mobile e Rodapé)
========================================= */
body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

/* --- Base Mobile do Global Sidebar e Overlay (siderBarGlobal.js) --- */
#globalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 10004;
}

#globalOverlay.active {
  visibility: visible;
  opacity: 1;
}

#globalSidebar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 85vh; /* Menu sobe até 85% da tela */
  background: var(--bg-surface, #ffffff);
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 10005;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

#globalSidebar.active {
  transform: translateY(0);
}

#sidebarHeaderDrag {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
}

#sidebarHeaderDrag::after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: #d1d5db;
  border-radius: 10px;
}

/* --- CABEÇALHO --- */
.cabecalho {
  position: sticky;
  top: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 0 4.88rem;
  background-color: #fff;
  z-index: 999;
}
@media (max-width: 59.375em) {
  .cabecalho {
    padding: 0 1.45rem 0 2rem;
    min-height: 6.8rem;
  }
}
.cabecalho--carrinho .cabecalho__navegacao,
.cabecalho--carrinho .cabecalho__icones,
.cabecalho--carrinho .cabecalho__menu {
  display: none;
}
@media (max-width: 59.375em) {
  .cabecalho--carrinho .cabecalho__container {
    margin: auto;
  }
}
.cabecalho--carrinho .cabecalho__logo {
  margin: 3.05rem 0;
}
.cabecalho--carrinho .cabecalho__logo-a {
  margin: auto;
}
.cabecalho__container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: start;
  gap: 3.66vw;
  width: 100%;
}
@media (max-width: 59.375em) {
  .cabecalho__container > a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .cabecalho__container {
    width: auto;
  }
}

/* Controle Menu Mobile (Sidebar) */
.cabecalho__menu {
  display: none;
  width: 2.2rem;
  cursor: pointer;
}
@media (max-width: 59.375em) {
  .cabecalho__menu {
    display: block;
  }
}
.cabecalho__menu-x {
  display: none;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
}
.cabecalho--aberto .cabecalho__menu-x {
  display: block;
}
.cabecalho--aberto .cabecalho__menu-icone {
  display: none;
}
.cabecalho--aberto .cabecalho__navegacao {
  transform: translateX(0);
}
.cabecalho--aberto .cabecalho__imagem-link {
  display: none;
}

.cabecalho__logo {
  min-width: 6.2rem;
  width: 6.2rem;
  max-height: 5.8rem;
  object-fit: contain;
  margin-bottom: 2px;
}
@media (max-width: 59.375em) {
  .cabecalho__logo {
    margin: 0;
    width: 6.2rem;
    min-width: 6.2rem;
  }
}

/* Sidebar Mobile / Navegação */
.cabecalho__navegacao {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: start;
  gap: 4.88rem;
  width: 100%;
  max-width: 81rem;
}
@media (max-width: 59.375em) {
  .cabecalho__navegacao {
    transition: transform 0.5s ease-in-out;
    left: 0;
    top: 100%;
    background-color: #fff;
    min-width: 100%;
    height: 100vh;
    max-height: calc(100vh - 75px);
    overflow-y: scroll;
    transform: translateX(-170%);
    position: absolute;
  }
  .cabecalho__navegacao::-webkit-scrollbar {
    display: none;
  }
}

.cabecalho__lista {
  list-style: none;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.6rem;
}
@media (max-width: 59.375em) {
  .cabecalho__lista {
    flex-direction: column;
    gap: 0;
    justify-content: start;
  }
}
.cabecalho__lista--tipo {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: start;
  gap: 0.42rem;
  width: auto;
}
@media (max-width: 59.375em) {
  .cabecalho__lista--tipo {
    margin: 0 2rem 0 4rem;
  }
  .cabecalho__lista--tipo:nth-child(2) {
    margin-top: 2rem;
  }
  .cabecalho__lista--tipo:last-child {
    margin-bottom: 2rem;
  }
}

.cabecalho__link {
  font-size: 1.33rem;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  line-height: 1;
  border-bottom: solid 2px transparent;
}
@media (max-width: 59.375em) {
  .cabecalho__link {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 2rem 2rem 2rem;
  }
  .cabecalho__link::after {
    content: "❯";
    transform: rotate(90deg);
  }
  .cabecalho__link--tipo {
    margin-left: 0;
  }
  .cabecalho__link--tipo::after {
    content: "";
  }
}
.cabecalho__link--ofertas {
  color: red;
}
.cabecalho__link--perfil {
  text-transform: none;
  font-weight: 400;
  border-bottom: none;
}
.cabecalho__link--tipo {
  text-transform: none;
  font-weight: 400;
  color: #626262;
}
.cabecalho__link--tipo:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.cabecalho__item-lista {
  padding: 3.12rem 0;
}
@media (max-width: 59.375em) {
  .cabecalho__item-lista {
    border-top: 1px solid #d8d9da;
    padding: 2rem 0 0 0;
    cursor: pointer;
  }
  .cabecalho_item-lista:hover .cabecalho_expansao-tipos {
    display: flex;
  }
  .cabecalho__item-lista--aberto .cabecalho__expansao-tipos {
    max-height: 100rem;
    border-top: 1px solid #d8d9da;
    transition: max-height 0.3s ease-in-out;
  }
}

.cabecalho__expansao-tipos {
  display: none;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: start;
  gap: 4.88rem;
  position: absolute;
  background-color: #fff;
  left: 0;
  right: 0;
  top: 100%;
  padding: 3.12rem 4.88rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 59.375em) {
  .cabecalho__expansao-tipos {
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    position: static;
    background-color: #f9f9f9;
    flex-direction: column;
    gap: 2rem;
    transition: max-height 0.3s ease-in-out;
  }
}

.cabecalho__imagem {
  display: none;
  max-height: 35rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cabecalho__imagem {
    display: block;
  }
}

/* Ícones de Navegação e Perfil */
.cabecalho__icones {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: start;
  gap: 1.02rem;
}
@media (max-width: 59.375em) {
  .cabecalho__icones {
    gap: 0.45rem;
    position: relative;
    right: -0.2rem;
  }
}
.cabecalho__icone {
  color: inherit;
  fill: currentColor;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.cabecalho__icone--logado {
  display: none;
  fill: transparent;
  stroke: currentColor;
}
.cabecalho__icone--notificacao {
  fill: transparent;
  stroke: currentColor;
}
.cabecalho__link-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  line-height: 0;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
@media (max-width: 59.375em) {
  .cabecalho__link-icone {
    width: 3.6rem;
    height: 3.6rem;
  }
}
.cabecalho__link-icone--notificacoes {
  border: none;
  background: transparent;
  padding: 0;
}
@media (max-width: 59.375em) {
  .cabecalho__link-icone--notificacoes {
    width: 3.3rem;
    height: 3.3rem;
  }

  .cabecalho__icone-carrinho--notificacoes {
    margin-right: -0.2rem;
  }
}
.cabecalho__link-icone:hover {
  color: #111827;
  background-color: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.cabecalho__link-icone--logado .cabecalho__icone {
  display: none;
}
.cabecalho__link-icone--logado .cabecalho__icone--logado {
  display: block;
}
.cabecalho__icone-carrinho {
  position: relative;
}
.cabecalho__itens {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(55%, -55%);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  background-color: red;
  color: #fff;
  font-size: 1.11rem;
  align-items: center;
  justify-content: center;
}
.cabecalho__itens--visivel {
  display: flex;
}

.cabecalho__informacoes-perfil {
  display: none;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: start;
  gap: 1.28rem;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translate(0.1rem, 7.5%);
  width: max-content;
  border-radius: 0.5rem;
  padding: 3.12rem 2rem;
  background-color: #fff;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}
.cabecalho__informacoes-perfil--aberto {
  display: flex;
}

.cabecalho__painel-notificacoes {
  position: absolute;
  top: calc(100% + 1.2rem);
  right: 0;
  width: min(46rem, 90vw);
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2.2rem 5rem rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 10020;
}

.cabecalho__painel-notificacoes-topo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.cabecalho__painel-notificacoes-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.cabecalho__painel-notificacoes-subtitulo,
.cabecalho__painel-notificacoes-texto {
  font-size: 1.2rem;
  line-height: 1.45;
  color: #64748b;
}

.cabecalho__notificacoes-botao,
.cabecalho__notificacoes-acao {
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.cabecalho__notificacoes-acao {
  padding: 0.4rem 0;
  font-weight: 600;
}

.cabecalho__painel-notificacoes-lista {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  max-height: 34rem;
  overflow-y: auto;
  padding-right: 1.2rem;
}

.cabecalho__notificacao-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0;
  padding: 1.6rem 0.8rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background-color 0.2s ease;
}

.cabecalho__notificacao-item:hover {
  transform: none;
  box-shadow: none;
  background-color: #f8fafc;
}

.cabecalho__notificacao-item:last-child {
  border-bottom: none;
}

.cabecalho__notificacao-item strong {
  font-size: 1.35rem;
  color: #0f172a;
}

.cabecalho__notificacao-item p {
  font-size: 1.2rem;
  line-height: 1.45;
  color: #475569;
}

.cabecalho__notificacao-item--imagem {
  gap: 0.8rem;
}

.cabecalho__notificacao-item--campanha {
  border-radius: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 1.4rem;
  margin-bottom: 0.8rem;
}

.cabecalho__notificacao-item--campanha-informativo {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), #ffffff);
}

.cabecalho__notificacao-item--campanha-novidade {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), #ffffff);
  border-color: rgba(59, 130, 246, 0.18);
}

.cabecalho__notificacao-item--campanha-oferta {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.98), #ffffff);
  border-color: rgba(249, 115, 22, 0.2);
}

.cabecalho__notificacao-item--evento-avakin {
  gap: 0.95rem;
}

.cabecalho__notificacao-cabecalho-evento {
  display: grid;
  gap: 0.35rem;
}

.cabecalho__notificacao-titulo-evento {
  font-size: 1.65rem;
  line-height: 1.15;
  color: #0f172a;
}

.cabecalho__notificacao-subtitulo-evento {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.4;
  color: #111827;
}

.painel-permissao-fomo {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: 1.2rem;
  background-color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.2);
  opacity: 0.65; /* Efeito apagado/desativado */
  transition: all 0.3s ease;
}

.painel-permissao-fomo:hover {
  opacity: 1; /* Acende ao passar o mouse */
  background-color: #f1f5f9;
}

.painel-permissao-fomo .icone-apagado span {
  font-size: 2.8rem;
  color: #94a3b8;
}

.painel-permissao-fomo .texto-persuasivo {
  flex: 1;
  text-align: left;
}

.btn-toggle-simulado {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-toggle-simulado:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.25);
}

/* ==================================================
   VARIAÇÃO TEMA ESCURO (BLACK) PARA O NOVO PAINEL
================================================== */
.cabecalho--black .painel-permissao-fomo {
  background: rgba(15, 23, 42, 0.4);
  border-color: rgba(255, 255, 255, 0.08);
}

.cabecalho--black .painel-permissao-fomo:hover {
  background: rgba(30, 41, 59, 0.8);
}

.cabecalho--black .painel-permissao-fomo .icone-apagado span {
  color: #475569;
}

.cabecalho--black .btn-toggle-simulado {
  background-color: #06b6d4;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.cabecalho--black .btn-toggle-simulado:hover {
  background-color: #22d3ee;
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.4);
}

.cabecalho__notificacao-midia {
  width: 100%;
  overflow-x: auto;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  padding: 0.8rem 0;
}
.cabecalho__notificacao-midia img {
  display: block;
  width: auto;
  max-height: 8rem;
  object-fit: contain;
  border-radius: 0.6rem;
}

.cabecalho__notificacao-item--evento-avakin .cabecalho__notificacao-midia {
  border-radius: 0.8rem;
}

.cabecalho__notificacao-midia::-webkit-scrollbar {
  display: none;
}

.cabecalho__notificacao-rodape-evento {
  display: flex;
  justify-content: flex-end;
}

.cabecalho__notificacao-item--nova {
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.95), #ffffff);
}

.cabecalho__notificacao-item--lida {
  opacity: 0.82;
}

.cabecalho__notificacao-data {
  font-size: 1.1rem;
  color: #94a3b8;
}

.cabecalho__notificacao-data--imagem {
  align-self: flex-end;
  font-size: 1.15rem;
  font-weight: 600;
}

.cabecalho__notificacao-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cabecalho__notificacao-tag--pedido_concluido {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.cabecalho__notificacao-tag--novo_produto {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

.cabecalho__notificacao-tag--desconto_loja {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
}

.cabecalho__notificacao-tag--sistema {
  background: rgba(100, 116, 139, 0.14);
  color: #475569;
}

.cabecalho__notificacao-tag--azul {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

.cabecalho__notificacao-tag--verde {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.cabecalho__notificacao-tag--laranja {
  background: rgba(249, 115, 22, 0.14);
  color: #c2410c;
}

.cabecalho__notificacao-tag--rosa {
  background: rgba(236, 72, 153, 0.14);
  color: #be185d;
}

.cabecalho__notificacao-tag--vermelho {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.cabecalho__notificacao-tag--cinza {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}

.cabecalho__notificacao-vazia {
  padding: 2rem 1rem;
  text-align: center;
  color: #64748b;
}

.cabecalho__notificacao-vazia strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #0f172a;
}

/* Variação Tema Escuro (Black) */

.cabecalho--black .cabecalho__lista {
  background-color: var(--bg-preto);
}

.cabecalho--black .cabecalho__notificacao-item {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Mantém o hover suave no tema escuro para não ficar branco ao passar o mouse */
.cabecalho--black .cabecalho__notificacao-item:hover {
  background: rgba(30, 41, 59, 0.8);
}

.cabecalho--black .cabecalho__link,
.cabecalho--black .cabecalho__link--tipo {
  color: aliceblue;
}
.cabecalho--black .cabecalho__expansao-tipos {
  background-color: var(--bg-preto);
  z-index: 9999;
}
.cabecalho--black .cabecalho__informacoes-perfil {
  background: black;
}
.cabecalho--black .cabecalho__link-icone:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
.cabecalho--black .cabecalho__painel-notificacoes {
  background: rgba(10, 10, 10, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2.2rem 5rem rgba(0, 0, 0, 0.45);
}
.cabecalho--black .cabecalho__painel-notificacoes-titulo,
.cabecalho--black .cabecalho__notificacao-item strong,
.cabecalho--black .cabecalho__notificacao-vazia strong {
  color: #f8fafc;
}
.cabecalho--black .cabecalho__painel-notificacoes-subtitulo,
.cabecalho--black .cabecalho__painel-notificacoes-texto,
.cabecalho--black .cabecalho__notificacao-vazia,
.cabecalho--black .cabecalho__notificacao-item p {
  color: #94a3b8;
}
.cabecalho--black .cabecalho__notificacao-item--nova {
  background: linear-gradient(
    180deg,
    rgba(8, 47, 73, 0.7),
    rgba(15, 23, 42, 0.7)
  );
}
.cabecalho--black .cabecalho__notificacao-item--campanha-informativo {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.92));
}
.cabecalho--black .cabecalho__notificacao-item--campanha-novidade {
  background: linear-gradient(180deg, rgba(30, 64, 175, 0.24), rgba(15, 23, 42, 0.92));
  border-color: rgba(96, 165, 250, 0.24);
}
.cabecalho--black .cabecalho__notificacao-item--campanha-oferta {
  background: linear-gradient(180deg, rgba(154, 52, 18, 0.24), rgba(15, 23, 42, 0.92));
  border-color: rgba(251, 146, 60, 0.24);
}
.cabecalho--black {
  background-color: var(--bg-preto);
}

/* ==================================================
   Menu principal neon
================================================== */
.gc-nav,
.gc-nav * {
  box-sizing: border-box;
}

.gc-nav {
  min-height: 7.6rem;
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 211, 238, 0.08), transparent 34rem),
    rgba(5, 9, 16, 0.92);
  color: #f8fafc;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.gc-nav__brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.gc-nav__logo {
  width: 6.2rem;
  min-width: 6.2rem;
  max-height: 5.8rem;
  height: auto;
  object-fit: contain;
  margin-bottom: 2px;
  filter: none;
}

.gc-nav__menu-button {
  display: none;
  width: 4.4rem;
  height: 4.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-direction: column;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.76);
  color: #ffffff;
  cursor: pointer;
}

.gc-nav__menu-button span {
  width: 2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: currentColor;
}

.gc-desktop-menu {
  position: relative;
  justify-self: center;
  height: 7.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 6vw, 9rem);
}

.gc-desktop-menu__tab {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 0.35rem solid transparent;
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  transition:
    color 0.18s ease,
    border-color 0.18s ease;
}

.gc-desktop-menu__tab:hover,
.gc-desktop-menu__tab.is-active,
.gc-desktop-menu__tab:focus-visible {
  border-color: #12d9ef;
  color: #c9f8ff;
  outline: none;
}

.gc-desktop-menu__panel {
  position: absolute;
  top: calc(100% + 0.1rem);
  left: 50%;
  z-index: 10030;
  width: min(64rem, calc(100vw - 4rem));
  padding: 3rem;
  display: none;
  transform: translateX(-50%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 217, 239, 0.14), transparent 28rem),
    rgba(10, 15, 24, 0.96);
  box-shadow:
    0 2.4rem 6rem rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(22px);
}

.gc-desktop-menu__panel.is-open {
  display: grid;
  gap: 2.4rem;
}

.gc-desktop-menu__panel-pointer {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  width: 1.7rem;
  height: 1.7rem;
  transform: translateX(-50%) rotate(45deg);
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  border-left: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(10, 15, 24, 0.96);
}

.gc-desktop-menu__panel-head {
  display: grid;
  grid-template-columns: 6.4rem minmax(0, 1fr);
  align-items: center;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
}

.gc-desktop-menu__panel-head img {
  width: 6.4rem;
  height: 6.4rem;
}

.gc-desktop-menu__panel-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.gc-desktop-menu__panel-head p {
  margin: 0.8rem 0 0;
  color: #9ba8bf;
  font-size: 1.45rem;
  font-weight: 650;
}

.gc-desktop-menu__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.gc-desktop-menu__links a,
.gc-mobile-menu__section-body a {
  min-width: 0;
  display: grid;
  grid-template-columns: 4.2rem minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.2rem;
  background: rgba(15, 23, 42, 0.62);
  color: #f8fafc;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.gc-desktop-menu__links a {
  min-height: 7.2rem;
  padding: 1.2rem 1.4rem;
}

.gc-desktop-menu__links a:hover,
.gc-mobile-menu__section-body a:hover {
  border-color: rgba(18, 217, 239, 0.62);
  background: rgba(14, 26, 39, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 1.4rem 2.8rem rgba(0, 211, 238, 0.09);
}

.gc-desktop-menu__links a > .material-symbols-outlined:first-child,
.gc-mobile-menu__section-body a > .material-symbols-outlined:first-child,
.gc-nav__xp-icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 217, 239, 0.22);
  border-radius: 1rem;
  background: rgba(1, 13, 24, 0.82);
  color: #10d9ee;
  font-size: 2.2rem;
  font-variation-settings: "FILL" 0, "wght" 650, "GRAD" 0, "opsz" 24;
}

.gc-nav__xp-icon {
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.gc-desktop-menu__links a strong,
.gc-mobile-menu__section-body a strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #f8fafc;
  font-size: 1.45rem;
  font-weight: 850;
}

.gc-desktop-menu__links a > .material-symbols-outlined:last-child,
.gc-mobile-menu__section-body a > .material-symbols-outlined:last-child {
  color: #10d9ee;
  font-size: 2.6rem;
}

.gc-nav__actions {
  justify-self: end;
  gap: 1.2rem;
}

.gc-nav .cabecalho__link-icone {
  width: 4.4rem;
  height: 4.4rem;
  color: #f8fafc;
}

.gc-nav .cabecalho__link-icone:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.gc-nav__help {
  width: auto !important;
  min-width: 10.8rem;
  padding: 0 1.6rem;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  background: rgba(30, 41, 59, 0.72) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0.8rem 2rem rgba(0, 0, 0, 0.18);
}

.gc-nav .cabecalho__icone-ajuda {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
}

.gc-nav .cabecalho__icone-ajuda-svg {
  width: 100%;
  height: 100%;
}

.gc-nav .cabecalho__texto-ajuda {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 850;
}

.gc-nav .cabecalho__informacoes-perfil {
  top: calc(100% + 1.2rem);
  right: 0;
  z-index: 10040;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.4rem;
  background: rgba(10, 15, 24, 0.98);
  color: #f8fafc;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.38);
}

.gc-nav .cabecalho__informacoes-perfil .cabecalho__link {
  color: #f8fafc;
}

.gc-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10081;
  display: none;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(7px);
}

.gc-mobile-menu {
  --gc-mobile-menu-top: 9rem;
  --gc-mobile-menu-edge-gap: 2.4rem;
  --gc-mobile-menu-scroll-offset: 12.8rem;
  position: fixed;
  top: var(--gc-mobile-menu-top);
  left: 2.4rem;
  z-index: 10082;
  width: clamp(33rem, 82vw, 46.5rem);
  max-width: calc(100vw - 4.8rem);
  height: auto;
  max-height: calc(100vh - var(--gc-mobile-menu-top) - var(--gc-mobile-menu-edge-gap));
  max-height: calc(100dvh - var(--gc-mobile-menu-top) - var(--gc-mobile-menu-edge-gap));
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 211, 238, 0.13), transparent 22rem),
    rgba(9, 14, 23, 0.96);
  color: #f8fafc;
  box-shadow:
    0 2.4rem 6rem rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateX(calc(-100% - 4rem));
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.gc-mobile-menu::-webkit-scrollbar {
  display: none;
}

.gc-mobile-menu__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 2.8rem;
  padding-bottom: 0.2rem;
  background: linear-gradient(180deg, rgba(9, 14, 23, 0.98) 0%, rgba(9, 14, 23, 0.88) 82%, transparent 100%);
}

.gc-mobile-menu__header button {
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.gc-mobile-menu__header button .material-symbols-outlined {
  font-size: 3.4rem;
}

.gc-mobile-menu__header strong {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1;
}

.gc-mobile-menu__content {
  flex: 0 1 auto;
  min-height: 0;
  max-height: calc(100vh - var(--gc-mobile-menu-top) - var(--gc-mobile-menu-edge-gap) - var(--gc-mobile-menu-scroll-offset));
  max-height: calc(100dvh - var(--gc-mobile-menu-top) - var(--gc-mobile-menu-edge-gap) - var(--gc-mobile-menu-scroll-offset));
  display: grid;
  align-content: start;
  gap: 1.6rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  padding-right: 0.2rem;
  scrollbar-width: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

.gc-mobile-menu__content::-webkit-scrollbar {
  display: none;
}

.gc-mobile-menu__section {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.4rem;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.16);
  overflow: clip;
}

.gc-mobile-menu__section.is-open {
  border-color: rgba(18, 217, 239, 0.72);
  overflow: visible;
  box-shadow:
    0 1.5rem 3.4rem rgba(0, 211, 238, 0.08),
    inset 0 0 0 1px rgba(18, 217, 239, 0.18);
}

.gc-mobile-menu__section-head {
  width: 100%;
  min-height: 8.4rem;
  display: grid;
  grid-template-columns: 6.4rem minmax(0, 1fr) 2.8rem;
  align-items: center;
  gap: 1.6rem;
  padding: 1.4rem 2rem;
  border: 0;
  background: transparent;
  color: #f8fafc;
  cursor: pointer;
  text-align: left;
}

.gc-mobile-menu__section-head img {
  width: 6.4rem;
  height: 6.4rem;
}

.gc-mobile-menu__section-head span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f8fafc;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.gc-mobile-menu__section-head .material-symbols-outlined {
  color: #bdd4ff;
  font-size: 3rem;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.gc-mobile-menu__section.is-open .gc-mobile-menu__section-head .material-symbols-outlined {
  color: #12d9ef;
  transform: rotate(180deg);
}

.gc-mobile-menu__section-body {
  display: none;
  gap: 1.2rem;
  padding: 0 2rem 2rem;
}

.gc-mobile-menu__section.is-open .gc-mobile-menu__section-body {
  display: grid;
}

.gc-mobile-menu__section-body p {
  margin: 0.2rem 0 1.2rem;
  color: #aeb8cc;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.55;
}

.gc-mobile-menu__section-body a {
  min-height: 7.6rem;
  padding: 1.3rem 1.4rem;
}

body.gc-nav-open {
  overflow: hidden;
}

body.gc-nav-open .gc-mobile-menu,
body.gc-nav-open .gc-mobile-menu__content {
  touch-action: pan-y;
}

body.gc-nav-open .gc-mobile-backdrop {
  display: block;
}

body.gc-nav-open .gc-mobile-menu {
  transform: translateX(0);
}

@media (min-width: 59.376em) {
  .gc-nav--homepage {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .gc-nav--homepage .gc-desktop-menu,
  .gc-nav--homepage .gc-nav__brand,
  body.homepage-layout .gc-desktop-menu,
  body.homepage-layout .gc-nav__brand {
    display: none;
  }

  .gc-nav--homepage .gc-nav__actions {
    grid-column: 2;
  }
}

@media (max-width: 59.375em) {
  .gc-nav {
    min-height: 7.2rem;
    grid-template-columns: 5rem minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 0 1.4rem;
    z-index: 10080 !important;
  }

  .gc-nav__menu-button {
    display: inline-flex;
  }

  .gc-nav__brand {
    justify-self: center;
  }

  .gc-nav__logo {
    width: 6.2rem;
    min-width: 6.2rem;
    max-height: 5.8rem;
    height: auto;
  }

  .gc-desktop-menu {
    display: none;
  }

  .gc-nav__actions {
    gap: 0.4rem;
  }

  .gc-nav .cabecalho__link-icone {
    width: 3.8rem;
    height: 3.8rem;
  }

  .gc-nav__help {
    min-width: 0;
    width: 3.8rem !important;
    padding: 0;
  }

  .gc-nav .cabecalho__texto-ajuda {
    display: none;
  }
}

@media (max-width: 37.5em) {
  .gc-mobile-menu {
    --gc-mobile-menu-top: 8.8rem;
    --gc-mobile-menu-edge-gap: 1.6rem;
    --gc-mobile-menu-scroll-offset: 10.6rem;
    left: 1.6rem;
    right: auto;
    bottom: auto;
    width: clamp(32rem, 82vw, 46rem);
    max-width: calc(100vw - 3.2rem);
    padding: 1.8rem;
  }

  .gc-mobile-backdrop {
    z-index: 10081;
  }

  .gc-mobile-menu {
    z-index: 10082;
  }

  .gc-mobile-menu__header {
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .gc-mobile-menu__section-head {
    min-height: 7.4rem;
    grid-template-columns: 5.4rem minmax(0, 1fr) 2.6rem;
    padding: 1rem 1.4rem;
  }

  .gc-mobile-menu__section-head img {
    width: 5.4rem;
    height: 5.4rem;
  }

  .gc-mobile-menu__section-head span:nth-child(2) {
    font-size: 1.75rem;
  }

  .gc-mobile-menu__section-body {
    padding: 0 1.4rem 1.4rem;
  }

  .gc-mobile-menu__section-body a {
    min-height: 6.8rem;
    grid-template-columns: 4rem minmax(0, 1fr) 2rem;
  }
}

@media (max-width: 26em), (max-height: 44em) {
  .gc-mobile-menu {
    --gc-mobile-menu-top: 8.2rem;
    --gc-mobile-menu-edge-gap: 0.8rem;
    --gc-mobile-menu-scroll-offset: 8.8rem;
    left: 0.8rem;
    width: calc(100vw - 1.6rem);
    max-width: calc(100vw - 1.6rem);
    padding: 1.4rem;
    border-radius: 1.4rem;
  }

  .gc-mobile-menu__header {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1.1rem;
    margin-bottom: 1.4rem;
  }

  .gc-mobile-menu__header button {
    width: 4rem;
    height: 4rem;
  }

  .gc-mobile-menu__header button .material-symbols-outlined {
    font-size: 3rem;
  }

  .gc-mobile-menu__header strong {
    font-size: 2.8rem;
  }

  .gc-mobile-menu__content {
    gap: 1.2rem;
    padding-right: 0;
  }

  .gc-mobile-menu__section {
    border-radius: 1.2rem;
  }

  .gc-mobile-menu__section-head {
    min-height: 6.4rem;
    grid-template-columns: 4.8rem minmax(0, 1fr) 2.4rem;
    gap: 1.1rem;
    padding: 0.8rem 1.2rem;
  }

  .gc-mobile-menu__section-head img {
    width: 4.8rem;
    height: 4.8rem;
  }

  .gc-mobile-menu__section-head span:nth-child(2) {
    font-size: 1.55rem;
  }

  .gc-mobile-menu__section-body {
    gap: 0.9rem;
    padding: 0 1.2rem 1.2rem;
  }

  .gc-mobile-menu__section-body p {
    margin: 0 0 0.8rem;
    font-size: 1.34rem;
    line-height: 1.45;
  }

  .gc-mobile-menu__section-body a {
    min-height: 5.8rem;
    grid-template-columns: 3.6rem minmax(0, 1fr) 1.8rem;
    gap: 1rem;
    padding: 1rem 1.1rem;
  }

  .gc-mobile-menu__section-body a > .material-symbols-outlined:first-child,
  .gc-nav__xp-icon {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 2rem;
  }

  .gc-mobile-menu__section-body a strong {
    font-size: 1.28rem;
  }
}

@media (min-width: 59.376em) {
  .gc-nav__menu-button,
  .gc-mobile-backdrop,
  .gc-mobile-menu {
    display: none !important;
  }
}

/* --- Rodape global: contatos e links legais --- */
.site-footer {
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(56, 171, 107, 0.08), transparent 22rem),
    #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2.4rem 1.8rem 3rem;
}

.site-footer__inner {
  width: min(90rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
}

.site-footer__social {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  color: #151515;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.site-footer__social-link i {
  font-size: 2.8rem;
  line-height: 1;
}

.site-footer__social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-footer__social-link:hover {
  color: #1d6a44;
  background: rgba(56, 171, 107, 0.08);
  transform: translateY(-2px);
}

.site-footer__legal {
  display: grid;
  gap: 0.55rem;
}

.site-footer__legal a {
  color: #3f4652;
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: #111827;
  text-decoration: underline;
}

.site-footer__note {
  max-width: 48rem;
  color: #6b7280;
  font-size: 1.2rem;
  line-height: 1.5;
}

.cabecalho--black ~ .site-footer {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 24rem),
    var(--bg-preto);
  border-top-color: rgba(255, 255, 255, 0.08);
}

.cabecalho--black ~ .site-footer .site-footer__social-link,
.cabecalho--black ~ .site-footer .site-footer__legal a {
  color: #f8fafc;
}

.cabecalho--black ~ .site-footer .site-footer__note {
  color: #a3a3a3;
}

body.homepage-layout.sidebar-open-desktop .site-footer {
  display: none;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3.2rem 2.4rem 3.8rem;
  }

  .site-footer__inner {
    gap: 1.8rem;
  }

  .site-footer__legal {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 1.2rem 2rem;
  }
}

/* --- RODAPÉ --- */
.rodape {
  font-size: 1.33rem;
  padding-top: 2.5rem;
}
.rodape--carrinho .rodape__secao-formulario {
  display: none;
}
.rodape--conta {
  padding-top: 0;
}
.rodape__secao-informacoes {
  padding: 3.12rem 2rem;
}
.rodape__container {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.6rem;
  max-width: 136.6rem;
  margin: 0 auto;
}
@media (max-width: 59.375em) {
  .rodape__container {
    flex-direction: column;
    gap: 3.12rem;
    align-items: center;
  }
}
.rodape__secao-formulario {
  background-color: #f9f9f9;
  padding: 3.12rem 2rem;
}

/* App & Newsletter */
.rodape__app-newsletter {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 4.88rem;
  max-width: 136.6rem;
  margin: 0 auto;
}
@media (max-width: 59.375em) {
  .rodape__app-newsletter {
    flex-direction: column;
    max-width: 66rem;
  }
}
.rodape__app,
.rodape__newsletter {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
@media (max-width: 59.375em) {
  .rodape__app,
  .rodape__newsletter {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.rodape__container-app,
.rodape__container-newsletter {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.6rem;
}
.rodape__logo {
  min-width: 1.8rem;
  height: 2.3rem;
}
.rodape__texto-newsletter {
  font-size: 3.32rem;
  font-family: serif;
  font-weight: 700;
  line-height: 1;
}
.rodape__imagens-loja {
  max-height: 4.2rem;
}

/* Infos e Links Rodapé */
.rodape__informacoes {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.6rem;
  max-width: 60%;
  width: 100%;
}
@media (max-width: 59.375em) {
  .rodape__informacoes {
    max-width: 66rem;
  }
}
@media (max-width: 30em) {
  .rodape__informacoes {
    flex-wrap: wrap;
    text-align: center;
  }
}
.rodape__informacao {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.6rem;
}
@media (max-width: 30em) {
  .rodape__informacao {
    min-width: 100%;
  }
}
.rodape__links {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.65rem;
  list-style: none;
  color: #585858;
}
.rodape__links a {
  text-decoration: none;
  color: inherit;
}
.rodape__links a:hover {
  text-decoration: underline;
}
.rodape__titulo {
  font-family: serif;
  font-size: 1.92rem;
  font-weight: 700;
}

.rodape__atendimento {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.6rem;
  width: 100%;
  max-width: 46.4rem;
}
@media (max-width: 59.375em) {
  .rodape__atendimento {
    max-width: 60rem;
    text-align: center;
  }
}
.rodape__ancoras {
  display: flex;
  flex-flow: row wrap;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}
.rodape__ancora-icone {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration-thickness: 1px;
  color: inherit;
  width: 50%;
}
@media (max-width: 59.375em) {
  .rodape__ancora-icone {
    width: auto;
    flex: 1;
    justify-content: center;
  }
}
.rodape__icone {
  width: 2rem;
}
.rodape__horarios {
  font-size: 1.11rem;
}
.rodape__redes {
  margin-top: 2rem;
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
}
.rodape__rede {
  opacity: 0.6;
  filter: grayscale(1);
}
.rodape__rede:hover {
  opacity: 1;
  filter: none;
}

/* Diferenciais e Certificações */
.rodape__diferenciais {
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  gap: 2rem;
  margin: 6.1rem auto;
}
@media (max-width: 30em) {
  .rodape__diferenciais {
    flex-wrap: wrap;
  }
}
.rodape__diferencial {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 0.65rem;
  opacity: 0.5;
  max-width: 25rem;
  text-align: center;
}
.rodape__diferencial-imagem {
  max-height: 5rem;
  width: auto;
}
.rodape__diferencial-titulo {
  font-size: 1.6rem;
  font-weight: 600;
}

.rodape__certificacoes {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 59.375em) {
  .rodape__certificacoes {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4.88rem;
  }
  .rodape__certificacao:nth-child(2) {
    order: -1;
    width: 100%;
  }
}
.rodape__certificacao {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.6rem;
}
.rodape__certificacao-titulo {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 59.375em) {
  .rodape__certificacao-titulo {
    text-align: center;
  }
}
.rodape__certificados {
  display: flex;
  align-items: center;
  gap: 1.02rem;
}
@media (max-width: 59.375em) {
  .rodape__certificados {
    justify-content: center;
  }
}
.rodape__certificado--opacidade {
  opacity: 0.3;
}
.rodape__certificado--opacidade:hover {
  opacity: 1;
}
.rodape__secao-empresa {
  display: flex;
  justify-content: center;
  background-color: #f0f0f0;
  font-size: 1.11rem;
  opacity: 0.5;
  padding: 1.28rem;
  text-align: center;
}
