.feature-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.feature-card-play {
  border-radius: 24px;
  overflow: hidden;
}

/* A IMAGEM DEFINE A ALTURA DO CARD (não corta) */
.feature-img {
  display: block;
  width: 100%;
  height: auto;      /* mantém proporção original */
}

/* Camada escura por cima da imagem (opcional) */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

/* Texto sobre a imagem */
.feature-text {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 2;
  color: #fff;
  max-width: 80%;
}

.feature-text h2 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
}

.feature-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

/* Badge no topo */
.feature-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
}
