* {
  font-family: "Space Grotesk", sans-serif;
}

.logo-text {
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    filter: blur(40px);
  }
  50% {
    opacity: 0.8;
    filter: blur(60px);
  }
}

.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.1;
  pointer-events: none;
}

.pulse-element {
  animation: pulse 3s ease-in-out infinite;
}

.glow-element {
  animation: glow 4s ease-in-out infinite;
}

/* Loading */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffbf99, #e96fff, #4533f0, #a855f7);
  width: 0%;
  z-index: 101;
  transition: width 0.3s ease;
}

.blur-background {
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: (24px) saturate(120%);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

/* CTA animations */
@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.cta-pulse {
  animation: ctaPulse 2s infinite;
}

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

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffbf99, #e96fff);
  border-radius: 3px;
}

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

@media (max-width: 649px) {
  html {
    overflow-x: hidden !important;
  }
  .hidden-sm {
    display: none;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-logo-container {
    margin-top: 2.5em;
  }

  .sproof-container {
    margin-bottom: 1em;
  }
}

* {
  font-family: "Space Grotesk", sans-serif;
}

.logo-text {
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

/* Animaciones simplificadas */
@keyframes subtleGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.subtle-glow {
  animation: subtleGlow 4s ease-in-out infinite;
}

.cta-pulse {
  animation: ctaPulse 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

/* Scrollbar minimalista */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #ffbf99, #e96fff);
  border-radius: 2px;
}
