.site-footer {
  background: #000200;
  color: #fff;
  padding: 6.25rem clamp(1rem, 3vw, 1.875rem) 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer__inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__about {
  margin: 0;
  max-width: 403px;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.75rem;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 1.95rem;
}

.site-footer__nav a,
.site-footer__legal-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer__nav a:hover,
.site-footer__legal-links a:hover {
  text-decoration: underline;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.site-footer__social a {
  min-height: 2rem;
  padding: 0.25rem 0.7rem 0.25rem 0.25rem;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #000200;
  text-decoration: none;
  font-family: "Geist", "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-footer__social-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__social a img {
  width: 0.95rem;
  height: 0.95rem;
  transition: filter 220ms ease;
}

.site-footer__social-text {
  line-height: 1;
}

.site-footer__social a:hover {
  background: #ff7a00;
  transform: scale(1.12);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.35);
  color: #fff;
}

.site-footer__social a:hover img {
  filter: brightness(0) invert(1);
}

.site-footer__social a:hover .site-footer__social-icon {
  background: transparent;
}

.site-footer__brand {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Geist", "Manrope", sans-serif;
  font-size: clamp(3.2rem, 14vw, 12rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.08em;
  white-space: nowrap;
  background: linear-gradient(180deg, #f0f0f0 0%, #000 80.069%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

.site-footer__bottom {
  margin-top: -0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-footer__legal-links a,
.site-footer__bottom p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 500;
}

.site-footer__bottom p {
  font-family: "Geist", "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.57;
}

.site-footer__floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__selo-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  display: block;
}

.site-footer__selo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: opacity 260ms ease, transform 260ms ease;
  transform-origin: center center;
}

.site-footer__selo--light {
  opacity: 1;
}

.site-footer__selo--dark {
  opacity: 0;
  transform: scale(1.24);
}

.site-footer__floating-actions[data-selo-theme="dark"] .site-footer__selo--light {
  opacity: 0;
}

.site-footer__floating-actions[data-selo-theme="dark"] .site-footer__selo--dark {
  opacity: 1;
}

.site-footer__whatsapp {
  border-radius: 999px;
  line-height: 0;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--brand-color-secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .site-footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__about {
    max-width: 100%;
    text-align: center;
  }

  .site-footer__right {
    width: 100%;
    align-items: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
}
