/* ── Vídeos Shorts da home ────────────────────────────────── */
.fdp-video-shorts-section {
  padding: 64px 0;
}

.fdp-video-shorts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fdp-video-shorts__item {
  display: flex;
  flex-direction: column;
}

.fdp-video-shorts__player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: var(--fdp-preto);
  cursor: pointer;
}

.fdp-video-shorts__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.fdp-video-shorts__player.is-active iframe {
  pointer-events: auto;
}

.fdp-video-shorts__mute-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fdp-branco);
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.fdp-video-shorts__player:hover .fdp-video-shorts__mute-hint {
  background: var(--fdp-ouro);
}

.fdp-video-shorts__player.is-active .fdp-video-shorts__mute-hint {
  opacity: 0;
}

.fdp-video-shorts__caption {
  margin: 8px 0 0;
  font-family: var(--fdp-corpo);
  font-size: 0.8rem;
  color: var(--fdp-suave);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1023px) {
  .fdp-video-shorts { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .fdp-video-shorts { grid-template-columns: repeat(2, 1fr); }
}
