*{
    margin: 0;
    padding: 0;
    overflow: hidden;

    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100dvh;
    
    display: flex;
    justify-content: center;
    text-align: center;

    background-image: url(imgs/walleu.gif);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container{
    width: 100%;
    font-family: roboto;
    
    display: flex;
    justify-content: center;
}











.conteudo{
    width: 100%;
    max-width: 60vh;
    margin: 30px 20px;
    position: relative;
    border-radius: 40px;
    border: solid 1px white;
    box-shadow: 0px 0px 20px 5px black;
    
    display: flex;
    flex-direction: column;

    padding-bottom: 50px;

    /* backdrop-filter: blur(2px); */

}


.conteudo .videointro{
    width: 100%;
    height: 100%;

    border-radius: 40px;

    align-items: center;

    position: absolute;
}


.conteudo h1{
    margin: 2em 0 0 0;
    padding: 5px 5px;

    font-size: 2.5em;
    color: white;
    text-shadow: 0px 3px 3px black;

    font-family: Pinyon Script;
    font-weight: 550;
}














.acessos{
    position: absolute;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    justify-content: center;
}

.buttons{
    width: 90%;
}

.buttons a{
    margin: 10px 0;
    border-radius: 15px;

    text-decoration: none;
    text-shadow: black 0px 2px 5px;
    align-items: center;
    display: block;
    color: white;
    backdrop-filter: blur(5px);
    border: solid white 1px;


    cursor: pointer;
}














/* Links */

ul.links{
    position: relative;
    top: 70%;
    list-style-type: none;
    display: flex;
    justify-content: center;

}

ul.links li{
    width: 75px;
    height: 50px;
    border-radius: 60px;
    margin-bottom: 100px;
    
    transition: 1s;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.links li span{
    position: absolute;
}

ul.links li:hover{
    width: 100px;
}

ul.links li .icon{
    width: 25px;
    transition: 1s;
    transition-delay: .2s;
    
}

ul.links li .text{
    color: rgb(255, 255, 255);
    transform: scale(0);
    transition: 1s;
    transition-delay: .2s;

    font-family: roboto;
}

ul.links li:hover .text{
    transform: scale(1);
}

ul.links li:hover .icon{
    transform: scale(0);
}

















/* Acessos */

.acessos ul{
    position: relative;
    top: 30%;
    height: 100vh;
}

.acessos li{
    height: 6vh;
    border-radius: 60px;
    
    transition: 1s;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-shadow: black ;
}

.acessos ul li span{
    position: absolute;
}

.acessos ul li:hover{
}

.acessos ul li .text{
    transition: 1s;
    transition-delay: .2s;

}

.acessos ul li .icon{
    width: 25px;
    color: rgb(255, 255, 255);
    transform: scale(0);
    transition: 1s;
    transition-delay: .2s;

    font-family: roboto;
}

.acessos ul li:hover .text{
    transform: scale(0);
}

.acessos ul li:hover .icon{
    transform: scale(1);
}

/* .buttons a::before{
    content: '';

    width: 100%;
    position: absolute;
    background-image: linear-gradient(to left, var(--cor1), var(--cor2));
    inset: 0;
    opacity: 0;
}

ul li:hover ::before{
    opacity: 1;
} */














































/* JANELA POP UP DO BOTÃO PORTIFÓLIO */

.janela-modal{
    width: 100vw;
    height: 100vh;
    
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);    
    
    display: flex;
    align-items: center;
    justify-content: center;

    display: none;
}

.modal{
    width: 100vw;
    max-width: 450px;
    min-height: 200px;


    color: white;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: solid 2px;


    padding: 10px 10px 30px 10px;
    margin: 30px;
    text-align: center;
    font-family: roboto;
}


.modal h1{
    text-shadow: black 0px 2px 2px;
    padding-top: 10px;
    color: red;
}

.modal h2{
    padding: 30px 50px;
    text-shadow: black 2px 2px 2px;
}

.janela-modal.abrir{
    display: flex;
}


@keyframes abrirmodal{
    from{
        opacity: 0;
        transform: translate3d(0, -20px, -5px);
    }
    to{
        opacity: 1;
        transform: translate3d(0,0,0);
    }
    
}

.abrir .curriculo{
    animation: abrirmodal 0.5s;
}

.fechar{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 0;

    font-family: roboto;
    font-weight: 500;
    font-size: 20px;

    background-color: white;
    color: black;

    cursor: pointer;

    z-index: 999;
}











/* Janela Curriculo */

.janela-curriculo{
    width: 100vw;
    height: 100vh;

    position: absolute;
    top: 0;
    left: 0;

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

    backdrop-filter: blur(3px);

    display: none;
}

.janela-curriculo.abrirc{
    display: flex;
}

@keyframes abrircur{
    from{
        opacity: 0;
        transform: translate3d(0, -20px, -5px);
    }
    to{
        opacity: 1;
        transform: translate3d(0,0,0);
    }
}

.abrirc .curriculo{
    animation: abrircur 0.5s;
}

.curriculo{
    width: 600px;
    max-width: 100%;
    padding-top: 45px;
    margin: 10px;

    position: relative;

    
}

.baixar-curriculo img{
    width: 25px;
    height: 25px;
    
    padding: 7.5px;
    
    position: absolute;
    top: -5px;
    right: 47px;
    margin-top: 5px;
    
    border-radius: 16px;
    border: 0;
    
    font-family: roboto;
    font-weight: 500;
    font-size: 16px;
    
    background-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    
    cursor: pointer;
}


.janela-curriculo > .curriculo > img{
    width: 100%;

    border-radius: 25px;
}

.curriculo > .curriculo-none{
   display: none;
}


.fechar-curriculo{
    width: 40px;
    height: 40px;

    position: absolute;
    top: -5px;
    right: 0px;
    margin-top: 5px;
    
    border-radius: 16px;
    border: 0;
    
    font-family: roboto;
    font-weight: 400;
    font-size: 20px;
    
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    
    cursor: pointer;
}

.bttSimples,
.bttCaprichado{
    width: 100px;
    height: 40px;

    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 16px;

    background-color: white;
    border: none;

    font-family: roboto;
    font-weight: bold;

    cursor: pointer;
}

.bttCaprichado:hover{
    background-color: blueviolet;
    transition: 1s;
    color: white;
}

.bttSimples:hover{
    background-color: #e09b5c;
    transition: 1s;
    color: white;
}

