.cupom {
  width: 180px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 2.26px 0px #00000040;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}

.cupom p {
  margin: 0;
  text-align: center;
}

.cupom .img-cupom {
  height: 160px;
}

.cupom img {
  width: 180px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px 12px 0px 0px;
  user-select: none;
}

.cupom .info-cupom {
  padding-top: 5px;
  border-top: 1px dashed var(--kfc-cinza);
  position: relative;
  background-color: #fff;
}

/* Efeito de recorte no card de cupom */

.cupom .info-cupom::before,
.cupom .info-cupom::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
}

.cupom .info-cupom::before {
  top: -15px;
  left: -20px;
  clip-path: inset(0 -5px 0 17px);
  box-shadow: inset -10px 0 10px -14.5px rgba(0, 0, 0, 0.4),
    inset 0 10px 10px -10px white, inset 0 -10px 10px -10px white,
    inset 10px 0 10px -10px white;
}

.cupom .info-cupom::after {
  top: -15px;
  right: -20px;
  clip-path: inset(0 17px 0 -5px);
  box-shadow: inset 10px 0 10px -14.5px rgba(0, 0, 0, 0.5),
    inset 0 10px 10px -10px white, inset 0 -10px 10px -10px white,
    inset -10px 0 10px -10px white;
}

/* Fim de estilizações de corte em card */

.cupom .container-nome {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.cupom .nome-cupom {
  font-size: 16px;
  font-weight: 700;
  font-family: "National 2 Condensed-bold";
  margin-bottom: 5px;
  text-transform: uppercase;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  padding: 0 5px;
}

.cupom .preco-cupom {
  color: var(--kfc-cinza-escuro);
  margin-bottom: 5px;
}

.cupom .utilizar-cupom {
  background-color: var(--kfc-red);
  cursor: pointer;
  border-radius: 0px 0px 12px 12px;
  user-select: none;
}

.cupom .utilizar-cupom p {
  color: var(--kfc-white);
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  padding: 3px;
  text-align: center;
  text-transform: uppercase;
}

.cupom .utilizacao-indisponivel {
  background-color: var(--kfc-grafite);
}

@media screen and (max-width: 767px) {
  .cupom {
    width: 159px;
  }

  .cupom .img-cupom {
    height: 142px;
  }

  .cupom img {
    width: 159px;
    height: 142px;
  }

  .cupom .preco-cupom {
    font-size: 18px;
  }

  .cupom .utilizar-cupom p {
    font-size: 16px;
  }
}