.section-produtos {
  margin: 2rem 0 4rem;
}

.content-produtos {
  max-width: var(--width-size);
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.produtos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categoria-produto {}

.categoria-titulo {
  padding: 2rem;
  font-size: 2rem;
  color: var(--color-05);
  width: calc(10% + 1rem);
  display: flex;
  flex-direction: column;
}

.categoria-titulo::after {
  content: '';
  border-bottom: 2px var(--color-06) solid;
  height: 0;
  flex: 1 1 auto;
}

.lista-produtos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  flex-wrap: wrap;
}

.div-card-produto {}

.card-produto {
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 5px #ddd;
  transition: 0.5s all;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  height: 100%;
  justify-content: space-between;
  transition: all 0.5s;
}

.card-produto:hover {
  cursor: pointer;
  transform: scale(1.02);
  transition: all 0.5s;

}

.img-produto {
  aspect-ratio: 1/1;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-produto img {
  width: 95%;
  aspect-ratio: 1/1;
  transition: 0.5s all;
  object-fit: cover;
}

.conteudo-produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  padding: 1rem;
  justify-content: space-between;
  /* height: 100%; */
  gap: 1rem;
}

.produto-titulo {
  color: var(--color-04);
  font-size: 2rem;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.produto-descricao {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 2rem;
  min-height: 4rem;
  /* width: 20ch; */
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.3rem;
  width: 100%;
  font-weight: 100;
}

.produto-valor {
  font-weight: bold;
  width: 100%;
}

.produto-botao {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.btn-produto-ver {
  background: var(--color-05);
  font-size: 1.4rem;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  transition: 0.5s all ease-in-out;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}

.btn-produto-ver:hover {
  background-color: var(--color-04);
}

@media (min-width: 768px) and (max-width: 991px) {
  .lista-produtos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 575px) and (max-width: 768px) {
  .lista-produtos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 375px) and (max-width: 575px) {
  .lista-produtos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}