.site-footer {
  background-color: #231f20;
  color: #fff;
  font-family: var(--cubano-font, 'Cubano', sans-serif);
  padding: 40px 0 30px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer a:hover {
  opacity: 0.7;
}

.site-footer svg path {
  fill: #fff;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer .site-logo img {
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-nav {
  flex: 1;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-nav ul li a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
  text-decoration: underline;
}

.back-to-top-link {
  text-decoration: underline !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom .copyright {
  font-family: var(--lato-font, 'Lato', sans-serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  order: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  order: 1;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  order: 2;
}

.footer-legal a {
  font-family: var(--lato-font, 'Lato', sans-serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom .copyright {
    order: 2;
  }

  .footer-social {
    order: 0;
  }

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

/*# sourceMappingURL=styles.css.map */
