.footer-distributed {
  background: var(--neutral-very-dark);
  color: var(--almost-white);
  box-shadow: 0 8px 24px rgba(15, 18, 20, 0.06);
  box-sizing: border-box;
  width: 100%;
  padding: 48px 20px;
  overflow: hidden;
  font-family: var(--font-sans);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

/* Logo */

.footer-distributed h3 {
  color: var(--almost-white);
  margin: 0 0 8px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.footer-distributed h3 span {
  color: var(--color-primary);
}

/* Footer links */

.footer-distributed .footer-links {
  margin: 8px 0 16px 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-distributed .footer-links a {
  text-decoration: none;
  color: var(--muted-light);
  font-weight: 500;
  transition: color 160ms ease;
}

.footer-distributed .footer-links a:hover {
  color: var(--color-primary);
}

.footer-distributed .footer-company-name {
  color: var(--muted-light);
  font-size: 14px;
  font-weight: 400;
  margin: 8px 0 0 0;
}

.footer-distributed .footer-icons {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-distributed .footer-right .footer-icons {
  margin-top: 16px;
  align-self: flex-end;
}

.footer-distributed .footer-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  color: var(--almost-white);
  transition: transform 140ms ease, background 140ms ease;
}

.footer-distributed .footer-icons a:hover {
  transform: translateY(-4px);
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-distributed p {
  margin: 0;
  color: var(--muted-light);
  font-size: 15px;
}

/* Footer right */

.footer-distributed .footer-right {
  flex: 0 1 260px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-distributed .footer-right p {
  margin: 0;
  text-align: right;
  color: var(--muted-light);
  font-size: 14px;
}

/* Contacto */

.footer-distributed form {
  display: none; /* ocultar formulario en footer minimalista; si se desea, puede activarse */
}

@media (max-width: 1000px) {
  .footer-distributed {
    padding: 36px 18px;
  }

  .footer-distributed .footer-right {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 800px) {
  .footer-distributed {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 28px 16px;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-distributed .footer-right {
    align-items: center;
  }

  .footer-distributed .footer-links {
    justify-content: center;
  }

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

@media (max-width: 450px) {
  .footer-distributed h3 {
    font-size: 20px;
  }

  .footer-distributed .footer-company-name,
  .footer-distributed p {
    font-size: 13px;
  }
}
