*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
}

h1{
    font-family: "poppins";
}

p, a{
    font-family: "source sans pro";
    text-decoration: none;
    color: white;
}

.menu-content{
    display: flex;
    flex-direction: column;
    list-style: none;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    color: white;
    width: 100%;
}

.efeito-a{
    position: relative;
    z-index: 1;
}

.efeito-a::before{
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .25s;
    background-color: rgb(255, 0, 157);
    z-index: 2;
}

.efeito-a:hover::before{
    width: 100%;
    transition: all .25s;
}

.logo-naomihfit{
    width: 10em;
}

.container-menu{
    align-items: center;
    display: flex;
    width: 100%;
    height: 5em;
    background: linear-gradient(to right, rgba(255, 0, 157, .5), rgba(255, 20, 204, 0.1), transparent);
    justify-content: space-around;
}

.container-main{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
}

.menu-item{
    padding: 1em .5em;
}

.item1{
    display: none;
    border-radius: 2em;
    background-image: linear-gradient(to right,rgba(249, 60, 255, 0.9), rgba(255, 0, 153, 0.5));
}

.item1::before{
    top: 1em;
    left: 0%;
    height: 0em;
    width: 8.6em;
    padding: 1em;
    height: 1.1em;
    background: transparent;
    color: transparent;
    content: 'Nosso público alvo são as mulheres que estão a procura das roupas certas e com preços acessíveis. Já encontrou a sua roupa? Contate-nos para adquirir agora.';
    transition: all .1s;
}

.item1:hover::before{
    top: 3.3em;
    width: 8.6em;
    height: 10em;
    background-image: linear-gradient(to right,rgba(249, 60, 255, 0.9), rgba(255, 0, 153, 0.5));
    color: white;
    transition: all .5s;
}

.container-icons{
    display: flex;
    width: 30%;
    justify-content:space-around;
}

.container-main{
    display: row;
}

header{
    height: 90vh;
    background-image: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.6)), url(/imgs/background-pq.jpg);
    background-size:cover;
    background-position: center;
    padding: .7em;
}

section{
    margin-top: 5em;
    color: white;
    text-align: center;
    padding: 1em;
}

section strong{
    color:rgb(255, 0, 157);
}

.section-p{
    margin-top: 1em;
}

.div1{
    border: 3px solid rgb(255, 0, 157);
    padding: 1em;
    width: 16em;
    margin: auto;
    margin-top: 1em;
    position: relative;
    z-index: 1;
}

.div1::before{
    content: '';
    position: absolute;
    width: 0;
    height: 3.3em;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right,rgb(255, 30, 214), rgb(255, 0, 153));
    z-index: -1;
    transition: all .2s cubic-bezier(0,.66,1,-0.05);
}

.div1:hover::before{
    width: 15.7em;
    cursor: pointer;
    transition: all .2s cubic-bezier(0,.66,1,-0.05);
    
}

.c-loader{
    border: 6px solid #e5e5e5;
    border-top-color: rgb(255, 0, 157);
    height: 50px;
    width: 50px;
    margin: auto;
    margin-top: 1em;
    border-radius: 50%;
    animation: in-rotate 1s infinite;
    opacity: 0;
}

@keyframes in-rotate{
    to {
        transform: rotate(1turn);
    }
}

footer{
    background: linear-gradient(to right, #000, #111);
    padding: 1.2em;
}

footer p{
    font-size: 1em;
    color: white;
    text-align: center;
}

@media screen and (min-width: 424px){
    header{
        background-position: top;
    }
}

@media screen and (min-width: 768px){
    header{
        background-image: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.6)), url(/imgs/background-md.jpg);
        height: 91.2vh;
        background-position: top;
    }
}

@media screen and (min-width: 1000px){
    header{
        background-image: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.6)), url(/imgs/background.jpg);
        height: 90vh;
    }

    .logo-naomihfit{
        margin-top: 3em;
    }

    footer{
        padding: 3.85vh;
    }

    .item1{
        display: inline-block;
    }
}

@media screen and (min-width: 1400px){

    body{
        font-size: 1em;
    }

    .logo-naomihfit{
        margin-top: 0em;
        width: 15em;
    }

    footer{
        padding: 4.2vh;
    }

    .item1{
        display: inline-block;
    }
}

@media screen and (max-width: 900px) and (max-height: 400px){
    header{
        height: 40em;
    }
}