.footer {
  background: #1712AA;
  color: #fff;
  font-family: Arial, sans-serif;
} 

/* 🔥 CENTRADO REAL */
.footer-container {
  max-width: 1200px;   /* clave */
  margin: 0 auto;      /* centra */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 20px;
  gap: 40px;
}

.footer-left h2 {
  margin-bottom: 30px;
}

.offices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.office h3 {
  color: #f5b841;
  margin-bottom: 5px;
}

.office span {
  font-size: 12px;
  color: #ccc;
}

.office p {
  margin-top: 5px;
  font-size: 14px;
}

/* 🔥 MEJOR ALINEADO */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact {
  text-align: right;
}

.contact p {
  margin: 5px 0;
}

/* 🔥 MAPA MÁS GRANDE */
.map img {
  margin-top: 30px;
  width: 420px;   /* antes 300px */
  max-width: 100%;
  opacity: 0.8;
}

/* 🔥 BOTTOM CENTRADO */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .links a {
  margin-right: 20px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom .links a:hover {
  color: #fff;
}

.social a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    align-items: flex-start;
  }

  .contact {
    text-align: left;
  }

  .map img {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}