/* Botones redondos de redes sociales para el hero */
.hero-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.social-btn:hover::before {
  opacity: 0.2;
  transform: scale(1.2);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

/* Colores específicos para cada red social - Estado inicial en blanco y negro */
.social-btn.whatsapp {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #666;
}

.social-btn.whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #666;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
}

.social-btn.linkedin {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #666;
}

.social-btn.linkedin:hover {
  background: linear-gradient(135deg, #0077b5, #005885);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

/* Efecto de ripple */
.social-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Accesibilidad */
.social-btn:focus-visible {
  outline: 2px solid var(--accent, #ffd700);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-social {
    gap: 15px;
    margin-top: 25px;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
  }
  
  .social-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero-social {
    gap: 12px;
    margin-top: 20px;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
  }
  
  .social-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Animación de entrada */
.hero-social .social-btn {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-social .social-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-social .social-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-social .social-btn:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .social-btn,
  .social-btn::before,
  .social-btn svg {
    transition: none;
  }
  
  .social-btn:hover {
    transform: none;
  }
  
  .hero-social .social-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }
}