/* Shared site footer layout — used by footer.twig on all pages */

footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

footer .footer-brand p {
  font-size: 16px;
  max-width: 340px;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 14px;
}

footer .footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: flex-end;
}

footer .footer-col {
  min-width: 120px;
}

footer .footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

footer .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-col li {
  padding: 6px 0;
  font-size: 15px;
  font-weight: 300;
}

footer .footer-col a {
  transition: color 0.25s;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

footer .footer-bottom .socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

footer .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

footer .footer-whatsapp:hover {
  color: #6ef09a !important;
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  footer .footer-cols {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 32px 48px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  footer .footer-cols {
    flex-direction: column;
    gap: 28px;
  }

  footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
