*{
    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%;
    
}

/*-- BOTAO SETA --*/
.down-arrow{
    position: absolute;
    top: 85%;
    right: 930px;
}
.down i{
    font-size: 30px;
    color: #000000;
    border-radius: 50px;
    padding: 12px 12px;
    background-color: #ffffff;
    transition: all .42s ease;
    opacity: 60%;
}
.down i:hover{
    background-color: #000000;
    color: #ffffff;

}
/*---pagina inicial geral---*/
.Lookbook-1{
    width: 100%;
    height: 100vh;
    background-image: url(/image/lookbook/banner.JPG);
    background-size: 2100px;
    background-repeat: no-repeat;
    background-position: center;

}
.Lookbook-1 h1{
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 100px;
    padding-top: 310px;
    opacity: 70%;
 }
 .Lookbook-1 h2{
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 30px;
    padding-top: 30px;
    opacity: 70%;
 }

.Lookbook-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, auto));
    gap: 1rem;
    cursor: pointer;
    padding-bottom: 10px;
}

.imagem {
    position: relative;
    width: 360px;
    height: 500px;
}

.imagem img {
    object-fit: cover;
    object-position: center;
    width: 100%;       /* Largura original da imagem */
    height: 100%;      /* Altura original da imagem */
    transition: all 0.40s;
}

.imagem img:hover {
    transform: scale(1.05);  /* Zoom suave no hover */
}

.Lookbook-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, auto));
    gap: 1rem;
    cursor: pointer;
    padding-top: 10px;
}

.banners {
    
    position: relative;
    width: 744px;
    height: 420px;
}

.banners img {
    object-fit: cover;
    object-position: center;
    width: 100%;       /* Largura original da imagem */
    height: 100%;      /* Altura original da imagem */
    transition: all 0.40s;
}

.banners img:hover {
    transform: scale(1.05);  /* Zoom suave no hover */
}

    .modal {
        display: none; /* Escondido por padrão */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
      }
  
      .modal-content {
        max-width: 90%;
        max-height: 90%;
        transition: transform 0.3s ease;
        cursor: zoom-in;
        border-radius: 8px;
      }
  
      /* Botão de fechar */
      .close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1001;
      }
  
      .close:hover {
        color: #ccc;
      }

/*-- CSS RESPONSIVO --*/

@media (max-width: 768px) {
    
    .Lookbook-1 h1{
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 50px;
        padding-top: 190px;
        opacity: 70%;
     }
     .Lookbook-1 h2{
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 30px;
        padding-top: 20px;
        opacity: 70%;
     }
     .Lookbook-1{
        width: 100%;
        height: 100vh;
        background-image: url(/image/lookbook/banner.JPG);
        background-size: 1500px;
        background-repeat: no-repeat;
        background-position: center;
    
    }
    /*-- BOTAO SETA --*/
    .down-arrow{
        position: absolute;
        right: 10%;
    }
    .down i{
        font-size: 30px;
        color: #000000;
        border-radius: 50px;
        padding: 12px 12px;
        background-color: #ffffff;
        transition: all .42s ease;
        opacity: 60%;
    }
    .down i:hover{
        background-color: #000000;
        color: #ffffff;

    }
    .Lookbook-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center the images */
        padding-top: 20px;
    }
    
    .imagem img{
        width: 350px;

    }
    .Lookbook-3 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* Center the banners */
        padding-top: 10px;
        padding-bottom: 0px;
    }
    
      
    .banners img {
        width: 350px; 
        }
    
    }

