html {
  scroll-behavior: smooth;
}
  .pattern-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
      linear-gradient(135deg, #e0e0e0 25%, transparent 25%), 
      linear-gradient(225deg, #e0e0e0 25%, transparent 25%), 
      linear-gradient(45deg, #e0e0e0 25%, transparent 25%), 
      linear-gradient(315deg, #e0e0e0 25%, #f7f7f7 25%) !important;
    
    background-image:
      linear-gradient(135deg, #fef2f2 25%, transparent 25%), 
      linear-gradient(225deg, #fecaca 25%, transparent 25%), 
      linear-gradient(45deg, #c0fbbc 25%, #efdada 25%), 
      linear-gradient(315deg, #e1e8f8 25%, #fef2f2 25%) !important;
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    opacity: 0.12;
    pointer-events: none;
  }

.text-brand {
  color: #c41ba1;
}
.bg-brand {
  background-color: #c41ba1;
}

.sticky-call {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 50;
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.ti-verified-by {
  display: none !important;
}

.ti-widget[data-layout-id='97'][data-set-id='dark-minimal'] .ti-header {
  text-align: center !important;
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

.animate-wiggle {
  animation: wiggle 0.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(220, 38, 38, 0);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 2s infinite;
}

.text-primary {
  color: #dc2626;
}

.bg-primary {
  background-color: #dc2626;
}

.hover\:bg-primary-dark:hover {
  background-color: #b91c1c;
}

.text-accent {
  color: #000000;
}

.bg-accent {
  background-color: #000000;
}

.hover\:text-accent:hover {
  color: #000000;
}

.ripple-bg {
  background: radial-gradient(circle, rgba(168, 85, 247, 1) 0%, rgba(239, 68, 68, 1) 100%);
  background-size: 400% 400%;
  animation: rippleGradient 10s ease-in-out infinite;
}

#services-track {
  will-change: transform;
}

.service-card {
  flex-shrink: 0;
  padding: 0.5rem;
  width: 50%;
}

.card-inner {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-inner:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 499px) {
  .service-card {
    width: 100%;
  }
}

@media (min-width: 500px) {
  .service-card {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .service-card {
    width: 33.3333%;
  }
}

@media (min-width: 1024px) {
  .service-card {
    width: 25%;
  }
}

@media (min-width: 1280px) {
  .service-card {
    width: 20%;
  }
}
