/* Assinatura institucional do rodapé */
.footer-signature-row {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 28px;
  padding: 34px 40px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 20%, rgba(242,183,5,.16), transparent 28%),
    linear-gradient(135deg, #111820 0%, #090d12 72%);
  box-shadow: 0 22px 55px rgba(11,15,20,.16);
}

.footer-signature-row::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 62%, rgba(255,255,255,.06) 62.2%, transparent 62.5%);
}

.footer-signature-row p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-align: center;
}

.footer-signature-row p::before,
.footer-signature-row p::after {
  content: '';
  display: inline-block;
  width: clamp(28px, 5vw, 72px);
  height: 2px;
  margin: 0 20px .25em;
  vertical-align: middle;
  background: rgba(242,183,5,.72);
}

.footer-signature-row span,
.footer-signature-row strong {
  color: #fff;
  font-weight: 900;
}

.footer-signature-row strong {
  color: var(--yellow);
}

@media (max-width: 700px) {
  .footer-signature-row {
    width: min(100% - 28px, 1180px);
    margin-top: 38px;
    padding: 28px 20px;
    border-radius: 14px;
  }

  .footer-signature-row p {
    font-size: clamp(22px, 7vw, 32px);
  }

  .footer-signature-row p::before,
  .footer-signature-row p::after {
    display: none;
  }
}
