/* ====== Google Fonte ====== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); 

/* ========= Zerando ========= */
*{
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

/* ========= Variaveis Globais ========= */

body{
    width: 100%;
    background-color: white;
    color: black;
    transition: background 0.2s linear;
}

header{
    background-color: #705FD9;
}

footer{
    background-color: #705FD9;
}


h2{
    font-size: 25px;
}

h3{
    font-size: 20px;
}

li{
    border: none;
    list-style-type: none;
    text-decoration: unset;
}

a{
    text-decoration: none;
    padding: 1rem;
    border-radius: 20px;
    color: white;
}

p{
    color: black;
    text-align: justify;
}

img{
    width: 200px;
}


/* ========= Funções Globais ========= */
.separacao{
    width: 100%;
    height: 2rem;
}


/* ========= Funções Globais ========= */

/* ========= ID ========= */

#container {
    width: 100%;
    margin: auto;
    background-color: transparent;
}

#img-header{
    width: 100%;
    height: 400px;
}

#container-header{
    width: 100%;
    position: relative;
    margin: auto;
}

#container-main{
    width: 100%;
    margin: auto;
}

#container-footer{
    width: 100%;
    margin: auto;

}

#menu{
    width: 450px;
    margin: auto;
    text-align: left;
    display: block;
    position: relative;
}

/* ========= ID ========= */

/* ========= HEADER ========= */

.btn{
    display: none;
}

.menu{
    display: none;
}

.img-header{
    width: 100%;
    height: 100%;

}

.conteudo-header{
    width: 100%;
    align-items: center;
    box-shadow: 0px 5px 10px 0px #000000;
}

.img-perfil{
    width: 350px;
    top: -150px;
    left: 0%;
    position: absolute; 
    text-align: center;
    align-items: center;
}

.image{
    width: 70%;
    height: 70%;
    border-radius: 100%;
    box-shadow: 5px 5px 10px 0px #000000;
} 

.center-header{
    width: 70%;
    height: 100px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: auto;
}

.nome{
    width: 100%;
    text-align: center;
    
}

.display{
    width: auto;
    height: auto;
    padding-top: 1rem;
    display: inline-flex;
}

.bt_list a:hover{
    background-color: white;
    color: black;    
    transition: .3s;
}

/* ========= MAIN ========= */
.conteudo-main{
    width: 80%;
    margin: auto;
    }

.titulo{
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 5px 5px 10px 0px #000000;
}

.tittle-proj{
    text-align: center;
}

.list-proj{
    padding: 1rem;
    display: grid;
    align-items: center;
}

.img-main{
    width: 200px;
    height: 200px;
    margin: auto;
    border-radius: 100%;
    border: 1px solid black;
}

.text{
    padding: 1.5rem;
    padding-top: 0;
}

.text a{
    color: #705FD9;
}

/* ========= FOOTER ========= */

.conteudo-footer{
    width: 100%;
    margin: auto;
    padding-bottom: 1rem;
    max-width: 800px;
    text-align: right;
    display: grid;
}

.contato-title{
    width: 33%;
    margin: auto;
    padding: 1.25rem;
    text-align: center;
}

.contato{
    width: 100%;
    height: 75px;
    margin: auto;
    text-align: center;
    display: inline-flex;
}

.contato-vetor{
    width: 33%;
    margin: auto;
    border-radius: 20px;  
}

.contato-vetor-hidden{
    width: 33%;
    height: 100px;
}

.contato-vetor p{
    text-align: unset;
    font-size: 1.1rem;
    color: #705FD9;
}

.contato-vetor .vetor{
    width: 2.5rem; 
}

.contato-vetor:hover{
    background-color: white;
    color: black;
    transition: .3s;
}

.link{
    display: inline-flex;
    align-items: center;
    padding: 0.25rem;
}

.vetor-nome{
    width: 100px;
}


/* ========= SCROLL BAR ========= */

::-webkit-scrollbar{
    width: 10px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(transparent, #705FD9);
    border-radius: 6px;
    border: 0.1px solid #705FD9;
}

::-webkit-scrollbar-thumb:hover{
    background: linear-gradient(transparent, #8f63e9);
    border: 0.1px solid #8f63e9;
}

/* ========= MODO NOTURNO ========= */
body.dark{
    background-color: #292c35;
    color: #f0f0f0;
}
body.dark header{
    background-color: #483d8b;
}
body.dark footer{
    background-color: #483d8b;
}
body.dark main p{
    color: #f0f0f0;
}
body.dark .contato-vetor{
    color: #292c35;
}
body.dark .contato-vetor p{
    color: #483d8b;
}

.toggle{
    position: absolute;
    bottom: -2px;
    right: 0px;
    top: unset;
    left: unset;
}

.checkbox{
    opacity: 0;
    position: absolute;
}

.label{
    width: 52px;
    height: 26px;
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    border-radius: 50px;
    background-color: #483d8b;
    justify-content: space-between;
}

.ball{
    top: 2px;
    left: 3px;
    width: 22px;
    height: 22px;
    position: absolute;
    border-radius: 100%;
    background-color: white;
    transition: transform 0.2s linear;
}

.checkbox:checked + .label .ball{
    transform: translateX(24.5px);
    background-color: #292c35;
}
.checkbox:checked + .label{
    background-color: #705FD9;
}

.fa-moon{
    height: 20px;
    width: 20px;
    padding: 2px;
    padding-bottom: 4px;
    border-radius: 100%;
}
.fa-sun{
    height: 20px;
    width: 20px;
    padding: 2px;
    border-radius: 100%;
}







@media only screen and (min-width: 1400px){
    .img-main{
        width: 300px;
        height: 300px;
        max-width: 400px;
        max-height: 400px;
    }

}










@media only screen and (max-width: 955px) {
    

    /* ========= HEADER ========= */
    #img-header{
        width: 100%;
        height: 400px;
        position: relative;
    }
    
    #container-header{
        width: 100%;
        height: 0;
        margin: auto;
        position: relative;
        top: -412px;
        color: whitesmoke;
    }

    #menu{
        text-align: center;
        display: block;     
    }

    a{
        color: white;
    }

    .toggle{
        position: inherit;
        width: 60px;
        padding: 1rem;
        margin: auto;
    }    

    .btn{
        display: none;
    }

    .menu{
        display: none;
    }    
    
    .conteudo-header{
        width: 100%;
        height: 100%;
        display: grid;
        position: relative;
        align-items: center;
    }

    .img-perfil{
        position: initial;
        width: 300px; 
        margin: auto;
        padding: 1rem;
        text-align: center;
    }
    
    .center-header{
        width: 100%;
    }

    .nome{
        width: 100%;
        text-align: center; 
    }

    .bt_list{
        text-align: center;
    }

    .bt_list a:hover{
        background-color: #705FD9;
        color: rgb(0, 0, 0);
    }

    /* ========= FOOTER ========= */
    
    .link{
        display: list-item;
        padding: 0.25rem;
        margin: auto;
        border: none;
        list-style-type: none;
        text-decoration: unset;
    }
    
    .vetor-nome{
        width: 100px;
        margin: auto;
    }
    
}




@media only screen and (max-width: 650px) {
    body{
        background-image: none;
    }
    
    header{
        border-radius: 0;
    }
    
    footer{
        border-radius: 0;
    }

    #container {
        width: 100%;
    }

    #container-header{
        top: -350px;
    }
    
    #menu{
        position: unset;
    }

    .display{
        display: none;
    }

    /* ========= MODO NOTURNO ========= */
    .toggle{
        display: block;
        position: absolute;
        top: -30px;
        left: 0px;
        bottom: unset;
        right: unset;
    }

    /* ========= BOTÃO ========= */

    .btn{
        padding: 0;
        position: absolute;
        top: 25px;
        right: 25px;
        z-index: 2;
        display: flex;
        width: 40px;
        height: 40px;
        background-color: #705FD9;
    }
    .btn span{
        width: 20px;
        height: 2px;
        display: flex;
        background: #000;
        position: absolute;
        transition: 0.3s;
    }

    .btn span:nth-child(1){
        top: 40%;
        right: 25%;
    }
    .btn span:nth-child(2){
        top: 60%;
        right: 25%;
    }
    
    .btn.is_active span{
        background: black;
    }

    .btn.is_active span:nth-child(1){
        top: 50%;
        transform: rotate(-45deg);
    }
    
    .btn.is_active span:nth-child(2){
        top: 50%;
        transform: rotate(45deg);
    }

    .menu{
        background: #171717;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 100px;
        z-index: 1;
        transition: .3s;
        opacity: 0;
        visibility: hidden;
    }

    .menu.is_active{
        opacity: 1;
        visibility: visible;
    }

    .menu_list{
        display: flex;
        flex-direction: column;
        list-style-type: none;
    }

    .menu_link{
        position: relative;
        display: inline-flex;
        font-weight: bold;
        font-size: 150%;
        color: white;
        text-decoration: none;
        text-transform: uppercase;
    }

    .menu_link:after{
        content: '';
        position: absolute;
        bottom: 15px;
        left: 0;
        width: 0;
        height: 3px;
        display: inline-flex;
        background: #705FD9;
        transition: .3s;
    }

    .menu_link:hover:after{
        width: 100%;
    }


    /* ========= HEADER ========= */
    .img-header{
        border-radius: 0;
    }

    .img-perfil{
        width: 200px;
        height: 200px;
    }

    .image{
        width: 200px;
        height: 200px;
    }

    .center-header{
        width: 100%;
        max-width: 450px;
        min-width: 320px;
        margin: auto;
        text-align: center;
        padding-bottom: 1rem;
    }

    .nome{
        text-align: center;
        margin: auto;
        width: 300px;
    }

    
   
    /* ========= FOOTER ========= */


    .link{
        width: 50px;
        padding: 1rem;
        text-align: center;
    }

    .link .vetor-nome{
        display: none;
    }

}
