/* Footer */
.site-footer {
  background: #121520;
  color: #bfc6d1;
  font-family: var(--font-primary);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 6rem 1rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-companies-centered {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-companies {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  font-size: var(--typo-small-size);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-companies a,
.footer-icons a {
  color: #bfc6d1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-companies a:hover,
.footer-companies a:focus,
.footer-icons a:hover,
.footer-icons a:focus {
  color: #fff;
  outline: none;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-icons a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-bottom {
  background: #141824;
  color: #bfc6d1;
  font-family: var(--font-system);
  font-size: 0.75rem;
}

.footer-bottom p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.125rem 2rem;
  text-align: center;
}

/* Logo Footer Decorativo */
.footer-logo-decorative {
  background: #121520;
  padding: 0;
  overflow: hidden;
  height: 720px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: 100vw;
  margin: 0;
  margin-left: calc(-50vw + 50%);
}

.decorative-logo {
  width: 100%;
  height: 300px;
  filter: brightness(0) invert(1);
  opacity: 0.1;
  object-fit: contain;
  clip-path: inset(0 0 20% 0);
  object-position: top;
}

.logo-footer-container {
  position: relative;
  background: #121520;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}

.logo-footer-responsive {
  display: block;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(18%) sepia(10%) saturate(500%) hue-rotate(190deg);
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo-decorative {
    height: 160px;
    margin: 0;
  }

  .decorative-logo {
    height: 200px;
    clip-path: inset(0 0 20% 0);
  }
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
    padding: 2rem 1rem 1rem 1rem;
    gap: 1.5rem;
  }

  .footer-companies {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-icons {
    justify-content: center;
  }

  .logo-footer-responsive {
    max-width: 90vw !important;
    height: auto !important;
  }
}
