.produto {
  width: 200px;
  height: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid var(--kfc-cinza);
  cursor: pointer;
  margin: auto;
}

#imagem {
  width: 100%;
  height: 50%;
  border-radius: 5px 5px 0px 0px;
}

#imagem img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px 5px 0px 0px;
  object-fit: contain;
}

#informacao {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px;
}

#informacao h3 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1rem;
}

#informacao .valor {
  color: var(--kfc-red);
}

@media (max-width: 768px) {
  .produto {
    width: 140px;
  }
}


@media (max-width: 360px) {
  .produto {
    width: 100%;
  }
}
