/* ============================================
   HERO SECTION - COLORES PROFESIONALES
   ============================================ */

/* ============================================
   BADGE SUPERIOR - DISCRETO
   ============================================ */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* Glassmorphism azul sofisticado */
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.8) 0%,
    rgba(51, 65, 85, 0.8) 100%
  );
  border: 1px solid rgba(56, 189, 248, 0.3);  /* Borde azul cielo sutil */
  color: #F8FAFC;  /* Blanco casi puro */
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  transition: all 300ms ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
}

.hero-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.9) 0%,
    rgba(51, 65, 85, 0.9) 100%
  );
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.2);
}

/* ============================================
   TÍTULO - BLANCO LIMPIO
   ============================================ */

.hero-title {
  /* Más grande y más ligero = más elegante e impactante */
  font-size: clamp(3rem, 8vw, 4.5rem) !important;  /* 48px → 72px */
  font-weight: 300 !important;  /* Light weight (antes 900) */
  letter-spacing: -2px !important;  /* Kerning ajustado */
  line-height: 1.1 !important;
  margin-bottom: 1.5rem !important;
  color: var(--text-on-dark-primary);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem) !important;  /* 32px → 48px mobile */
    letter-spacing: -1px !important;
  }
}

.hero-title .highlight {
  /* Gradient naranja→amarillo elegante */
  font-weight: 700;
  background: linear-gradient(135deg, #FF6B35 0%, #FFB88C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #FF6B35 50%, 
    transparent 100%
  );
}

/* ============================================
   PRECIO - BLANCO CON BORDE NARANJA
   ============================================ */

.hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 2.5rem auto;
  padding: 1.5rem 2rem;
  /* Fondo ámbar dorado sutil */
  background: rgba(252, 211, 77, 0.1);
  border: 2px solid #FCD34D;
  border-radius: 16px;
  max-width: 450px;
  box-shadow: 0 4px 16px rgba(252, 211, 77, 0.15);
}

.price-amount {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  /* Gradiente blanco-azul para el precio */
  background: linear-gradient(
    135deg,
    #F8FAFC 0%,      /* Blanco */
    #38BDF8 100%     /* Azul cielo */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-detail {
  font-size: 1rem;
  color: var(--text-on-dark-tertiary);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .hero-price {
    padding: 1.25rem 1.5rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
}

/* ============================================
   HIGHLIGHT EN SUBTÍTULO (10 días)
   ============================================ */

.hero-subtitle .highlight-subtitle {
  color: #FF6B35;
  font-weight: 700;
  position: relative;
  padding: 0 4px;
}

