/* ============================================
   GADIMAQ - Premium CTA & Visual Effects
   Diseño azul profundo con efectos glow
   ============================================ */

:root {
  /* Colores Premium */
  --premium-blue: #0a1628;
  --premium-blue-light: #1a2d4a;
  --glow-blue: #3b82f6;
  --glow-cyan: #06b6d4;
  --gold-accent: #f59e0b;
  --success-green: #10b981;
  --premium-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --glow-gradient: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}

/* ============================================
   BOTONES PREMIUM CON EFECTO GLOW
   ============================================ */

/* Botón primario premium */
.btn-premium {
  position: relative;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(135deg, var(--glow-blue) 0%, var(--glow-cyan) 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  z-index: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: #fff;
}

/* Variante grande para CTAs principales */
.btn-premium.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Botón WhatsApp Premium */
.btn-whatsapp-premium {
  position: relative;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Variante grande */
.btn-whatsapp-premium.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-whatsapp-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-whatsapp-premium i {
  font-size: 1.1rem;
}

/* Botón outline premium */
.btn-outline-premium {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-outline-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--glow-blue) 0%, var(--glow-cyan) 100%);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-outline-premium:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-premium:hover::before {
  width: 100%;
}

/* ============================================
   SECCIÓN CTA (GET-STARTED) - Diseño limpio
   ============================================ */

.cta-premium {
  position: relative;
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  padding: 3.5rem 0;
  overflow: hidden;
}

/* Línea decorativa superior sutil */
.cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

/* Efecto de luz sutil en esquina */
.cta-premium::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-premium .container {
  position: relative;
  z-index: 2;
}

.cta-premium h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-premium .lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* ============================================
   BADGES DE CONFIANZA Y URGENCIA
   ============================================ */

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-badge i {
  font-size: 1.2rem;
}

.trust-badge.badge-green i {
  color: var(--success-green);
}

.trust-badge.badge-gold i {
  color: var(--gold-accent);
}

.trust-badge.badge-blue i {
  color: var(--glow-cyan);
}

/* Badge de urgencia */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* ============================================
   CARD DE GARANTÍA PREMIUM
   ============================================ */

.guarantee-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--success-green), var(--glow-cyan), var(--success-green));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guarantee-card:hover::before {
  opacity: 0.5;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--success-green) 0%, var(--glow-cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  animation: guarantee-float 3s ease-in-out infinite;
}

@keyframes guarantee-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.guarantee-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.guarantee-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* ============================================
   SECCIÓN HERO PREMIUM ENHANCEMENTS
   ============================================ */

.hero-premium-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 576px) {
  .hero-premium-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Texto con efecto glow */
.text-glow {
  text-shadow: 
    0 0 10px rgba(59, 130, 246, 0.5),
    0 0 20px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.2);
}

/* ============================================
   INDICADOR DE RESPUESTA RÁPIDA
   ============================================ */

.response-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 15px;
  color: #fff;
}

.response-dot {
  width: 10px;
  height: 10px;
  background: var(--success-green);
  border-radius: 50%;
}

.response-text {
  font-weight: 600;
}

.response-text span {
  color: var(--success-green);
}

/* ============================================
   STATS/COUNTER PREMIUM
   ============================================ */

.stats-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 150px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--glow-blue) 0%, var(--glow-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FLOATING CTA BUTTON (MOBILE)
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }
  
  .floating-cta .btn-whatsapp-premium {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    box-shadow: 
      0 4px 20px rgba(37, 211, 102, 0.5),
      0 0 40px rgba(37, 211, 102, 0.3);
  }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .cta-premium {
    padding: 2.5rem 0;
  }
  
  .cta-premium h2 {
    font-size: 1.5rem;
  }
  
  .btn-premium,
  .btn-whatsapp-premium,
  .btn-outline-premium {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-badge {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .stats-premium {
    gap: 1rem;
  }
  
  .stat-item {
    min-width: calc(50% - 1rem);
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   ANIMACIONES DE ENTRADA
   ============================================ */

.fade-up-premium {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpPremium 0.8s ease forwards;
}

@keyframes fadeUpPremium {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   HOVER CARDS MEJORADAS
   ============================================ */

.card-premium-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-premium-hover:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Efecto de brillo en hover */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  transition: transform 0.6s;
  pointer-events: none;
}

.shine-effect:hover::after {
  transform: rotate(30deg) translateX(100%);
}
