 .live-section {
  width: 100%;
  max-width: 1920px;
  box-sizing: border-box;
  padding: 30px 30px 30px 40px;
}

.live-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E24B4A;
  flex-shrink: 0;
  animation: live-pulse 1s ease-in-out infinite;
  margin-bottom: 5px;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.7); }
}

.cards-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cards-wrapper::-webkit-scrollbar {
  display: none;
}

.cards-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.card {
  flex: 0 0 calc((100% - 32px) / 3); /* 32px = 2 gaps de 16px */
  min-width: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.card:hover{
  transform: scale(1.03);
}
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.card-body {
  padding: 12px 16px 14px;
}

.card-title {
  margin: 0;
  font-size: 1.1rem;
  font-family: Chaletbook, sans-serif;
  font-weight: bold;
  color: #ffffff;
}

@media (max-width: 980px) {
  .live-section {
    padding: 10px 0;
  }
}

/* --- Mobile --- */
@media (max-width: 768px) {
 
  .card {
    flex: 0 0 85%;
  }
}