@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');

* {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    color: white;

}

:root {
    --azul: #8CD2E6;
    --roxo: #8C99E6;
    --escuro: #8CB6E6;
    --icons: #787878;
    --background: #1B1B1B;
    --backgroundSecundario: #161616;
    --backgroundHeader: #191919;
    --txtdesc: #B3B3B3;
}

::-webkit-scrollbar {
    width: 1px;
}

body {
    background-color: var(--background);
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
}

.blur1,
.blur2 {
    display: none;
    position: absolute;
    z-index: 1;
    width: 200px;
    height: 600px;
    border-radius: 31px;
    background: #8CD2E6;
    -webkit-filter: blur(200px);
    top: 20%;
    left: 180px;
}

.blur2 {
    top: -200px;
    left: 105%;
}

header {
    width: 150px;
    height: 100%;
    background-color: var(--backgroundHeader);
    position: fixed;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    animation: headeranimation 1s cubic-bezier(0.19, 1, 0.22, 1) 2s both;
    z-index: 999;
}

.iconeHeader {
    margin-top: 25px;
    margin-left: -5px;
    width: 90%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.ponto1,
.ponto2,
.ponto3 {
    width: 16px;
    height: 16px;
    background-color: var(--azul);
    border-radius: 50%;
}

.ponto2 {
    background-color: var(--roxo);
}

.ponto3 {
    background-color: var(--escuro);
}

.menu, .webInfo {
    width: 90%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}


.menu i, .webInfo i {
    font-size: 30px;
    color: var(--icons);
    transition: all .3s;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu i:first-child {
    font-size: 45px;
    cursor: pointer;
}

.menu i:first-child:hover {
    color: rgb(200, 200, 200)
}

.menu i:nth-child(2):hover {
    font-size: 45px;
    color: var(--azul);
    cursor: pointer;
}

.menu i:nth-child(3):hover {
    font-size: 45px;
    color: var(--roxo);
    cursor: pointer;
}

.menu i:nth-child(4):hover {
    font-size: 45px;
    color: var(--escuro);
    cursor: pointer;
}


.webInfo{
    height: 30%;
    justify-content: flex-end;
    position: absolute;
    bottom: 0px;
}
.webInfo i{
    height: 50px;
    font-size: 25px;
    cursor: pointer;
}
.webInfo i:hover{
    font-size: 30px;
    color: rgba(140, 210, 230);
}



section {
    display: none;
}

#userIconMenu {
    background-color: var(--background);
    border: solid 2px var(--azul);
    border-radius: 60px;
    box-shadow: 0px 4px 250px 0px rgba(140, 210, 230, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 500px;
    padding: 30px;
    height: auto;
}

#divImgUser {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#divImgUser>i {
    font-size: 150px;
    color: var(--icons);
}

#userEmail {
    font-size: 26px;
    margin: 20px;
}

#userIconMenu>button {
    width: 300px;
    height: 50px;
    margin-top: 10px;
    border-radius: 27px;
    border: 1px solid #8CD2E6;
    background: #1E1E1E;
    box-shadow: 0px 0px 40px -16px #8CD2E6;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.24px;
    transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

#userIconMenu>button:hover {
    background-color: var(--azul);
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 40px -6px #8CD2E6;
}




#webSiteInfo {
    background-color: var(--background);
    border: solid 2px var(--azul);
    border-radius: 60px;
    box-shadow: 0px 4px 250px 0px rgba(140, 210, 230, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 400px;
    padding: 30px;
    height: auto;
}

#webSiteInfo h1 {
    text-align: center;
    font-size: 26px;
    margin: 20px;
}

#webSiteInfo>button {
    width: 270px;
    height: 50px;
    margin: 10px;
    border-radius: 27px;
    border: 1px solid #8CD2E6;
    background: #1E1E1E;
    box-shadow: 0px 0px 40px -16px #8CD2E6;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.24px;
    transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

#webSiteInfo>button:hover {
    background-color: var(--azul);
    text-shadow: 0px 0px 10px black;
    box-shadow: 0px 0px 40px -6px #8CD2E6;
}



.paginatitulo {
    display: none;
    margin: 30px 0;
    font-weight: 500;
    font-size: 50px;

}

.container {
    display: none;
}


main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.supertasktitulo {
    font-weight: 200;
    font-size: 40px;

}

.iconelogo {
    width: 100px;
    height: auto;
    margin: 20px;
}

.logoetitulo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    animation: tituloanimation 2s cubic-bezier(0.19, 1, 0.22, 1) 0.1s both;
}

#menuShowUp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh;
    background: rgba(140, 210, 230, 0.05);
    backdrop-filter: blur(20px);
    animation: bluranimation 1s cubic-bezier(0.19, 1, 0.22, 1) .1s both;
    justify-content: center;
    align-items: center;
}


@keyframes headeranimation {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes tituloanimation {
    from {
        transform: translateY(-1000%);
    }

    to {
        transform: translateY(0%);
    }
}


@keyframes bluranimation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes transicaomain {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes opacidadeinversa {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes notificacaoanimacao {
    from {
        top: -150px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes notificacaoanimacaoinversa {
    from {
        top: 0;
        opacity: 1;
    }

    to {
        top: -150px;
        opacity: 0;
    }
}

@keyframes transicaoContainer {
    0% {
        opacity: 1;
        transform: translateY(0%);
    }

    50% {
        opacity: 0;
        transform: translateY(110%);

    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}



@media (orientation : portrait) {

    .blur1,
    .blur2 {
        background: none;
    }

    header {
        width: 100vw;
        height: 50px;
        position: absolute;
        left: 0;
        top: 0;
        flex-direction: row;
        padding: 20px 0px;
    }

    .iconeHeader {
        margin-top: 0;
        margin-left: 0;
        width: 12vw;
        height: 50px;
        flex-direction: column;
    }

    .ponto1,
    .ponto2,
    .ponto3 {
        width: 7px;
        height: 7px;
    }

    .menu {
        width: 85%;
        height: 100%;
        flex-direction: row;
    }

    .menu i {
        height: 60px;
    }

    .webInfo{
        width: 15%;
        justify-content: center;
        position: relative;
    }

    #userIconMenu {
        width: 80vw;
        padding: 30px 20px;
    }

    #userIconMenu>button {
        width: 80%;

    }

}