/* FOOTER NEGRO  */
.empire-footer {
  background-color: #000;
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-family: 'Montserrat', sans-serif;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.footer-col {
  flex: 1 1 200px;
}
.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #2c88c5;
}
.footer-social i {
  margin-right: 0.5rem;
}

/* AVISO LEGAL */
.footer-legal {
  border-top: 1px solid #333;
  margin-top: 3rem;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
