/* ================================================================
   KROW COMMUNITY — Estilos Premium & Minimalistas (Apple/Tesla vibe)
   Módulo isolado — NÃO altera style.css nem krow-features.css
   ================================================================ */

/* ======================== KROW CLUB BANNER ======================== */
.krow-club-banner {
  position: relative;
  overflow: hidden;
  background-color: #050505;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
[data-theme="light"] .krow-club-banner {
  background-color: #fafafa;
  border-color: rgba(0,0,0,0.05);
  color: #000;
}
.krow-club-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.7);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}
[data-theme="light"] .krow-club-banner__badge {
  border-color: rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.6);
}
.krow-club-banner__badge svg { width: 12px; height: 12px; }

.krow-club-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
[data-theme="light"] .krow-club-banner__title {
  color: #000;
}
.krow-club-banner__desc {
  max-width: 480px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
[data-theme="light"] .krow-club-banner__desc {
  color: rgba(0,0,0,0.5);
}
.krow-club-banner__cta {
  background: #fff;
  color: #000;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[data-theme="light"] .krow-club-banner__cta {
  background: #000;
  color: #fff;
}
.krow-club-banner__cta:hover {
  transform: scale(1.02);
  background: rgba(255,255,255,0.9);
}
[data-theme="light"] .krow-club-banner__cta:hover {
  background: rgba(0,0,0,0.9);
}

/* ======================== DROP FRIDAY ======================== */
.drop-friday-banner {
  background-color: #000;
  color: #fff;
  padding: 10px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
[data-theme="light"] .drop-friday-banner {
  background-color: #000; /* Sempre preto para manter o destaque premium */
  color: #fff;
  border-bottom: 1px solid #111;
}
.drop-friday-timer {
  font-variant-numeric: tabular-nums;
  font-family: monospace;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.drop-friday-banner i {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.5);
}
.drop-friday-banner span {
  text-transform: uppercase;
}

/* ======================== SORTEIO KIT KROW ======================== */
.sorteio-krow {
  padding: 80px 24px;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
}
.sorteio-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 48px;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sorteio-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.sorteio-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--text-primary);
  opacity: 0.8;
}
.sorteio-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.sorteio-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}
.sorteio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sorteio-btn:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.sorteio-btn i {
  width: 16px;
  height: 16px;
}

/* ======================== PROVA SOCIAL ======================== */
.social-proof {
  padding: 60px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-color);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.review-info h4 { font-size: 0.9rem; font-weight: 500; }
.review-info span { font-size: 0.75rem; color: var(--text-muted); }
.review-stars { color: var(--text-primary); display: flex; gap: 2px; margin-top: 4px; opacity: 0.8; }
.review-stars svg { width: 12px; height: 12px; fill: currentColor; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; font-weight: 400; }

/* ======================== LIVE ACTIVITY ======================== */
.live-activity-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.live-toast {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: slideUpFade 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-toast.hiding {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
}
.live-toast__icon {
  width: 32px;
  height: 32px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.live-toast__icon svg { width: 14px; height: 14px; color: var(--text-primary); opacity: 0.7; }
.live-toast__text { font-size: 0.8rem; color: var(--text-primary); font-weight: 400; }
.live-toast__time { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; display: block;}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== CUPON SECRET FEEDBACK ======================== */
.coupon-success-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: pulseGlow 0.8s ease-out;
}
@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* ======================== MICRO-INTERACTIONS ======================== */
.hover-glow {
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hover-glow:hover {
  transform: scale(1.02);
}
