/* ForEu — Landing Page v2 Custom Styles */

/* ─── Animações ─── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.4); }
  50%       { box-shadow: 0 0 50px rgba(124, 58, 237, 0.9), 0 0 80px rgba(37, 99, 235, 0.5); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── Utilidades ─── */
.gradient-text {
  background: linear-gradient(135deg, #a855f7, #3b82f6, #ec4899);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.gradient-bg {
  background: linear-gradient(135deg, #7c3aed, #2563eb, #ec4899);
  background-size: 300% 300%;
  animation: gradientShift 6s ease infinite;
}

.gradient-border {
  position: relative;
  border-radius: 16px;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #7c3aed, #2563eb, #ec4899);
  z-index: -1;
}

/* ─── Glass cards ─── */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.glass-hover {
  transition: all 0.3s ease;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(124, 58, 237, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.25);
}

/* ─── Hero ─── */
.hero-bg {
  position: relative;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.5) 50%, rgba(10,14,26,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ─── Orbs de fundo ─── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-purple { background: #7c3aed; }
.orb-blue   { background: #2563eb; }
.orb-pink   { background: #ec4899; }

/* ─── Float ─── */
.float { animation: floatUp 5s ease-in-out infinite; }
.float-delay { animation: floatUp 5s ease-in-out infinite 1.5s; }

/* ─── Glow btn ─── */
.btn-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ─── Animate on scroll ─── */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Nav ─── */
.nav-scroll {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled {
  background: rgba(10, 14, 26, 0.95) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}

/* ─── Pricing ─── */
.plan-popular {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
  border-color: rgba(124, 58, 237, 0.6) !important;
  transform: scale(1.03);
}

/* ─── Contador ─── */
.stat-number {
  animation: countUp 0.8s ease forwards;
}

/* ─── Testimonial ─── */
.stars { color: #f59e0b; letter-spacing: 2px; }

/* ─── Scroll suave ─── */
html { scroll-behavior: smooth; }

/* ─── Scrollbar custom ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: #7c3aed; border-radius: 4px; }

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .plan-popular { transform: scale(1); }
}
