.video-section {
  background: #111827;
  color: white;
}

/* títulos e links */
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.section-link {
  color: #34d399;
  font-weight: 500;
  cursor: pointer;
}

/* Vídeo destaque */
.featured-video {
  max-width: 35rem;
  aspect-ratio: 16 / 9;
}

.featured-video img {
  border-radius: 1rem;
}

.overlay {
  pointer-events: none;
}

.featured-overlay {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 100;
}

.featured-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.featured-meta {
  font-size: 0.87rem;
  opacity: 0.9;
  display: flex;
  gap: 0.25rem;
  color: #ffffffb3;
}

/* Badges e botão play */
.badge-normal {
  font-size: 0.65rem;
}

.badge-live svg {
  width: 0.75rem;
  height: 0.75rem;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.play-button {
  background: #059669;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.play-button svg {
  color: white;
}

/* Lista de vídeos menores */
.video-item {
  display: flex;
  gap: 0.75rem;
}

.video-thumb {
  position: relative;
}

.play-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.25rem;
}

/* conteúdo do vídeo menor */

.video-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.video-meta {
  font-size: 0.75rem;
  color: #9ca3af;
}
