/* Estilos mejorados para enlaces de redes sociales */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
  transition: all 0.3s ease;
}

/* Colores específicos para cada red social */
.social-link.facebook:hover {
  background-color: #3b5999;
  box-shadow: 0 0 15px rgba(59, 89, 153, 0.4);
  transform: translateY(-3px);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
  transform: translateY(-3px);
}

.social-link.linkedin:hover {
  background-color: #0077b5;
  box-shadow: 0 0 15px rgba(0, 119, 181, 0.4);
  transform: translateY(-3px);
}

.social-link:hover svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

/* Diseño responsivo */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}
