/* Custom styles beyond Tailwind */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f46e5;
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

/* Button hover effects */
.btn-hover-effect:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card hover effects */
.card-hover:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Solution tabs styling */
.solution-tab.active {
  background-color: #6366f1;
  color: white;
}

/* Pricing toggle animation */
.pricing-toggle {
  transition: all 0.3s ease;
}

/* Asegurar que las secciones ocupen todo el ancho */
section,
footer {
  width: 100%;
  overflow-x: hidden;
}

/* Corregir el contenedor para que no tenga desbordamiento */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Asegurar que los gradientes ocupen todo el ancho */
.bg-gradient-to-r {
  background-size: 100% 100%;
}
