/**
 * Landing Page - Estilos específicos
 * Solo estilos únicos para la landing page
 */

/* Premium Badge */
.badge-premium {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

/* QR Type Cards - Interactivas */
.qr-type-card {
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.qr-type-card:hover {
  transform: scale(1.05);
  border-color: #D86425;
}

.qr-type-card.active {
  border-color: #D86425;
  background: #FFF5EF;
}

.qr-type-card.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.qr-type-card.disabled:hover {
  transform: none;
}

/* Hero Section Específico */
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Step Cards en Hero */
.step-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* QR Preview Container */
.qr-preview {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chart Bars para estadísticas */
.chart-bar {
  transition: all 0.3s ease;
}

.chart-bar:hover {
  opacity: 0.8;
}

/* Stat Cards en footer */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D86425 0%, #B85420 100%);
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

/* Features Grid */
.feature-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .step-card {
    padding: 1.5rem !important;
  }

  .qr-type-card {
    font-size: 0.875rem;
  }
}