/* ============================================
   METAMORFOSIS STAYS — Estilos Complementarios
   (animaciones de contadores y efectos extra)
   ============================================ */

/* Contador animado */
.stat-number { transition: color 0.3s ease; }
.stat-number.counting { color: #f5c518; }

/* Línea de progreso para comparación */
.progress-bar {
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin-top: 8px;
}
.progress-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1.2s ease;
  width: 0;
}
.progress-fill.competitor { background: #ef4444; }
.progress-fill.us { background: var(--gradient-gold); }

/* Efecto shimmer en badge destacado */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-badge {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fadeInDown 0.8s ease forwards;
}

/* Tooltip de comisión más baja */
.low-commission-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #4ade80;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

/* Smooth scroll highlight */
section:target { scroll-margin-top: 80px; }

/* Active nav link */
.nav-links a.active {
  color: var(--color-accent) !important;
  background: rgba(232,168,56,0.1);
}
