/* Footer reutilitzable — Secrets públics */

.site-footer {
  display: none !important;
}

.sp-footer {
  background: var(--burgundy, #8d0f35);
  color: #fff;
  margin-top: 70px;
}

.sp-footer__inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(24px, 5vw, 72px);
}

.sp-footer__brand strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
}

.sp-footer__brand span {
  display: block;
  font-size: 1.05rem;
  opacity: 0.88;
}

.sp-footer__links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
}

.sp-footer__links a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.55);
}

.sp-footer__links a:hover {
  border-bottom-color: #fff;
}

@media (max-width: 760px) {
  .sp-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sp-footer__links {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
