@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --branco-background: #FFF0F8;
    --roxo: #903ED0;
    --rosa: #FF95AE;
    --preto: #0F0008;
}




* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: var(--branco-background);
}

h1 {
    font-size: 70px;
    font-family: "Frank Ruhl Libre", serif;
    font-optical-sizing: auto;
}


p {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/* HEADER */

.header {
    display: flex;
    flex-direction: row;
    padding: 10px 160px 10px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--branco-background);
    position: sticky;
    top: 0;
    z-index: 3;
}

.guias,
.icones-header {
    display: flex;
    gap: 10px;
}

.icones-header>div {
    display: flex;
    align-items: center;

    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid var(--preto);
    border-color: transparent;
    transition: ease .2s;
    cursor: pointer;

}

.icones-header>div:hover {
    border-color: var(--preto);
}




.guias>button {
    padding: 14px;
    background-color: var(--branco-background);
    border-radius: 10px;
    border: 1px solid var(--preto);
    border-color: transparent;
    transition: ease .2s;
    cursor: pointer;

}

.guias>button:hover {
    border-color: var(--preto);
}


.profile {
    display: flex;
    align-items: center;
    gap: 8px;
}





/* HOME */


#home {
    width: 100%;
    background: var(--branco-background);
    background: linear-gradient(0deg, rgba(255, 240, 248, 1) 0%, rgb(255, 217, 226) 100%);
}

.conteudo {
    gap: 40px;
    position: relative;
    padding: 10px 160px 10px;
    display: flex;
    flex-direction: row;
    background-image: url("/img/bolinhas.png");
    background-size: cover;
    background-position: center;
    justify-content: space-between;
    align-items: center;
}

.bttn {
    padding: 20px;
    color: var(--branco-background);
    border: none;
    border-radius: 6rem;
    background-color: var(--roxo);
    width: fit-content;
    font-size: 20px;
    padding-inline: 90px;
}

.esq {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 20px;
    color: var(--preto);
    position: relative;
    z-index: 1;
}

.img-mulher {
    max-height: 550px;
    width: auto;
    position: relative;
    z-index: 1;
}


.img-linhas {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
}






/* NOVIDADES */

.descricao p,
.descricao h1 {
    text-align: center;
}

.descricao p {
    width: 500px;
}

#novidades {
    padding: 160px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    gap: 20px;

}

.descricao {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.img-background {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
    pointer-events: none;

}




/* CATEGORIAS */


#categorias {
    position: relative;
    padding: 160px;
}

.categorias-icons {
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.botoes {
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    width: 240px;
    height: 240px;
    transition: .4s;
}

.botoes .icone {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 240px;
    background-color: var(--roxo);
    transition: .4s;
}

.categorias-icons>.botoes:nth-child(even) .icone {
    background-color: var(--rosa);
}

.categorias-icons>.botoes:nth-child(even) path {
    fill: var(--preto);
}

.botoes .botao {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(100%);
    transition: .4s;
}


.botoes .botao,
.botoes button {
    width: 240px;
    height: 240px;
    border: none;
    background-color: var(--branco-background);
    cursor: pointer;
}


.botoes:hover .icone {
    transform: translateY(-100%);

}

.botoes:hover .botao {
    transform: translateY(0);
}

.botoes:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.img-background-categorias {
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}



/* MAIS POPULARES */

#mais-populares {
    position: relative;
    padding-block: 200px;
}

.rosa {
    position: relative;
    display: flex;
    height: fit-content;
    padding: 60px 160px;
    flex-direction: row;
    background-color: #FFCED4;
}

.descricao-populares {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setas {
    display: flex;
    gap: 30px;
}

.setas button {
    width: 60px;
    height: 60px;
    border: 2.5px solid var(--preto);
    background-color: transparent;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease .2s;
}

.setas button:hover {
    background-color: var(--preto);
    cursor: pointer;
}

.setas button:hover svg path {
    stroke: var(--branco-background);
}

.carrosel {
    position: absolute;
    width: auto;
    bottom: 50px;
    left: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}



.carrosel-cards {
    display: flex;
    gap: 20px;
    transition: ease .2s;
}



/* FOOTER */

#footer {
    background-color: #131313;
    padding: 160px;
    color: var(--branco-background);
    display: flex;
    justify-content: space-between;

}

.ize {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.logo {
    width: 40px;
    height: 40px;
}

.socials {
    display: flex;
    gap: 20px;

}

.socials button {
    transition: ease .2s;
}

.socials button:hover {
    background-color: rgb(20, 20, 20);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.button-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgb(22, 22, 22);
    border: none;
    border-radius: 10px;
}



.produtos,
.blog {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.produtos button,
.blog button {
    width: fit-content;
    background-color: transparent;
    border: none;
    color: hsla(0, 0%, 100%, 0.5);
    transition: ease .2s;
    cursor: pointer;
}

.subscribe .desc {
    font-size: small;
    color: hsla(0, 0%, 100%, 0.5);
}

.subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}

.email {
    display: flex;
    background-color: #0C0909;

}

.email button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 18px;
    border-radius: 4px;
    background-color: var(--rosa);
    transition: ease .2s;
}

.email button:hover {
    background-color: #f5c7d1;
    cursor: pointer;
}

.email input {
    background-color: #0C0909;
    color: #d3d3d3;
    width: 100%;
}

.email input,
.email button {
    border: none;
}


/* CARDS */

.cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card {

    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: black;
    z-index: 1;
    width: 300px;
    background-color: white;
    transition: ease .2s;
    overflow: hidden;
}

.info {
    display: flex;
    justify-content: space-between;

}


.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(103%);
}

.conteudo-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;


}

.tag {
    background-color: #FFD6E0;
    border-radius: 20px;
    padding: 4px 14px;
    border: 1.5px solid transparent;
    transition: ease .2s;
    cursor: pointer;

}

.tag:hover {
    background-color: #fce1e7;
    border-color: var(--preto);
}

.comprar {
    color: white;
    background-color: #903ED0;
    border: none;
    padding: 14px 10px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    transition: ease .2s;
    cursor: pointer;
}

.comprar:hover {
    color: #903ED0;
    background-color: white;
    border-color: #903ED0;
}

.preço {
    font-size: 40px;
}


.imagem {
    position: relative;

}

.imagem img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 300px;
}

.icones {
    display: flex;
    gap: 16px;

    position: absolute;
    bottom: 0px;
    padding: 10px;
}

.icones>div {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.534);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;

}










/* RESPONSIVIDADE */

/*
@media (min-width: 600px) {

    .conteudo {
        flex-direction: column;
    }

    .esq {
        align-items: center;
        text-align: center;
    }

}
*/