.produto-principal {
  display: flex;
  flex-direction: column;
  align-items: center;  /* <-- centraliza horizontalmente */
  width: 100%;
}


.produto-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid rgb(212, 212, 212);
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    gap: 20px;
    width: 90%;
    box-shadow: -1px 2px 29px -17px rgba(0,0,0,0.75);
}

/* Ordem padrão para desktop */
.imagens { order: 1; }
.imagem-produto { order: 2; }
.informacoes-produto { order: 3; }

.imagens-produto {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.imagens-produto img {
    border-radius: 5px;
    border: 1px solid rgb(155, 155, 155);
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: cover;
}

.imagem-produto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    
}

.imagem-produto img {
    border-radius: 5px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.informacoes-produto {
    color: rgb(80, 80, 80);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.informacoes-produto .text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.text span {
    color: rgb(151, 151, 151);
    text-decoration: line-through;
}

.informacoes-produto p {
    font-size: 14px;
    margin: 10px 0;
}

.info-container {
    padding: 20px;
    width: 100%;
}

.descricao-produto {
    margin-top: 150px;
}

.descricao-produto p {
    font-size: 14px;
}

/* === RESPONSIVO: redefine a ordem dos elementos === */
@media (max-width: 768px) {
    .imagens { order: 2; width: 100%; }
    .imagem-produto { order: 1; width: 100%; }
    .informacoes-produto { order: 3; width: 100%; }

    .produto-area {
        padding: 20px 10px;
    }

    .imagens-produto {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .imagens-produto img {
        max-width: 80px;
        height: 60px;
    }

    .info-container {
        padding: 10px;
    }
}

.zoom-container {
  position: relative;
  display: inline-block;
}


.zoom-img {
  display: block;
  width: 100%; /* Mantém o tamanho natural da imagem no layout */
  height: auto;
}

#zoom-lens {
  position: absolute;
  border: 2px solid #000;
  width: 150px;       /* Aumente aqui */
  height: 150px;      /* Aumente aqui */
  border-radius: 50%; /* Mantém formato circular, se quiser */
  pointer-events: none;
  display: none;
  background-repeat: no-repeat;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}





