*{
  scroll-behavior: smooth;
}

.perspective {
  perspective: 1000px;
}

.mockup-phone {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0b3e81;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform-style: preserve-3d;
  transform: rotateY(-10deg) rotateX(5deg);
  overflow: hidden;
  border: 8px solid #111;
}

.mockup-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 10px;
  background: #000;
  border-radius: 5px;
}

.mockup-phone:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.bg-animated {
 background: radial-gradient(
      circle at 30% 30%,
      rgba(88, 63, 252, 0.6),
      transparent 40%
    ),
    linear-gradient(135deg, #0b0b2e 0%, #1c1c58 40%, #3b1f89 100%);
  background-size: 200% 200%;
  animation: gradientShift 16s ease-in-out infinite;
}


@keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes float1 {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  @keyframes float2 {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(8px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  @keyframes float3 {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-6px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  .animate-float1 {
    animation: float1 4s ease-in-out infinite;
  }
  .animate-float2 {
    animation: float2 5s ease-in-out infinite;
  }
  .animate-float3 {
    animation: float3 6s ease-in-out infinite;
  }


  #contenedorResultados::-webkit-scrollbar {
  width: 6px;
}
#contenedorResultados::-webkit-scrollbar-thumb {
  background-color: #2474ce;
  border-radius: 3px;
}
