*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", serif;
    font-weight: 500;
    list-style: none;
    text-decoration: none;
    html, body {
        overflow-x: hidden;
      }
}
section{
    padding: 5% 10%;
    
}

/*-- Produto --*/

.produto img{ 
    display: flex;
    position: relative;
    max-width: 90%;
    max-height: 20%;
    height: 1000px;
    left: 150px;
    gap: 10px;
    overflow: hidden;
}
.image-buttons {
    display: flex;
    justify-content: space-between; /* Alinha os botões nas extremidades */
    width: 40%; /* Faz os botões ocuparem toda a largura */
    margin-top: 0px; /* Espaçamento acima dos botões */
    align-items: center;
    position: absolute; /* Para posicionar os botões em relação à imagem */
    top: 55%; /* Centraliza verticalmente */
    transform: translateY(-50%); /* Ajusta para que os botões fiquem no meio */
    left: 180px;
}
.b1{
    margin-left: 10px;
}
.b2{
    margin-right: 10px
}
.image-buttons button {
    border: none;
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.253);
    width: 60px; /* Largura do botão */
    height: 60px; /* Altura do botão */
    border-radius: 50%; /* Botão redondo */
    cursor: pointer;
    
}
/*--texto produto--*/
.product-text{
    position: fixed;
    top: 100px;
    left: 1100px;
    max-width: 35%;
    z-index: 10;
}
/*-- botões --*/
.main-btn button{
    min-height: 10px;
    min-width: 35px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0px 2px 25px;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #000;
    text-align: center;
    
}
.shop-btn{
    background-color: #000;
    display: inline-block;
    color:#ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border: 2px solid #000;
    padding: 10px 20px;
    transition: all .42s ease;
    margin: 10px 0px 1px;
    
}
.shop-btn:hover{
    background-color: #ffffff;
    color: #000000;

}
.main-btn2{
    min-height: 10px;
    min-width: 35px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0px 30px 25px;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #000;
    text-align: center;
    color: #ffffff;
    background-color: #000;
    
}
.botao-com-linha {
    position: relative;position: relative;
    color: #000000;
    background-color: #b6b6b6;
    overflow: hidden; /* Esconde o conteúdo excedente, se necessário */
    min-height: 10px;
    min-width: 35px;
    padding: 5px 10px;
    cursor: pointer;
    margin: 0px 2px 25px;
    font-size: 15px;
    text-align: center;
    opacity: 40%;
    border: none;
  }

  /* Linha diagonal */
  .botao-com-linha::before {
    content: "";
    position: absolute;
    top: 40%; /* Para começar fora da parte superior do botão */
    left: -10%; /* Para começar fora da lateral */
    width: 140%; /* Para cobrir toda a diagonal */
    height: 1px; /* Espessura da linha */
    background-color: #000000; /* Cor da linha */
    transform: rotate(-45deg); /* Faz a linha ficar diagonal */
    pointer-events: none; /* Garante que a linha não interfira em cliques */
  }
button.active {
    background-color: #000000;
    color: white;
}
button.active2 {
    background-color: #000000;
    color: white;
}
.aviso-compra{
    font-size: 15px;
    opacity: 50%;
    margin: 0px 0px 0px;
}
/*-- Nome Produto --*/
.descricao h1{
    color: #000;
    font-size: 50px;
    text-transform: capitalize;
    font-weight: 500;

}
/*-- Preço --*/
.descricao h2{
    color: #000;
    font-size: 25px;
    font-weight: 400;
    margin: 15px 0px 10px;
    
}
/*-- Descrição --*/
.descrição h3{
    color: #000;
    opacity: 50%;
    font-size: 18px;
    font-weight: 350;
    margin: 0px 20px 0px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .popup-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  .close-btn {
    position: absolute;
    top: 200px;
    right: 500px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }

  /*-- CSS RESPONSIVO --*/

  @media (max-width: 768px) {
    .product-text{
        position: relative;
        padding: 0px 20px;
        left: 0;
        max-width: 100%;
        z-index: 10;
    }
    /*-- Nome Produto --*/
.descrição h1{
    color: #000;
    font-size: 33px;
    text-transform: capitalize;
    font-weight: 500;

}
/*-- Preço --*/
.descrição h2{
    color: #000;
    font-size: 26px;
    font-weight: 400;
    margin: 15px 0px 10px;
    
}
/*-- Descrição --*/
.descrição h3{
    color: #000;
    opacity: 50%;
    font-size: 20px;
    font-weight: 350;
    margin: 0px 20px 0px;
}
.produto {
    margin-top: 100px; /* Removido espaço desnecessário */
    margin-bottom: 0px;
    display: flex;
    flex-direction: column; /* Alinha as imagens verticalmente */
    align-items: center; /* Centraliza as imagens */
}
.produto img{ 
    display: absolute;
    position: relative;
    max-width: 100%;
    height: 450px;
    left: 0px;
}
.image-buttons {
    display: flex;
    justify-content: space-between; /* Alinha os botões nas extremidades */
    width: 100%; /* Faz os botões ocuparem toda a largura */
    margin-top: 0px; /* Espaçamento acima dos botões */
    align-items: center;
    position: absolute; /* Para posicionar os botões em relação à imagem */
    top: 55%; /* Centraliza verticalmente */
    transform: translateY(-50%); /* Ajusta para que os botões fiquem no meio */
    left: 0;
}
.b1{
    margin-left: 10px;
}
.b2{
    margin-right: 10px
}
.image-buttons button {
    border: none;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.26);
    width: 40px; /* Largura do botão */
    height: 40px; /* Altura do botão */
    border-radius: 50%; /* Botão redondo */
}
    
}
