/* Estilos para el footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin: 0 15px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.footer-logo:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-logo:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.footer-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-links h4, .footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 5px 0;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffc107;
  padding-left: 5px;
}

.footer-contact p {
  line-height: 1.8;
}

.footer-contact i {
  margin-right: 10px;
  color: #ffc107;
}

.social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #444;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  margin-right: 8px;
  transition: all 0.3s ease;
  color: #fff;
}

.social-links a:hover {
  background-color: #ffc107;
  color: #333;
}

.footer-bottom {
  background-color: #222;
  padding: 10px 0;
  text-align: center;
}

.copyright {
  font-size: 12px;
}

/* Estilos para el mapa */
#map {
  height: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}