/* ===========================
   FOOTER (SRV)
   =========================== */

.footer {
  background: #0b0f1a;
  color: #d1d5db;
  font-size: 0.95rem;
  padding: 3rem 1rem 1.5rem;
}

.footer-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

/* Logo */
.footer-logo img {
  height: 130px;
  display: block;
}

/* Links */
.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-column h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

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

.footer-column ul li {
  margin: 0.4rem 0;
}

.footer-column ul li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #38bdf8; /* celeste */
}

/* Divider */
.footer-divider {
  border-top: 1px solid #1f2937;
  margin: 2rem auto;
  width: min(1200px, 92%);
}

/* Redes */
.footer-social {
  text-align: center;
  margin-bottom: 1.5rem;
}

.footer-social p {
  margin-bottom: 0.6rem;
  color: #9ca3af;
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social .social-icons a {
  color: #9ca3af;
  font-size: 1.3rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social .social-icons a:hover {
  color: #38bdf8;
  transform: translateY(-2px);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  color: #6b7280;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
}
