.site-footer {
  overflow: hidden;
  background: #fffdfb;
  color: #38213e;
  font-family: "Poppins", sans-serif;
}

.site-footer__container {
  width: min(100% - 2.5rem, 1120px);
  margin: 0 auto;
}

.site-footer__contact-strip {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--vida-yellow);
  background: linear-gradient(110deg, #742566, #a72d8f 52%, #7e296f);
}

.site-footer__contact-strip::after {
  position: absolute;
  top: -8rem;
  right: -4rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  content: "";
}

.site-footer__contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 1.75rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid rgb(255 255 255 / 18%);
  color: #fff;
  text-decoration: none;
  transition: background-color 180ms ease;
}

.site-footer__contact-item:first-child {
  padding-left: 0;
}

.site-footer__contact-item:last-child {
  border-right: 0;
}

.site-footer__contact-item:hover {
  background: rgb(255 255 255 / 9%);
}

.site-footer__contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 12%);
  color: #f9c536;
}

.site-footer__contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.site-footer__contact-item strong,
.site-footer__contact-item small {
  display: block;
}

.site-footer__contact-item strong {
  font-size: 1rem;
}

.site-footer__contact-item small {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  opacity: 0.84;
}

.site-footer__main {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(15rem, 1.25fr) minmax(10rem, 0.85fr) minmax(14rem, 0.9fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.site-footer__reveal {
  opacity: 0;
  transform: translateY(1.4rem);
}

.site-footer.is-visible .site-footer__reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease-out, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__brand img {
  display: block;
  width: min(12.5rem, 100%);
  height: auto;
}

.site-footer__brand p {
  max-width: 24rem;
  margin: 1.35rem 0 1.75rem;
  color: #6b5a70;
  font-size: 0.92rem;
  line-height: 1.75;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-footer__socials a {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgb(116 37 102 / 16%);
  border-radius: 50%;
  background: #fff;
  color: #922d82;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer__socials a:hover {
  background: #922d82;
  color: #fff;
  transform: translateY(-0.2rem);
}

.site-footer h2 {
  margin: 0 0 1.25rem;
  color: #7d2671;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__links ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links a,
.site-footer__service a {
  color: #5e4c64;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.site-footer__links a:hover {
  padding-left: 0.35rem;
  color: #a72d8f;
}

.site-footer__service p,
.site-footer__service a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.site-footer__service span {
  color: #a72d8f;
  font-size: 1.1rem;
}

.site-footer__bottom {
  padding: 1.8rem 0;
  background: #27112f;
  color: rgb(255 255 255 / 72%);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0.35rem 0;
  font-size: 0.72rem;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .site-footer__contact-grid,
  .site-footer__content {
    grid-template-columns: 1fr;
  }

  .site-footer__contact-item,
  .site-footer__contact-item:first-child {
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .site-footer__contact-item:last-child {
    border-bottom: 0;
  }

  .site-footer__content {
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .site-footer__container {
    width: min(100% - 2rem, 1120px);
  }
}
