      .bg-grid-animate {
        background-size: 40px 40px;
        opacity: 0.1;
        mask-image: linear-gradient(to bottom, black, transparent);
      }

      .glass-card {
        backdrop-filter: blur(12px);
        background: rgba(17, 34, 65, 0.4);
        border: 1px solid rgba(79, 217, 233, 0.1);
      }

      .glow-on-hover:hover {
        box-shadow: 0 0 20px rgba(79, 217, 233, 0.4);
      }

      /* Espaciado reducido para secciones en páginas secundarias */
      .section-compact {
        padding-top: 0rem;
        padding-bottom: 7rem;
      }

      /* custom cursor style */
      
body {
  cursor: none !important;
}

* {
  cursor: none !important;
}

.cursor{
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid #4FD9E9;
  background: rgba(79, 217, 233, 0.1);
  transition: transform 0.3s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(79, 217, 233, 0.4);
}

.grow, .grow-small{
  transform: scale(4);
  background: rgba(79, 217, 233, 0.3);
  border: 2px solid #4FD9E9;
  box-shadow: 0 0 25px rgba(79, 217, 233, 0.6);
}

.grow-small{
  transform: scale(2);
}

/* Animación de click en el cursor */
.cursor.click-effect {
  animation: cursorClick 0.6s ease-out forwards;
}

@keyframes cursorClick {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(79, 217, 233, 0.4);
  }
  50% {
    transform: scale(1.6);
    box-shadow: 0 0 25px rgba(79, 217, 233, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(79, 217, 233, 0.4);
  }
}

/* Estilos del menú móvil */
#mobile-menu {
  animation: slideDown 0.7s ease-in-out;
}

#mobile-menu.hidden {
  animation: slideUp 0.7s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Ocultar cursor personalizado en móvil */
@media (max-width: 768px) {
  .cursor {
    display: none;
  }
}

/* Animaciones del Pop-up de Cookies */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100%);
  }
}

.animate-slideUp {
  animation: slideUp 0.3s ease-out forwards;
}

.animate-slideDown {
  animation: slideDown 0.3s ease-out forwards;
}