.card {
  width: 306px;
  height: 390px;
  border-radius: 20px !important;
  box-shadow: 0px 0px 30px 0px #6022A6;
  border: 4px solid #ffffff;
}

.card img {
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: none !important;
  background-clip: border-box;

}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;

}

.product p{
    max-width: 28ch;
}

.cards-container{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}

/* Garantir que os produtos funcionem corretamente com o botão */
.cards-container .product {
  flex: 0 0 auto;
  width: 306px;
}


.cards-wraper{
  display: flex;
  justify-content: center;

}

.desconto-text{
  max-width: 300px;
  line-height: 100%;
}

.card-descricao{
  font-size: 1.25rem;
}

.sombra-interna{
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(96, 34, 166, 0.00) 68.97%, #6022A6 88%);

}

img.card-img{
  width: 306px;
  height: 390px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}


.hidden{
  display: none !important;
  animation: vanish 0.5s;
}

/* Sobrescrever Bootstrap d-none se necessário */
.hidden.d-none {
  display: none !important;
}

.show{
    display: flex !important;
    animation: showing 0.5s;
}

@keyframes showing {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes vanish {
  from{
    display: flex;
    opacity: 1;
  }
  to{
    display: none;
    opacity: 0;
  }
}