/* =============================================================
   Vídeos Recentes — Central do Timão
   ============================================================= */

.videos-recentes {
  background-color: #0a0a0a;
  padding: 32px 24px;
}

/* ── Título da seção ─────────────────────────────────────── */

.videos-recentes__section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 auto 20px;
  max-width: 1340px;
  border-left: 4px solid #F14629;
  padding-left: 12px;
  line-height: 1;
}

/* ── Grid ─────────────────────────────────────────────────── */

.videos-recentes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1340px;
  margin: 0 auto;
}

/* ── Card ─────────────────────────────────────────────────── */

.videos-recentes__card {
  display: block;
  background-color: #111111;
  text-decoration: none;
  overflow: hidden;
}

/* ── Thumb ────────────────────────────────────────────────── */

.videos-recentes__thumb {
  position: relative;
  overflow: hidden;
}

.videos-recentes__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.videos-recentes__card:hover .videos-recentes__img {
  transform: scale(1.02);
}

.videos-recentes__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  pointer-events: none;
}

/* ── Info ─────────────────────────────────────────────────── */

.videos-recentes__info {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.videos-recentes__titulo {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.videos-recentes__hashtag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #F14629;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Rodapé ───────────────────────────────────────────────── */

.videos-recentes__rodape {
  max-width: 1340px;
  margin: 16px auto 0;
  text-align: right;
}

.videos-recentes__ver-todos {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background-color: #F14629;
  padding: 8px 18px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.videos-recentes__ver-todos:hover {
  background-color: #c73a20;
}

/* ── Mobile ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .videos-recentes {
    padding: 20px 16px;
  }

  .videos-recentes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .videos-recentes__rodape {
    text-align: center;
  }
}
