.conteudo-principal {
  box-sizing: border-box;
  /* max-width: 80vw; */
}

.conteudo-principal__produtos {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  margin: 40px auto;
  width: 100%;
  box-sizing: border-box;


}

.conteudo-principal_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.5px solid #ffff;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  padding: 40px;
  width: 60%;
  box-shadow: 1px 1px 8px rgba(92, 92, 92, 0.5);
}


.produto-visualizar__galeria {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 265px;
  min-width: 200px;
  width: 100%;
  height: 350px;
  /* Altura fixa para o "recorte" */
  overflow: hidden;
  /* Importante para o corte! */
  margin-bottom: 0;
  /* Gruda na info */
  border-top-right-radius: 25px;
  border-top-left-radius: 25px;

}

.imagem-principal {
  /* border: 1px solid red; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
}

.produto-visualizar__curtidos {
  font-size: 1rem;
  padding: 10px;
  border-radius: 100%;
  position: absolute;
  border: none;
  background: #6A9C5C;
  color: #fff;
  top: 20px;
  right: 7px;
  transform: translateY(70px);
  transition: opacity 0.3s, transform 0.3s, background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  opacity: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
}

.produto-visualizar__curtidos:hover {
  background-color: #c4ecd1;
  color: #6A9C5C;
}

.produto-visualizar__galeria:hover .produto-visualizar__curtidos {
  opacity: 1;
  transform: translateY(0);
}

.produto-visualizar__curtidos.curtido {
  opacity: 1 !important;
  /* sempre visível */
  transform: translateY(0) !important;
  background: #e74c3c;
  /* vermelho ou como quiser */
  color: #fff;
}

.produto-visualizar__curtidos.curtido:hover {
  background-color: #ffbdbd;
  /* efeito hover diferente, opcional */
  color: #e74c3c;
}

.seta-galeria {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #6A9C5C;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 1rem;
  color: #FFFF;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s, color 0.3s;
}

.seta-galeria:hover {
  background:  rgba(255, 255, 255, 0.5);
}

.seta-galeria.esquerda {
  left: 0.7rem;
}

.seta-galeria.direita {
  right: 0.7rem;
}

.seta-galeria:active {
  background: #e3f0dd;
}

.produto-visualizar__info {
  margin: 0 auto 1.4rem auto;
  text-align: center;
  min-height: 265px;
  min-width: 200px;
  width: 100%;
  padding: 1.1rem 1.5rem;
}

.produto-visualizar__info h1 {
  line-height: 2.1rem;
  font-size: 2rem;
  color: #6A9C5C;
  margin: 0.2em 0 0.5em 0;
  padding: 5px;
}

.preco {
  font-weight: 300;
  color: #5d975b;
  font-size: 1.5rem;
  margin-bottom: 0.9em;
}

.descricao {
  font-weight: 100;
  font-size: 1rem;
  color: #6A9C5C;
  margin-bottom: 1.2em;
  letter-spacing: 0.03em;
}

.btn-carrinho {
  display: inline-flex;
  align-items: center;
  background: #6A9C5C;
  color: #fff;
  font-size: 1.1em;
  padding: 0.7em 2.2em;
  border-radius: 1.9em;
  border: none;
  text-decoration: none;
  gap: 0.6em;
  font-family: inherit;
  transition: background-color 0.2s ease-in-out,
    border 0.2s ease-in-out, box-shadow 0.5s ease-in-out;
  margin: 1.1rem auto 0 auto;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
  letter-spacing: 0.05em;
}

.btn-carrinho:hover {
  background-color: #c1deaf;
  color: #6A9C5C;
  border: 0.5px solid #FFF;
  box-shadow: 1px 1px 8px rgba(255, 255, 255, 1);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: none;
  border: none;
  color: #333;
  font-size: 2.3rem;
  z-index: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity .2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-arrow {
  background: none;
  border: none;
  color: #333;
  font-size: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.65;
  cursor: pointer;
  padding: 10px;
  transition: opacity .2s;
}

.lightbox-arrow:hover {
  opacity: 1;
}

.lightbox-arrow.left {
  left: 8px;
}

.lightbox-arrow.right {
  right: 8px;
}

#lightbox-image {
  max-width: 85vw;
  max-height: 80vh;
  box-shadow: 0 6px 32px 0 rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  background: #fff;
}

.lightbox-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.lightbox-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #bbb;
  opacity: 0.6;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}

.lightbox-dots .active {
  background: #fff;
  opacity: 1;
}


/* bloco */
.reco-bloco {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 28px;
}

.reco-titulo {
  color: #fff;
  /* seu título branco do print */
  font-size: 1.8rem;
  font-weight: 100;
  margin: 0 0 10px 0;
  text-align: center;
}

.reco-regua {
  height: 0.5px;
  width: 80%;
  display: flex;
  align-self: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  border-radius: 2px;
}

/* grid */
.reco-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  margin: 20px;
  gap: 20px;
}

/* card */
.reco-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(60, 120, 80, 0.12);
  transition: transform .12s ease, box-shadow .12s ease;
}

.reco-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(60, 120, 80, 0.18);
}

.reco-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* imagem arredondada como no print */
.reco-fig {
  margin: 0;
}

.reco-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e8f3ea;
}

/* textos */
.reco-info {
  padding: 12px 14px 16px;
}

.reco-nome {
  color: #6A9C5C;
  display: block;
  line-height: 1.25;
  text-align: center;
}

.reco-preco {
  color: #6A9C5C;
  font-weight: 700;
  margin-top: 6px;
  display: block;
  text-align: center;
}


@media (max-width: 900px) {

  .conteudo-principal_info {
    width: auto;
    min-width: none;
    max-width: none;

  }

  .imagem-principal {
    /* border: 1px solid red; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
  }

  .reco-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(50px, 1fr));
  margin: 20px;
  gap: 20px;
}

  
}