.elementor-235 .elementor-element.elementor-element-485da2a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-235 .elementor-element.elementor-element-4b82f62{--display:flex;}.elementor-235 .elementor-element.elementor-element-390c4ee{--display:flex;}.elementor-235 .elementor-element.elementor-element-4ff5881{--display:flex;}.elementor-235 .elementor-element.elementor-element-f527ca8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-235 .elementor-element.elementor-element-5a8fee7{width:100%;max-width:100%;}.elementor-235 .elementor-element.elementor-element-a660a51{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-235 .elementor-element.elementor-element-bf1b223{width:100%;max-width:100%;top:0px;}body:not(.rtl) .elementor-235 .elementor-element.elementor-element-bf1b223{left:0px;}body.rtl .elementor-235 .elementor-element.elementor-element-bf1b223{right:0px;}/* Start custom CSS *//* ===== WUCLOCK ONE PAGE - ESTILO MOONLY ===== */

/* Variables CSS */
:root {
  --primary-dark: #0a0a0f;
  --secondary-dark: #1a1a2e;
  --accent-gold: #f0c674;
  --accent-purple: #8b5cf6;
  --text-light: #ffffff;
  --text-muted: #9ca3af;
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b69 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  --gradient-accent: linear-gradient(45deg, #f0c674, #fbbf24);
  --shadow-soft: 0 20px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(240,198,116,0.3);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* ===== HEADER FLOATING ===== */
.floating-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 15px 30px;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-header:hover {
  background: rgba(10, 10, 15, 0.9);
  box-shadow: var(--shadow-soft);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

/* Efectos de fondo animados */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(240,198,116,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,92,246,0.1) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -10px) rotate(1deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem) !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  background: linear-gradient(45deg, #ffffff, var(--accent-gold), var(--accent-purple)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.1 !important;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* ===== BOTONES ===== */
.btn-primary {
  background: var(--gradient-accent) !important;
  color: var(--primary-dark) !important;
  padding: 18px 36px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  border: none !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-glow) !important;
}

.btn-secondary {
  background: transparent !important;
  color: var(--text-light) !important;
  padding: 18px 36px !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.btn-secondary:hover {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  transform: translateY(-3px) !important;
}

/* ===== COUNTDOWN ESTILO MOONLY ===== */
.countdown-container {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.countdown-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--accent-gold);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.countdown-item {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px 15px;
  min-width: 80px;
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--secondary-dark);
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: 3rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 60px !important;
  background: linear-gradient(45deg, var(--text-light), var(--accent-gold)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: var(--gradient-card) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 24px !important;
  padding: 40px 30px !important;
  text-align: center !important;
  backdrop-filter: blur(20px) !important;
  transition: all 0.4s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240,198,116,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-glow) !important;
  border-color: var(--accent-gold) !important;
}

.feature-icon {
  font-size: 3.5rem !important;
  color: var(--accent-gold) !important;
  margin-bottom: 24px !important;
  position: relative !important;
  z-index: 2 !important;
}

.feature-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  margin-bottom: 16px !important;
  position: relative !important;
  z-index: 2 !important;
}

.feature-description {
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* ===== MOCKUP SECTION ===== */
.mockup-section {
  background: var(--primary-dark);
  padding: 120px 0;
  text-align: center;
}

.mockup-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.phone-mockup {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
  background: var(--secondary-dark);
  padding: 80px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  background: var(--gradient-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(20px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA FINAL SECTION ===== */
.final-cta-section {
  background: var(--gradient-hero);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: var(--text-light) !important;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--primary-dark);
  padding: 60px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-text {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .floating-header {
    top: 10px;
    left: 10px;
    right: 10px;
    transform: none;
    border-radius: 20px;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .countdown-timer {
    gap: 10px;
  }
  
  .countdown-item {
    min-width: 60px;
    padding: 15px 10px;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 30px 20px !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ===== ANIMACIONES AVANZADAS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-on-scroll {
  animation: fadeInUp 0.8s ease forwards;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

/* ===== SCROLL SMOOTH ===== */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(45deg, var(--text-light), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}/* End custom CSS */