.footer {
  background: var(--primary-bg);
  color: var(--text-white);
  padding: 50px 20px 20px;
  font-size: 0.95em;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  width: 80px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 250px;
  color: var(--text-light);
  line-height: 1.5;
}

.footer-contacto h4,
.footer-enlaces h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--accent-gold);
}

.footer-contacto p,
.footer-enlaces a {
  margin: 6px 0;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.footer-contacto p i {
  margin-right: 8px;
  color: var(--accent-gold);
}

.footer-enlaces a:hover {
  color: var(--accent-green);
}

.footer-copy {
  text-align: center;
  border-top: 1px solid var(--accent-green);
  margin-top: 40px;
  padding-top: 15px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
