.sa-footer {
  background: var(--sc-blue);
  padding: clamp(32px, 5vh, 56px) 0 clamp(40px, 5vh, 64px);
  position: relative;
}
.sa-footer__bg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.sa-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--sc-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

/* Brand: escudo + divisor + logo */
.sa-footer__brand {
  display: flex;
  align-items: center;
  gap: 40px;
}
.sa-footer__escudo {
  height: 100px;
  width: auto;
}
.sa-footer__divider {
  width: 4px;
  height: 80px;
  background: var(--sc-orange);
  flex-shrink: 0;
  border-radius: 4px;
}
.sa-footer__logo-link { display: inline-block; }
.sa-footer__logo {
  height: 100px;
  width: auto;
  display: block;
}

/* Social */
.sa-footer__social-section {
  display: flex;
  align-items: center;
  gap: 32px;
}
.sa-footer__social-label {
  font-size: 32px;
  font-weight: 700;
  color: var(--sc-orange);
  line-height: 1.3;
  text-transform: uppercase;
}
.sa-footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sa-footer__social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity .15s;
}
.sa-footer__social-row:hover { opacity: .75; }
.sa-footer__social-icon {
  width: 32px;
  height: 32px;
  border-radius: 20%;
  background: var(--sc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.sa-footer__social-username {
  font-size: 15px;
  font-weight: 400;
  color: var(--sc-orange);
  line-height: 1.2;
}

.sa-footer__copy {
  font-size: clamp(10px, 0.85vw, 13px);
  color: #888;
  text-align: center;
  width: 100%;
  margin-top: clamp(12px, 2vh, 20px);
  padding-top: clamp(12px, 2vh, 20px);
  border-top: 1px solid #e0d9ce;
}
