@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@1,100&family=Lato:wght@400;700&family=Righteous&family=Rubik+Marker+Hatch&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-size: 10px; */
}

:root {
    --font-primary: 'Josefin Slab', serif;
    /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
    /* --font-primary: 'Lato', sans-serif; */
    /* --font-secundary:'Josefin', serif; */
    --font-secundary: 'Rubik', serif;
    /* --font-action:'Rubik', serif; */
    --font-action: 'Agenda King', serif;
}

html {
    scroll-behavior: smooth;
    width: 100vw;
    height: 100vh;
    font-size: 62.5%;
    color: rgb(190, 130, 149);
    /* font-family:var(--font-primary); */
}

body {
    font-size: 10px;
    overflow-x: hidden;
    /* overflow: hidden; */
    /* remove a barra de rolagem inferior */
}

.img-wrapper {
    /* position: relative;  */
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    animation: zoom 2.5s;
}

@keyframes zoom {
    0% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.div-coverAll {
    background: linear-gradient(rgb(2, 1, 5, 0.2), rgb(30, 20, 32));
    width: 100%;
    height: 100%;
    /* Remover para clarear */
    position: fixed;
    overflow: hidden;
    /* remove a barra de rolagem inferior */
    display: flex;
    flex-direction: column;
}

/* .img-wrapper img {
    width: auto;
    height: 100%;
    object-position: center;
    
} */

.container {
    background: linear-gradient(rgba(2, 1, 5, 0.75), rgb(19, 7, 21));
    background-position: center center;
    background-size: auto auto;
    background-position-y: 0px;
    background-repeat: no-repeat;
}

.hamburgue {
    width: 4.5vw;
    height: 9vh;
    position: fixed;
    right: 4.5vw;
    top: 4.5vh;
    z-index: 100;
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    transition: 1s ease-in;
}

.hamburgue.show {
    display: flex;
    transition: 1s ease-in;
}

.lines {
    /* display: none; */
    width: 100%;
    height: .7rem;
    background-color: aliceblue;
    border-radius: 5%;
    box-shadow: 2px, 2px, 1px rgb(2, 3, 17);

}

/* #line1{
    
}
#line1{
    background-color: rgb(9, 9, 9);
    top: 33vh;
}
#line1{
    background-color: rgb(15, 16, 16);
    top: 66vh;

} */
.section-header {
    background: linear-gradient(rgba(2, 1, 5, 1), rgb(19, 7, 21, 0.15));
    width: 100%;
    height: 9vh;
    /* min-height: 9vh; */
    overflow: hidden;
    position: fixed;
    /* remove a barra de rolagem inferior */
    display: flex;
    /* display: flex; */
    flex-direction: column;
}

/* Menu */

.menu-content {
    font-size: 2rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.section-header.active {
    background-color: orange;
    display: none;
}

.logo {
    text-transform: uppercase;
    font-family: var(--font-secundary);
    letter-spacing: .4rem;
    cursor: pointer;
    margin-left: 2%;
    /* padding: 40px; */
}


.menu-content .list-itens {
    display: flex;
    list-style: none;
    margin-right: 2%;
}

.menu-content .list-itens a {
    text-transform: capitalize;
    text-decoration: none;
    color: aliceblue;
    font-weight: 100;
    padding: 1.5rem;
    /* transition:color 5.5s; */
    transition: 1ms ease-in;
    position: relative;
}

.menu-content .list-itens a:hover {
    /* font-family: var(--font-secundary); */
    font-family: var(--font-action);
    transition: var(--font-action) 5s;
    color: rgba(233, 202, 233);
    animation: passage 1.5s ease-in;
}

@keyframes passage {
    100% {
        font-size: 3rem;
    }

}

.menu-content .list-itens a:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 4px;
    background-color: rgba(240, 167, 230, 0.568);
    color: aqua;
    transition: all 1.5s ease;
}

.menu-content .list-itens a:hover:before {
    width: 100%;
}

/* Centro - Conteúdo principal (MAIN)*/
main {
    height: 100vh;
    /* height: 91vh; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Textos principal */

.main-content {
    /* opacity: 0;      Testtte */
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.main-content h1 {
    /* opacity: 1; */
    margin-left: -3.5rem;
    width: 850px;
    font-size: 3.5rem;
    font-style: italic;
    /* text-shadow: .1rem .1rem 1px rgba(255, 255, 255, 0.25); */
    margin-bottom: 2rem;
    text-align: center;
    text-justify: unset;
}

.main-content h1:hover {
    /* text-shadow: .1rem .2rem .2px rgba(255, 255, 255, 0.95); */
    text-shadow: .2rem .2rem .2px rgba(0, 0, 0, 0.95);
    transition: text-shadow 1s;
}

.second-text {
    margin-bottom: 3.5rem;
    font-size: 2rem;
    color: rgb(255, 255, 255, 0.51);
    text-transform: capitalize;
}

.second-text:hover {
    /* margin-bottom: 7rem; */
    font-size: 3rem;
    color: rgb(56, 22, 53);
    text-transform: capitalize;
    /* text-shadow: .1rem .1rem 1px rgba(255, 255, 255, 0.95); */
    transition: color .8s all;
    text-shadow: .3rem .3rem .2px rgba(189, 155, 165, 0.5);

}

/* Botões */
.btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns button {
    cursor: pointer;
    width: 250px;
    height: 60px;
    border: 1px solid rgb(190, 130, 149);
    color: rgb(254, 130, 149);
    text-transform: uppercase;
    background-color: transparent;
    font-weight: bold;
    letter-spacing: 0.2rem;
    border-radius: 18px;
    position: relative;
    transition: .35s ease-in;

}

.btns button:hover {
    color: aqua;
    border: 1px solid aqua;
    /* border: none; */
}

.btns button:before {
    content: ' ';
    border-radius: 18px;
    bottom: 0;
    left: 0;
    width: 0px;
    position: absolute;
    height: 60px;
    background-color: rgba(105, 65, 77, 0.5);
    /* background-color: rgb(2, 3, 17); */
    z-index: -1;
    transition: all 1s ease;

}

.btns button:hover:before {
    width: 100%;
}


.dv-menu {
    /* position: relative; */
    /* position: absolute; */
    border-bottom: 5px;
    border: 5px solid aqua;
    width: 100vw;
    height: 100vh;
    object-position: center;
}

.dv-menu2 {
    /* position: relative; */
    /* position: absolute; */
    border-bottom: 5px;
    border: 5px solid rgb(160, 23, 11);
    width: 100vw;
    height: 100vh;
    object-position: center;
    z-index: 10;
}

#menu-itens {
    color: aliceblue;
}

/* Media Queries */


/* @media ( max-width: 768px ){
    .img-wrapper{        
    }    
} */

@media screen and (max-height: 120px) {
    .btns {
        background-color: black;
        color: brown;
        display: none;
    }
    .img-wrapper {
        width: cover;
    }
}

@media only screen and (max-width: 650px) {
    /* .section-header {
        display: none;
    } */

    .img-wrapper {
        width: cover;
    }
    
    img {
        width: cover;

        height: 100% ;
    }

}




/* animação */

[data-anime] {
    opacity: 1;
    transition: 300ms;
}

[data-anime="top"] {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
    transition: 300ms;
}

[data-anime="button"] {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
    transition: 300ms;
}

[data-anime="left"] {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
    transition: 300ms;
}

[data-anime="right"] {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
    transition: 300ms;
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 300ms;
}

/* Part 2 */
[data-animes] {
    transition: .3s;
}

[data-animes="first"] {
    background-color: yellow;
}

[data-animes].shutAll {
    background-color: linear-gradient(rgb(2, 1, 5, 0.2), rgb(30, 20, 32));
    /* top: 92vh; */
}