/* ==========================================================
   RVD POKER CLUB - CARROSSEL DA PROGRAMAÇÃO & TORNEIOS
   ========================================================== */

.carousel-section {
  padding: 40px 20px 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 183, 56, 0.12);
  border: 1px solid rgba(245, 183, 56, 0.3);
  color: var(--gold-primary, #f5b738);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted, #94a3b8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Container do Carrossel */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 230, 153, 0.06);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 48px 48px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

/* Card Visual / Destaque */
.slide-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.badge-freeroll {
  background: linear-gradient(135deg, rgba(0, 230, 153, 0.2), rgba(0, 230, 153, 0.05));
  border: 1px solid rgba(0, 230, 153, 0.4);
  color: #00e699;
}

.badge-ringgame {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.badge-tournament {
  background: linear-gradient(135deg, rgba(245, 183, 56, 0.2), rgba(245, 183, 56, 0.05));
  border: 1px solid rgba(245, 183, 56, 0.4);
  color: #fbbf24;
}

.badge-jackpot {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(236, 72, 153, 0.4);
  color: #f472b6;
}

.slide-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.slide-title span {
  background: linear-gradient(135deg, #f5b738 0%, #00e699 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Métricas do Evento */
.slide-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0 8px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.metric-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: #f8fafc;
}

.metric-value.gold { color: #f5b738; }
.metric-value.green { color: #00e699; }
.metric-value.blue { color: #60a5fa; }

/* Botões do Slide */
.slide-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}

.slide-banner-art {
  background: radial-gradient(circle at center, rgba(0, 230, 153, 0.12), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.banner-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  opacity: 0.4;
}

.banner-glow.green { background: #00e699; }
.banner-glow.gold { background: #f5b738; }
.banner-glow.blue { background: #3b82f6; }
.banner-glow.pink { background: #ec4899; }

.art-icon {
  font-size: 4.5rem;
  margin-bottom: 16px;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
  animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.art-badge-text {
  z-index: 2;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.art-sub-text {
  z-index: 2;
  font-size: 0.85rem;
  color: #94a3b8;
  font-family: 'JetBrains Mono', monospace;
}

/* Setas de Navegação */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 24, 38, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.carousel-btn:hover {
  background: var(--green-primary, #00e699);
  color: #000;
  border-color: var(--green-primary, #00e699);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

/* Indicadores de Dots */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.dot.active {
  width: 32px;
  background: var(--green-primary, #00e699);
  box-shadow: 0 0 12px rgba(0, 230, 153, 0.6);
}

/* Responsividade Mobile */
@media (max-width: 900px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    padding: 36px 24px 60px;
    gap: 28px;
  }
  .slide-title { font-size: 1.7rem; }
  .section-title { font-size: 1.8rem; }
  .slide-metrics { grid-template-columns: 1fr 1fr; }
  .carousel-btn { width: 38px; height: 38px; font-size: 1rem; }
  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }
}
