/* Estilos mejorados para enlaces en el pie de pu00e1gina */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.footer-link {
  margin-bottom: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 18px;
  display: inline-block;
  font-weight: 400;
}

.footer-link a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #0066ff;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.footer-link a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-link a:hover:before {
  background-color: #ffffff;
  opacity: 1;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-col h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background-color: #0066ff;
  border-radius: 3px;
}

/* Estilo para elementos de contacto sin enlace */
.footer-link:not(:has(a)) {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.footer-link:not(:has(a)):before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #0066ff;
  border-radius: 50%;
  opacity: 0.7;
}

/* Media queries para responsividad */
@media (max-width: 768px) {
  .footer-link {
    margin-bottom: 10px;
  }
  
  .footer-col h3 {
    margin-top: 25px;
  }
}
