/* Unísono: footer más compacto + degradado en las 3 columnas al contraer */

.site-footer--unisono {
  overflow-x: hidden;
}

.site-footer--unisono .site-footer__inner {
  padding-top: 16px;
  padding-bottom: 6px;
  padding-left: 6vw;
  padding-right: 6vw;
}

.site-footer--unisono .site-footer__col {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 4px;
}

.site-footer--unisono .site-footer p {
  margin-bottom: 6px;
}

.site-footer--unisono .site-footer__links {
  margin-bottom: 8px;
}

.site-footer--unisono .unisono-footer-toggle-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0 2px;
  box-sizing: border-box;
}

.site-footer--unisono .unisono-footer-body {
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* Contraído: recorte + degradado en las tres columnas */
.site-footer--unisono:not(.is-footer-expanded) .site-footer__col .unisono-footer-body {
  position: relative;
  max-height: 6.75rem;
}

.site-footer--unisono:not(.is-footer-expanded) .site-footer__col .unisono-footer-body::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78%;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 22%,
    rgba(255, 255, 255, 0.65) 55%,
    #fff 92%,
    #fff 100%
  );
}

.site-footer--unisono.is-footer-expanded .site-footer__col .unisono-footer-body {
  max-height: 120rem;
}

.unisono-footer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px 24px 6px;
  border: none;
  background: transparent;
  color: rgba(17, 17, 17, 0.45);
  cursor: pointer;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.unisono-footer-toggle:hover {
  color: rgba(17, 17, 17, 0.85);
  background: rgba(0, 0, 0, 0.04);
}

.unisono-footer-toggle:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.unisono-footer-toggle svg {
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.unisono-footer-toggle.is-expanded svg {
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .site-footer--unisono .site-footer__inner {
    padding-top: 12px;
    padding-bottom: 4px;
  }

  .site-footer--unisono:not(.is-footer-expanded) .site-footer__col .unisono-footer-body {
    max-height: 5.5rem;
  }

  .site-footer--unisono:not(.is-footer-expanded) .site-footer__col .unisono-footer-body::after {
    height: 82%;
  }
}
