.footer {
  background-color: #f8f8f8;
  color: #333;
  padding: 40px 0 20px;
  font-size: 14px;
  border-top: 1px solid #eee;
}
.footer_contenido {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer_seccion {
  flex: 1;
  min-width: 220px;
}
.footer_seccion h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #cc3366;
}
.footer_seccion p,
.footer_seccion ul,
.footer_seccion li,
.footer_seccion a {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  list-style: none;
  text-decoration: none;
  color: #444;
}
.footer_seccion a:hover {
  color: #cc3366;
}
/* Redes sociales */
.redes_sociales a {
  display: inline-block;
  margin-top: 20px;
  margin-right: 30px;
}
.redes_sociales img {
  width: 50px;
  height: 50px;
}
/* Legal */
.footer_legal {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}
/* Botón de Whatsapp */
.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.whatsapp_float:hover {
  transform: scale(1.1);
}
.whatsapp_float img {
  width: 32px;
  height: 32px;
}
.maps_float {
  position: fixed;
  bottom: 90px; /* más alto que el botón de WhatsApp */
  right: 20px;
  z-index: 998; /* puede ser menor o igual a WhatsApp */
  width: 60px;
  height: 60px;
  background-color: #33CCFF; /* Color representativo de Waze */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.maps_float:hover {
  transform: scale(1.1);
}
.maps_float img {
  width: 32px;
  height: 32px;
}


@media (max-width: 768px) {
  .footer_contenido {
    flex-direction: column;
    gap: 30px;
  }
  .footer_seccion {
    text-align: center;
  }
  .redes_sociales {
    justify-content: center;
  }
}