

.site-footer {
  background-color: #0f1729;
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-nav-title,
.footer-contact-title,
.footer-social-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-contact {
  max-width: 260px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-social {
  max-width: 200px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  color: #0EA5E9;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0EA5E9;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  margin-top: 30px;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

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

  .footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-contact {
    margin-top: 20px;
  }
}
