/*
Theme Name: Sarfis
Theme URI: https://sarfis.cl
Author: Logarítmica Ventures
Author URI: https://sarfis.cl
Description: Tema personalizado para Sarfis - Optimiza Procesos Empresariales con Aplicaciones Web Innovadoras.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
*/

/* Custom CSS for additional styling */
:root {
  --primary-purple: #8b5cf6;
  --primary-pink: #ec4899;
  --primary-teal: #0d9488;
  --primary-green: #10b981;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom gradient animations */
@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.gradient-animate {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

/* Mesh gradient container */
#mesh-gradient {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(236, 72, 153, 0.2) 25%,
    rgba(16, 185, 129, 0.2) 50%,
    rgba(139, 92, 246, 0.3) 75%,
    rgba(236, 72, 153, 0.2) 100%
  );
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
}

/* Glass effect utilities */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }
}

/* Animation delays for staggered effects */
.animate-delay-100 {
  animation-delay: 100ms;
}

.animate-delay-200 {
  animation-delay: 200ms;
}

.animate-delay-300 {
  animation-delay: 300ms;
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Focus states for accessibility */
.focus-ring:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Adding hover effects for service cards */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon {
  transition: transform 0.3s ease;
}
