* {
  box-sizing: border-box !important;
  font-family: var(--fontPrincipal), sans-serif !important;
}
.cardapio-principal {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto !important;
  width: 95%;
}

.titulo-categoria {
  align-items: center;
  background-color: var(--corDestaque);
  border-radius: 5px;
  color: var(--corTextoDestaque);
  display: flex;
  font-weight: 600;
  font-family: var(--fontPrincipal), sans-serif;
  font-size: 1.325rem;
  justify-content: space-between;
  /* margin: 5px; */
  margin-top: 0.3rem;
  padding: 0.5rem;
  text-align: left;
  width: 100%;
}

.titulo-categoria p {
  margin: unset;
}

.titulo-categoria-seta {
  font-size: 1.3rem;
  transform: rotate(-90deg);
  transition: 0.5s;
}

.titulo-categoria-seta-selecionada {
  transform: rotate(-270deg);
}

.titulo-categoria___selecionado {
  border-radius: 20px 20px 0 0;
}

.titulo-categoria::after,
.titulo-categoria::before {
  background: var(--corDestaque);
  content: " ";
  display: none;
  height: 2px;
  margin: 0 1rem;
  position: initial;
  text-shadow: none;
  top: 45%;
  transform: skewY(0deg);
  width: 10%;
}

.lista-produtos-categoria {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.lista-produtos-categoria-selecionada {
  /* overflow: auto; */
  opacity: 1;
}

.card-produto {
  border-radius: 15px;
  background-color: var(--corFundoProduto);
  box-sizing: border-box;
  box-shadow: 0 0 10px #555555;
  color: var(--corTextoProduto);
  cursor: pointer;
  display: block;
  /* height: 135px; */
  /* height: 100%; */
  margin: 1rem 0 !important;
  /* max-height: 135px; */
  min-height: 130px;
  width: 47%;
}

.card-produto__imagem {
  border-radius: 15px 15px 0 0;
  height: 150px;
  width: 100%;
}

.card-produto__imagem__foto {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px 15px 0 0;
  height: 100%;
  width: 100%;
}

.card-produto__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  /* padding: 2px 5px; */
  width: 100%;
}

.card-produto__body__superior {
  padding: 0.5rem;
  overflow: hidden;
}

.card-produto__body__nome {
  font-family: var(--fontPrincipal), sans-serif, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  margin: unset;
  max-height: 65px;
  text-transform: uppercase;
  overflow: hidden;
  word-break: break-all;
}

.card-produto__body__desc {
  font-size: 0.6rem;
  line-height: 0.7rem;
  margin: unset;
}

.card-produto__body__desc___promo {
  width: 60%;
}

.card-produto__body__div_promo {
  align-items: center;
  background-color: #ffff37;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.3rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: 20%;
}

.card-produto__body__div_promo__texto {
  font-size: 0.7rem;
  font-weight: bold;
}

.card-produto__body__div_promo__img {
  width: 32px;
}

.card-produto__body__valor_acao {
  align-items: flex-end;
  display: flex;
  height: 20%;
  justify-content: right;
  margin-top: 2px;
}

.valor_acao__valor {
  border: 1px solid var(--corTextoDestaque);
  border-radius: 10px 0;
  border-width: 1px 0 0 1px;
  color: var(--corTextoDestaque);
  background: var(--corDestaque);
  margin: unset;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem;
}

.valor_acao__valor___antigo {
  color: #878787 !important;
  text-decoration: line-through !important;
}

.valor_acao__acao {
  font-size: 1rem;
  min-width: 80px;
  width: 30%;
}

.valor_acao__acao___promo {
  text-align: center;
  width: 100% !important;
}

@media only screen and (max-width: 480px) {
  .card-produto {
    box-shadow: 0 0 3px #555555;
    border-radius: 10px;
    margin: 0.3rem 0 !important;
  }
  .card-produto__imagem {
    border-radius: 10px 10px 0 0;
    height: 120px;
  }
  .card-produto__imagem__foto {
    border-radius: 10px 10px 0 0;
  }
}

@media screen and (min-width: 992px) {
  /* Fazer adaptações aqui */
  .card-produto {
    width: 30%;
  }

  .card-produto__body__nome {
    font-size: 1rem;
  }

  .card-produto__body__desc {
    font-size: 0.8rem;
  }
}

/* 
@media screen and (min-width: 600px) {
  .card-produto {
    max-width: 570px;
  }

  .card-produto__body__nome {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 992px) {
  .cardapio-principal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .card-produto {
    width: 350px;
  }
}

@media screen and (min-width: 992px) {
} */

.colored-toast {
  background-color: #a5dc86dd !important;
}