#conteiner-detalhes-do-produto{
    transition: .5s;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(243, 243, 243, 0.945);
    z-index: 20;
    color: rgb(37, 37, 37);
    margin-left: -100%;
    
}

.abreDetalhes{
    margin-left: -5% !important;
}

#conteiner-detalhes-do-produto i {
    position: absolute;
    bottom: 10px;
    right: 0;
    color: rgb(4, 63, 30);
    font-size: 2rem;
    cursor: pointer;
    opacity: .5;
    margin: 2%;
}

#conteiner-detalhes-do-produto article{
    display: flex;
    height: 100%;
    gap: 10px;
}

#conteiner-detalhes-do-produto article .foto-detalhes{
    overflow-y: hidden;
    overflow-x: visible;
    width: 60%;
    height: 100vh;
    display: flex;
}

#conteiner-detalhes-do-produto article .foto-detalhes img{
    width: 100%;
}

#conteiner-detalhes-do-produto article .todas-informacoes-do-produto{
    box-sizing: border-box;
    overflow-y: auto;
    width: 40%;
    min-height: 0px;
    height: 100%;
    padding: 3%;
}

#conteiner-detalhes-do-produto article .todas-informacoes-do-produto h2{
    color: rgb(11, 47, 2);
}

#conteiner-detalhes-do-produto 
.todas-informacoes-do-produto 
.texto-descritivo .sub-descricao{
    font-size: .6rem;
}

#conteiner-detalhes-do-produto 
.todas-informacoes-do-produto 
.texto-descritivo
.descricao-detalhada{
    padding: 2% 0%;
}

.lista-de-detalhes{
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px 0px;
}

.investimento{
    padding: 25px 0px;
    font-size: 2rem;
}

.investimento span{
    display: block;
}

.mais-detalhes h3{
    display: flex;
    font-weight: 400;
    padding: 10px 10px;
    font-size: 1rem;
    background-color: rgb(195, 195, 195);
    margin-bottom: 5px;
    border-radius: 15px;
    color: #011801;
}

.mais-detalhes h3 img{
    margin-right: 10px;
}

#conteiner-detalhes-do-produto article .todas-informacoes-do-produto .outras-informacoes h2{
    color: rgb(11, 47, 2);
    padding: 20px 0px;
}

#conteiner-detalhes-do-produto article .todas-informacoes-do-produto .outras-informacoes p{
    padding: 0px 0px 25px 0px;
}


/* 1. Define a largura e o fundo da barra de rolagem */
::-webkit-scrollbar {
  width: 12px;               /* Largura da barra vertical */
  height: 12px;              /* Altura da barra horizontal */
  background-color: aliceblue; /* Fundo da barra */
}

/* 2. O "botão" que se move (o "thumb") */
::-webkit-scrollbar-thumb {
  background-color: #90ee90; /* Verde claro (LightGreen) */
  border-radius: 6px;        /* Deixa os cantos arredondados */
  border: 3px solid aliceblue; /* Cria um espaçamento elegante ao redor do botão */
}

/* 3. Efeito visual quando o usuário passa o mouse por cima do botão */
::-webkit-scrollbar-thumb:hover {
  background-color: #76c776; /* Um verde um pouquinho mais escuro para o efeito de hover */
}

.codigo-produto{
    visibility: hidden;
    position: absolute;
    font-size: 3rem;
    right: 0;
}