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


/*------------------------- NUVENS ------------------------------------------*/
    .nuvem1 img{
        max-width: 100%;
        height: 550px;
        top: -40px;
        left: 180px;
        position: absolute;
        transition: all .42s ease;
        
        
    }
    .nuvem2 img{
        max-width: 100%;
        height: 1100px;
        top: -330px;
        left: 650px;
        position: absolute;
        transition: all .80s ease;
    }
    .nuvem3 img{
        max-width: 100%;
        height: 900px;
        top: -40px;
        left: 1300px;
        position: absolute;
        transition: all .80s ease;
    }
    .nuvem4 img{
        max-width: 100%;
        height: 700px;
        top: 400px;
        left: 380px;
        position: absolute;
        transition: all .80s ease;
    }
/*-- Scroll pra baixo some as nuvens --*/

.nuvem1.mudar img{
    max-width: 100%;
    height: 550px;
    top: -10px;
    left: -800px;
    position: absolute;
    transition: all .80s ease;

}
.nuvem2.mudar img{
    max-width: 100%;
        height: 1100px;
        top: -330px;
        left: 1800px;
        position: absolute;
        transition: all .80s ease;
    

}
.nuvem3.mudar img{
    max-width: 100%;
        height: 900px;
        top: -40px;
        left: 1800px;
        position: absolute;
        transition: all .80s ease;
    

}
.nuvem4.mudar img{
    max-width: 100%;
        height: 700px;
        top: 400px;
        left: -800px;
        position: absolute;
        transition: all .80s ease;
    

}

/*---pagina inicial geral---*/
.main-home{
    width: 100%;
    height: 100vh;
    background-image: url(/image/artes/logo.png);
    background-position: 400px -450px;
    background-size: 1500px;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
}
/*---texto GRANDE página inicial---*/
.main-text{
    position: absolute;
    top: 220px;
    left: 200px;
}
.main-text h1{
    color: #000;
    font-size: 65px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 600;
    font-style: bold;
    margin: 20px 0px;
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
}
/*---texto PEQUENO página inicial---*/
.main-text p{
    color: #e1655b;
    font-size: 20px;
    text-transform: capitalize;
    margin: 10px 0 10px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}
/*---botão SHOP NOW---*/
.main-btn{
    display: inline-block;
    color:#000;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border: 2px solid #000;
    padding: 10px 20px;
    transition: all .42s ease;
    margin: 10px 15px 10px;
    box-shadow: 3px 3px 10px 1px rgb(0, 0, 0, 25%);
    
}
.main-btn:hover{
    background-color: #000000;
    color: #ffffff;

}
.main-btn i{
    vertical-align:middle;
}
/*---botão SETA PRA BAIXO---*/
.down-arrow{
    position: absolute;
    top: 85%;
    right: 930px;
}
.down i{
    font-size: 30px;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 12px 12px;
    background-color: #000;
    transition: all .42s ease;
    opacity: 80%;
}
.down i:hover{
    background-color: #ffffff;
    color: #000000;

}


/*--- DROPS ---*/
.center-text h2{
    color: #000;
    font-size: 50px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}
.center-text span{
    color:#50ba8d;
}
.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    gap: 2rem;
}
.row{
    position: relative;
    transition: all .40s;
}
.row img{
    width: 100%;
    height: auto;
    transition: all .40s;
}
.row img:hover{
    transform: scale(0.9);
}
.product-text h5{
    position: absolute;
    top: 220px;
    left: 0;
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    background-color: rgb(10, 10, 0);
    padding: 3px 10px;
    border-radius: 2px;
    opacity: 70%;
}
/*-- Foguinho --*/
.fire-icon{
    position: absolute;
    top: 13px;
    right: 13px;
    color: #ff5e00;
    font-size: 35px;
    padding: 3px 10px;
    
}
/*-- Nome Produto --*/
.price h4{
    color: #000;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
}
/*-- Preço --*/
.price p{
    color: #000;
    font-size: 18px;
    font-weight: 600;
    
}

/*-- CSS RESPONSIVO --*/
@media(max-width:768px) {
    .main-home{
        width: 100%;
        height: 120vh;
        background-image: url(/image/artes/logo.png);
        background-position: center 10px; /* Ajustado para centralizar a imagem */
        background-size: cover; /* Ajuste para a imagem cobrir toda a área de fundo */
        background-repeat: no-repeat;
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
    }
    .nuvens{
        display: none;
    }
    /*---botão SETA PRA BAIXO---*/
.down-arrow{
    position: center;
    top: 85%;
    right: 930px;
}
.down i{
    font-size: 30px;
    color: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 12px 12px;
    background-color: #000;
    transition: all .42s ease;
    opacity: 80%;
}
.down i:hover{
    background-color: #ffffff;
    color: #000000;

}
.main-text{
    text-align: center; /* Centraliza o texto */
    display: flex;
    position: relative;
    left: 0;
    top: -20px;
    flex-direction: column; /* Organiza os itens em uma coluna */
    align-items: center; /* Centraliza os itens horizontalmente */
    height: 100vh; /* Preenche toda a altura da tela */
}

.main-text h1{
    color: #000;
    font-size: 50px;
    text-transform: capitalize;
    line-height: 1.1;
    font-weight: 700;
    font-family: "Poppins", serif;
    margin: 10px 0px;
}

.main-text p{
    color: #e1655b;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0px 0px 0px;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
}

.main-btn{
    display: inline-block;
    color:#000;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    background-color: white;
    border: 2px solid #000;
    padding: 10px 20px;
    transition: all .42s ease;
    margin: 10px 0;
    box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.25);
}

.main-btn:hover{
    background-color: #000000;
    color: #ffffff;
}

.main-btn i{
    vertical-align:middle;
}
.center-text h2{
    color: #000;
    font-size: 30px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}
.center-text span{
    color:#50ba8d;
    font-size: 35px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}
/*-- Foguinho --*/
.fire-icon{
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ff5e00;
    font-size: 40px;
    padding: 3px 10px;
    
}
/*-- Nome Produto --*/
.price h4{
    color: #000;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 400;
}
/*-- Preço --*/
.price p{
    color: #000;
    font-size: 22px;
    font-weight: 600;
    
}
}