/* ==========================
   RODAPÉ OFICIAL — marca, redes e dados legais
========================== */
.rodape-oficial {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 52px 0 32px;
}

.rodape-topo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.rodape-marca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--branco);
}

.rodape-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.rodape-marca-texto {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.rodape-acoes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.rodape-redes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rodape-redes a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rodape-redes a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.rodape-redes a:hover {
  border-color: var(--dourado);
  background: rgba(239, 201, 117, 0.12);
}

.rodape-linha {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.rodape-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.rodape-legal a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 768px) {
  .rodape-oficial {
    gap: 36px;
    padding: 60px 0 36px;
  }

  .rodape-topo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
  }

  .rodape-marca {
    align-items: flex-start;
  }

  .rodape-acoes {
    flex-direction: row;
    gap: 28px;
  }

  .rodape-legal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
  }
}

/* ==========================
   RODAPÉ DO ABAIXO-ASSINADO — dados legais
========================== */
.petition-footer-legal {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(228, 222, 210, 0.65);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.petition-footer-legal a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 2px;
}
