.img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3; /* Proporção padrão de capas de filmes */
  overflow: hidden;
  background: #111;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Badge TRAILER - Botão de Play Minimalista iOS */
.badge-trailer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  
  /* Círculo Perfeito */
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Efeito Vidro Premium */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

/* Pequeno ajuste no triângulo do play para centralizar visualmente */
.badge-trailer span {
    margin-left: 2px; 
}

/* Interação ao passar o mouse ou tocar */
.img-wrapper:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.img-wrapper:hover .badge-trailer {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
