/* css/footer.css */

/* ================================================
   FOOTER
   ================================================ */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 40px 32px;
  font-family: 'DM Sans', 'Outfit', sans-serif;
  color: #6b6880;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ================================================
   LOGO
   ================================================ */
.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
}

/* ================================================
   LINKS
   ================================================ */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 0;
}

.footer-links a {
  color: #6b6880;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #a78bfa;
}

/* ================================================
   REDES SOCIAIS
   ================================================ */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  color: #6b6880;
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.08);
  color: #a78bfa;
}

/* ================================================
   COPYRIGHT
   ================================================ */
.footer-copy {
  font-size: 12px;
  color: #3e3c4a;
  margin: 0;
  text-align: center;
}

/* ================================================
   DIVISOR OPCIONAL
   ================================================ */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin: 4px 0;
}

/* ================================================
   RESPONSIVIDADE
   ================================================ */
@media (max-width: 768px) {
  footer {
    padding: 40px 20px 28px;
  }

  .footer-links {
    gap: 6px 18px;
  }
}