/*---- Padrão ----*/
body{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #333333;
}

.box-loading{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu{    
    width: 100vw;
    height: 100vh;
    position: fixed;
    backdrop-filter: blur(10px);
    background-color: rgba(20, 20, 20, 0.767);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10vh;
    transition: .1s;
}

.menu_hidden{
    display: none;
    visibility: hidden;
}

.overflow{
    overflow: hidden;
}


/*---- Estilização - Cores e fontes ----*/
::selection {
    background-color: rgb(219, 219, 219);
    color: #333333;
}

@font-face {
    font-family: mona;
    src: url(../fonts/Mona_Sans/MonaSans-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: garet;
    src: url(../fonts/garet/Garet-Heavy.otf);
}

@font-face {
    font-family: garet_book;
    src: url(../fonts/garet/Garet-Book.otf);
}

@font-face {
    font-family: archivo-black;
    src: url(../fonts/archivo-black/archivo-black/ArchivoBlack-Regular.ttf);
}


@keyframes ancora {
    0% {top:0px;}
    15% {top:5px;}
    30% {top:8px;}
    45% {top:13px;}
    60% {top:8px;}
    75% {top:5px;}
    100% {top:0px;}
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

@keyframes link {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(100%);
    }
}

    /*---- Responsividade ----*/
/*---- Desktop ----*/
@media only screen and (min-width: 1024px) {  
    
    /*---- Scroll animation ----*/
        /*---- down to up ----*/
    .hidden{
        opacity: 0;
        transform: translatey(100%);
        filter: blur(15px);
        transition: all 1s;
    }

    .show{
        opacity: 1;
        transition: all 1s;
        transform: translatex(0);
        filter: blur(0px);
    }

        /*---- up to down ----*/
    .hidden0{
        opacity: 0;
        transform: translatey(-100%);
        filter: blur(15px);
        transition: all 1s;
    }

    .show0{
        opacity: 1;
        transition: all 1s;
        transform: translatex(0);
        filter: blur(0px);
    }

        /*---- left to right ----*/
    .hidden1{
        opacity: 0;
        transform: translatex(-100%);
        filter: blur(15px);
        transition: all 2s;
    }

    .show1{
        opacity: 1;
        transform: translatex(0);
        filter: blur(0px);
        transition: all 2s;
    }

        /*---- right to left ----*/
    .hidden2{
        opacity: 0;
        transform: translatex(100%);
        transition: all 2s;
    }

    .show2{
        opacity: 1;
        transition: all 2s;
        transform: translatex(0);
    }

        /*---- Opacity ----*/
    .hidden3{
        opacity: 0;
        filter: blur(15px);
        transition: all 1.5s;
    }

    .show3{
        opacity: 1;
        filter: blur(0px);
        transition: all 1.5s;
    }


    /*---- loading ----*/
    /*.loading{
        width: 50px;
        height: 50px;
        background-color: #303030;
        border: solid .8rem rgb(189, 189, 189) ;
        border-top: solid .8rem #4e4e4e;
        box-shadow: 0px 0px 20px 1px #141414e5;
        border-radius: 50%;
        animation-name: spin;
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        position: absolute;
        left: 50%;
        top: 40%;
    }*/

    .loading{
        width: 50px;
        height: 50px;
        background-color: rgb(189, 189, 189);
        box-shadow: 0px 0px 30px 1px rgb(189, 189, 189);
        animation: rotate 2.5s infinite linear;
    }

    .contant{
        width: auto;
        height: auto;
        display: none;
    }


    /*---- Menu ----*/
    header{
        width: 100vw;
        height: 8vh;
        background: #6a6a6a4b;
        backdrop-filter: blur( 13.5px );
        position: fixed;
        top: 0;
        z-index: 999;
    }

    .container_menu{
        width: 100vw;
        height: 8vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container_menu p{
        color: #939393;
        font-family: garet_book;
        padding-right: 3rem;
    }

    .menu_icon{
        width: 80px;
        height: 65px;
        margin-left: 30px;
    }

    .menu_icon:hover{
        cursor: pointer;
    }

    .box-language{
        width: 150px;
        display: flex;
        flex-direction: row;
    }

    .box-language button{
        background-color: transparent;
        border: none;
        color: #939393;
        font-family: mona;
        font-size: 0.9rem;
        transition: .2s;
    }
  
    .box-language button:hover{
        color: #b3b3b3;
        cursor: pointer;
        transition: .2s;
    }

    .box-language p{        
        width: 20px;
        padding: 0px;
        margin: 0px;
        text-align: center;

    }
    
    .box-menu{
        width: 85vw;
        height: 10rem;
    }

    .header-menu{
        width: 85vw;
        height:auto;
        display: flex;
        justify-content: flex-end;
    }

    .icon-close{
        width: 4rem;
        height: 4rem;
    }

    .icon-close:hover{
        cursor: pointer;
    }

    .contact-menu{
        width: 85vw;
        height: 80vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 3.8rem;
    }

    .box-contact-menu{
        width: auto;
        min-height: 15vh;
    }

    .contact-menu a{
        text-decoration: none;
        color: #d9d9d9;
        font-family: 'archivo-black';
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        transform: scale(1);
        transition: .5s ease-in-out;
    }

    .contact-menu a:hover{
        transition: .5s ease-in-out;
        color: #7a7a7a;
        transform: scale(1.1)
    }

    /*.contact-menu a::after{
        content: '';
        width: 0%;
        height: 4px;
        bottom: 0;
        left: 50%;
        background-color: #707070;
        visibility: hidden;
        position: absolute;
        transition: .5s ease-in-out;
        transform-origin: right;
    }

    
    .contact-menu a:hover::after{
        content: '';
        width: 100%;
        height: 4px;
        left: 0%;
        transform: scaleX(1);
        visibility: visible;
    }
*/

    /*

    .contact-menu a:hover{
        transition: .5s ease-in-out;
        text-decoration: underline;
    }
*/

    /*---- Container Principal ----*/
    .principal_container{
        width: 100vw;
        height: 100vh;
        background: radial-gradient(circle 30vw at 80% 50%, #dbdbdbf5, #dbdbdbba, #747474de, #6461616e, #333333);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .box_data{
        width: 70vw;
        height: 100vh; 
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .data{
        width: 60vw;
        height: 100%; 
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
    }

    .box-data{
        min-width: 30vw;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .box_title{        
        width: auto;
        height: 300px;
        text-align: right;
        display: flex;
        justify-content: flex-start;
        font-family: garet;
        font-size: 6em;
        color: #717171; 
        filter: blur(4px);
        transition: 1s;
        margin-right: 4rem;
    }
    
    .box_title p{
        margin-top: 35px;
        white-space: nowrap;
    }

    .box_title:hover{
        filter: blur(0.5px);
        transition: 1s;
    }
    
    .box_subtitle{  
        min-width: 25rem;
        height: auto;
        position: absolute;
        z-index: 2;
        font-family: mona;
        color: white;
        text-align: left;
        font-size: 3.8em;
        display: flex;
        justify-content: flex-start;
        margin-top: -160px;
        margin-right: 165px;
        padding-left: 1rem;
    } 

    .box_other_informatons{
        width: 500px;
        height: 250px;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        font-family: garet_book;
        color: white;
        padding-left: 1rem;
    } 

    .information_txt{ 
        width: 450px;
        height: 110px;
        text-align: left;
        word-break: break-all;
        overflow-wrap: break-word;

        color: #9E9E9E;
        font-family: mona;
        font-size: 1.2rem;
        letter-spacing: 0.2px;
    }
    
    .container_btn{    
        width: 450px;
        height: 110px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .container_btn button{
        width: 150px;
        height: 55px;
        background-color: transparent;
        border: white solid;
        color: white;
        font-family: mona;
        font-size: 1.2rem;
        letter-spacing: 4px;
        transition: 0.7s ease;
    }

    .container_btn button:hover{
        background-color:white;
        color: #333333;
        cursor: pointer;
    }

    .box_profile{
        width: 40%;
        height: 100vh;  
        display: flex;
        justify-content: left;
        align-items: flex-end;
    }

    .image_profile{        
        width: 30vw;
        height: 65vh;
        margin-left: 15px;
        margin-top: 100px;
    }


    /*---- Container Tecnologies ----*/
    .tecnologies_container{
        width: 100vw;
        height: auto;
        background-color: #D2D2D2;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        /*---- Estilização ----*/
        text-align: center;
        font-family: garet_book;  
        font-size: 20px;
        padding-bottom: 30vh;
    }

    .teste{
        width: 30vw;
        height: auto;
        padding-top: 2rem;
        margin-bottom: 25vh;
        position: sticky;
        top: 10rem;
    }

    .teste h2{
        margin: 0;
        font-size: 2rem;
        font-family: mona;
        color: #484848;
        margin-top: 3rem;
    }

    .teste h3{
        margin: 0;
        font-size: 2.5rem;
        font-family: mona;
        color: #8C8C8C;
    }

    .teste2{
        width: 35vw;
        height: auto;
        padding-top: 2rem;
        padding-left: 2rem;
    }

    .teste2 h3{
        color: #8C8C8C;
        font-size: 2.5rem;
        font-family: mona;
        text-align: left;
    }
  
    .text2{
        color: #8C8C8C;
        font-size: 1.5rem;
        text-align: justify;

    }

    .tecnologies_container .box_tecnology{
        width: 35vw;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 1rem;
    }

    .tecnology_icon1{        
        width: 35vw;
        height: 85px;
        margin: 10px;
        align-content: center;
        position: relative;
        color: #333333;
        border-radius: 5px;        
        text-align: center;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-left: 10vw;
    }
   
    .tecnology_icon2{        
        width: 35vw;
        height: 85px;
        margin: 10px;
        align-content: center;
        position: relative;
        color: #333333;
        border-radius: 5px;        
        text-align: center;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        padding-right: 15vw;
    }

    .box-tecno{
        width: 100px;
        height: 100px;
        text-align: center;
        transition: 0.4s ease   ;
    }

    .box-tecno:hover{
        transform: scale(1.1);
        cursor: pointer;
    }

    .tecno_text{
        margin: 0px;
    }

    .tecno_img{
        width: 70px;
        height: 70px;
    }

    /*html, body {
        overflow: hidden;
       }*/

    /*---- Container animação ----*/
    .animation-container{
        width: 100vw;
        height: 90vh;
        background-color: #D2D2D2;
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 20vh;
        transition: 0.2s ease;
    }

    .box-animation{
        width: 10rem;
        height: 10rem;
        background-color: #484848;
        border-radius: 1rem;
        position: sticky;
        top: 30vh;
    }


    /*---- Container works ----*/
    .works_container{
        width: 100vw;
        min-height: 1100px;
        background: linear-gradient(#D2D2D2 5%, #535353 15%, #333333 20%);
        /*background-color: #333333;*/  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
    }

    .some-works{
        width: 700px;
        min-height: 920px;
        padding-top: 9rem;
        /*background-color: aliceblue;*/
    }
    
    .title-projects{
        text-align: left;
        font-family: garet_book;  
        font-size: 2rem;
        color: #FFFFFF;      
        margin: 0;
    }

    .works{
        width: 650px;
        height: 270px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .work_other{
        border-top: 1px solid #838383;
        margin-bottom: 4rem;
    }

    .work-side-left{
        width: 270px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-left{        
        width: 225px;
        height: 200px;
        display: flex;
        justify-content: center;
        background-color: #C6C6C6;
        align-items: center;
        transition: .8s ease;
    }

    .box-left:hover{  
        transition: .8s;
        transform: scale(1.05);
        cursor: pointer;    
        box-shadow: 5px 0px 10px 5px rgb(27, 27, 27);
    }

    .work-side-left img{
        width: 140px;
        height: 140px;
        border-radius: 10px;
    }

    .work-side-right{
        width: 370px;
        height: 200px;
        margin: .3rem
    }

    .work-side-right h2{
        text-align: left;
        font-family: garet_book;  
        font-size: 2rem;
        color: #FFFFFF;      
        margin: 0;
    }

    .work-side-right a{
        color: white;    
        text-decoration: none;    
    }

    .work-side-right a:hover{
        cursor: pointer;       
    }

    .work-side-right p{
        font-family: garet_book;
        color: #A1A1A1; 
        text-align: justify;
    }

    .work-side-right button{
        width: 100px;
        height: 35px;
        font-family: mona;
        border: 0px;
        transition: .3s ease;
    }

    .btn-disabled{
        width: 100px;
        height: 35px;
        font-family: mona;
        color: #141414;
        border: 0px;
        transition: .3s ease;     
    }

    .work-side-right button:hover{
        box-shadow: 0px 2px 10px 1px rgb(27, 27, 27);
        transform: translateY(-3px);
        cursor: pointer;
    }


    /*---- Container contacts ----*/
    .contacts_container{
        width: 100vw;
        min-height: 40rem;
        background-color: #D2D2D2;
        clip-path: polygon(0% 0%, 100% 30%, 100% 100%, 0% 100%);
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .box_contact{
        width: 700px;
        height: 200px;
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: 0px;
        padding-top: 7rem;
    }

    .img-contact{
        width: 22rem;
        height: 8rem;
    }

    .contact{
        width: 400px;
        height: 260px;
    }

    .box-contactt{
        display: flex;
        flex-direction: row;
        padding-left: .5rem;
    }

    .contact h3{
        font-family: mona;
        color: #707070;
        font-size: 1.5em;
        margin-bottom: .5rem;
    }

    .img-link1{
        width: 4rem;
        height: 4rem;
    }
       
    .img-link2{
        width: 3rem;
        height: 3rem;
    }

    .img-link3{
        width:  3rem;
        height: 2.5rem;
    }

    .link{
        width: auto;
        height: 35px;
        font-family: mona;  
        color: #707070;
        font-size: 1.3em;
        text-decoration: none;
        margin-right: 2rem;
        margin-left: 1rem;
        padding-top: .5rem;
        position: relative;
    }

    .link:hover{
        text-decoration: underline;
    }
    

    .link-email{
        width: auto;
        height: 35px;
        font-family: mona;  
        color: #707070;
        font-size: 1.3em;
        text-decoration: none;
        margin-right: 2rem;
        margin-left: 1rem;
        position: relative;
    }

    .link-email:hover{
        text-decoration: underline;
    }

    /*.link-email{
        width: auto;
        height: 35px;
        font-family: mona;  
        color: #707070;
        font-size: 1.3em;
        text-decoration: none;
        margin-right: 2rem;
        margin-left: 1rem;
        position: relative;
    }

    .link-email::after{
        content: '';
        width: 0%;
        height: 3px;
        bottom: 0;
        left: 0;
        background-color: #707070;
        visibility: hidden;
        position: absolute;
        transition: 1s ease-out;
        transform-origin: bottom right;
    }

    
    .link-email:hover::after{
        content: '';
        width: 100%;
        height: 3px;
        transform: scaleX(1);
        visibility: visible;
        transform-origin: bottom left;
    }*/
}


/*---- Tablet ----*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {  
    /*---- Scroll animation ----*/
    /*---- up to down ----*/
    .hidden0{
        opacity: 0;
        transform: translatey(-100%);
        filter: blur(15px);
        transition: all 1s;
    }

    .show0{
        opacity: 1;
        transition: all 1s;
        transform: translatex(0);
        filter: blur(0px);
    }

        /*---- left to right ----*/
    .hidden1{
        opacity: 0;
        transform: translatex(-100%);
        filter: blur(15px);
        transition: all 1.5s;
    }

    .show1{
        opacity: 1;
        transform: translatex(0);
        filter: blur(0px);
        transition: all 1s;
    }

        /*---- Opacity ----*/
    .hidden3{
        opacity: 0;
        filter: blur(15px);
        transition: all 1s;
    }

    .show3{
        opacity: 1;
        filter: blur(0px);
        transition: all 1.5s;
    }
    
    /*---- loading ----*/
    /*.loading{
        width: 50px;
        height: 50px;
        background-color: #333333;
        border: solid .8rem rgb(189, 189, 189);
        border-top: solid .8rem rgb(78, 78, 78);
        border-radius: 50%;
        animation-name: spin;
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        position: absolute;
    }*/

    .loading{
        width: 50px;
        height: 50px;
        background-color: rgb(189, 189, 189);
        box-shadow: 0px 0px 30px 1px rgb(189, 189, 189);
        animation: rotate 2.5s infinite linear;
    }

    .contant{
        width: auto;
        height: auto;
        display: none;
    }


    /*---- Menu ----*/
    header{
        width: 100vw;
        min-height: 8vh;
        background: #6a6a6a4b;
        backdrop-filter: blur( 13.5px );
        position: fixed;
        top: 0;
        z-index: 999;
    }

    .container_menu{
        width: 100vw;
        min-height: 8vh;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .container_menu p{
        color: #939393;
        font-family: garet_book;
        padding-right: 3rem;
    }

    .menu_icon{
        width: 80px;
        height: 65px;
        margin-left: 30px;
    }

    .box-language{
        width: 150px;
        display: flex;
        flex-direction: row;
    }

    .box-language button{
        background-color: transparent;
        border: none;
        color: #939393;
        font-family: mona;
        font-size: 0.9rem;
    }
  
    .box-language button:hover{
        cursor: pointer;
    }

    .box-language p{        
        width: 20px;
        padding: 0px;
        margin: 0px;
        text-align: center;

    }

    .box-menu{
        width: 85vw;
        height: 10rem;
    }

    .header-menu{
        width: 85vw;
        height:auto;
        display: flex;
        justify-content: flex-end;
    }

    .icon-close{
        width: 3rem;
        height: 3rem;
    }

    .icon-close:hover{
        cursor: pointer;
    }

    .contact-menu{
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 3rem;
    }

    .contact-menu a{
        width: auto;
        height: 15vh;
        font-family: 'archivo-black';
        text-decoration: none;
        color: #d9d9d9;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-menu:hover a{
    }
    

    /*---- Container Principal ----*/
    .principal_container{
        width: 100vw;
        min-height: 100vh;
        background-color: #333333;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .box_data{
        width: 70vw;
        min-height: 100vh; 
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .data{
        width: 70vw;
        min-height: 70vh; 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .box-data{
        width: 70vw;
        height: auto;
    }

    .box_title{        
        width: 70vw;
        height: 20rem;
        text-align: right;
        display: flex;
        justify-content: flex-start;
        font-family: garet;
        font-size: 6em;
        color: #717171; 
        filter: blur(4px);
        transition: 1s;
        display: flex;
    }
    
    .box_title p{
        white-space: nowrap;
        margin: 0;
        padding-top: 1rem;
    }

    .box_title:hover{
        filter: blur(0.5px);
        transition: 1s;
    }
    
    .box_subtitle{        
        width: 70vw;
        height: auto;
        position: absolute;
        z-index: 2;
        font-family: mona;
        color: white;
        text-align: left;
        font-size: 3.8em;
        display: flex;
        justify-content: flex-start;
        margin-top: -200px;
        margin-right: 165px;
        padding-left: 1rem;
    } 

    .box_other_informatons{
        width: 70vw;
        height: 250px;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        font-family: garet_book;
        color: white;
        padding-left: 1rem;
    } 

    .information_txt{ 
        width: 70vw;
        height: 200px;
        text-align: left;
        word-break: break-all;
        overflow-wrap: break-word;
        color: #9E9E9E;
        font-family: mona;
        font-size: 1.5rem;
        letter-spacing: 0.2px;
        padding-left: 0.5rem;
        margin: 0;  
    }
    
    .container_btn{    
        width: 450px;
        height: 110px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0.5rem;
    }
    
    .container_btn button{
        width: 150px;
        height: 55px;
        background-color: transparent;
        border: white solid;
        color: white;
        font-family: mona;
        font-size: 1.2rem;
        letter-spacing: 4px;
        transition: 0.7s ease;
        margin-top: 1rem;
    }

    .container_btn button:hover{
        background-color:white;
        color: #333333;
        cursor: pointer;
    }

    .box_profile{
        display: none;
    }

    .image_profile{        
        width: 30vw;
        height: 65vh;
        margin-left: 15px;
        margin-top: 100px;
    }


    /*---- Container Tecnologies ----*/
    .tecnologies_container{
        width: 100vw;
        min-height: 100vh;
        background-color: #D2D2D2;
        display: flex;
        flex-direction: column;
        align-items: center;
        /*---- Estilização ----*/
        text-align: center;
        font-family: garet_book;  
        font-size: 20px;
    }

    .teste{
        width: 80vw;
        min-height: 20vh;
        padding-top: 3rem;  
    }

    .teste h2{
        color: #484848;
        font-size: 3rem;
        font-family: mona;
        margin: 0;
    }
    
    /*.teste h3{
        color: #8C8C8C;
        font-size: 2.5rem;
        font-family: mona;
        margin: 0;
    }*/

    .teste2{
        width: 80vw;
        height: auto;

    }

    .teste2 h3{
        text-align: left;
        color: #8C8C8C;
        font-family: mona;
        font-size: 2.4rem;
        padding-left: 1rem;  
        margin: 0;  
    }

    .text2{
        color: #888888;
        font-size: 1.4rem;
        padding-left: 1.2rem;
        text-align: left;
    }

    .box_tecnology{
        width: 80vw;
        height: 200px;
        /*background-color: aqua;*/
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        
    }

    .tecnology_icon1{
        width: 20vw;
        height: auto;
        margin: 10px;
        align-content: center;
        text-align: center;
        transition: 0.3s;
    }

    .tecnology_icon2{
        width: 20vw;
        height: auto;   
        margin: 10px;
        align-content: center;
        text-align: center;
        transition: 0.3s;
    }

    .tecno_text{
        color: #333333;
        font-size: 1.3rem;
        margin: 0px;
    }

    .tecno_img{
        width: 4.5rem;
        height: 4.5rem;
    }


    /*---- Container animação ----*/
    .animation-container{
        width: 100vw;
        height: 90vh;
        background-color: #D2D2D2;
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding-bottom: 20vh;
        opacity: 1;
        transition: 0.2s ease;
    }

    .box-animation{
        width: 12rem;
        height: 12rem;
        background-color: #484848;
        border-radius: 1rem;
        position: sticky;
        top: 30vh;
    }


    /*---- Container works ----*/
    .works_container{
        width: 100vw;
        min-height: 100vh;
        background: linear-gradient(#D2D2D2 5%, #535353 15%, #333333 20%);
        /*background-color: #333333;*/  
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
    }

    .some-works{
        width: 700px;
        height: auto;
        padding-top: 7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title-projects{
        text-align: left;
        font-family: garet_book;  
        font-size: 2.8rem;
        color: #FFFFFF;
        margin-top: 0.5rem;
    }

    .works{
        width: 650px;
        height: 315px;
        display: flex;
        flex-direction: row;
    }

    .work-side-left{
        width: 270px;
        height: 315px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 2rem;
    }

    .box-left{        
        width: 200px;
        height: 200px;
        display: flex;
        justify-content: center;
        background-color: #C6C6C6;
        align-items: center;
        transition: .5s;
        box-shadow: 5px 0px 10px 5px rgb(27, 27, 27);
    }

    .work_other{
        border-top: 1px solid #838383;
        padding-top: 1.5rem;
    }

    .box-left:hover{  
        transition: .5s;
        transform: translateY(-8px);
        cursor: pointer;    
    }

    .work-side-left img{
        width: 140px;
        height: 140px;
        border-radius: 10px;
    }

    .work-side-right h2{
        text-align: left;
        font-family: garet_book;  
        font-size: 2rem;
        color: #dbdbdb;
        margin-top: 0.5rem;

    }

    .work-side-right{
        width: 370px;
        height: 200px;
        margin: .3rem
    }

    .work-side-right a{
        color: white;    
        text-decoration: none;    
    }

    .work-side-right a:hover{
        cursor: pointer;       
    }

    .work-side-right p{
        font-family: garet_book;
        color: #A1A1A1; 
        text-align: justify;

    }

    .work-side-right button{
        width: 100px;
        height: 35px;
        font-family: mona;
        border: 0px;
        transition: .2s;
    }

    .work-side-right button:hover{
        transition: .2s;
        transform: translateY(-3px);
        cursor: pointer;
    }

    .btn-disabled{
        font-family: mona;
        color: #141414;
        border: 0px;
    }


    /*---- Container contacts ----*/
    .contacts_container{
        min-width: 100vw;
        min-height: 45vh;
        background-color: #D2D2D2;
        clip-path: polygon(0% 0%, 100% 15%, 100% 100%, 0% 100%);
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 7.5rem;
        padding-bottom: 5rem;
        margin-top: 15vh;
    }

    .box_contact{
        width: 70vw;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: 0px;
    }

    .img-contact{
        width: 20rem;
        height: 6rem;
    }

    .box_contact h2{
        color: #333333;
        font-family: garet_book;
        font-size: 2.5em;
        margin: 0px;

    }

    .box-contactt{
        display: flex;
        flex-direction: row;
        padding-left: .5rem;
    }

    .contact h3{
        font-family: mona;
        color: #707070;
        font-size: 2em;
        margin-bottom: .5rem;
    }

    .img-link1{
        width: 4rem;
        height: 4.5rem;
    }
       
    .img-link2{
        width: 3rem;
        height: 3rem;
    }

    .img-link3{
        width:  3rem;
        height: 2.5rem;
    }

    .link{
        font-family: mona;  
        color: #707070;
        font-size: 1.6rem;
        text-decoration: none;
        font-weight: bold;
        margin-right: 2rem;
        margin-left: 1rem;
        padding-top: .5rem;
    }

    .link:hover{
            text-decoration: underline;
    }

    .link-email{
        font-family: mona;  
        color: #707070;
        font-size: 1.6rem;
        text-decoration: none;
        font-weight: bold;
        margin-right: 2rem;
        margin-left: 1rem;
    }

    .link-email:hover{
        text-decoration: underline;
    } 
}


/*---- Smartphones ----*/
@media only screen and (max-width: 767px){
    /*---- Scroll animation ----*/
    /*---- up to down ----*/
    .hidden0{
        opacity: 0;
        transform: translatey(-100%);
        filter: blur(15px);
        transition: all .8s;
    }

    .show0{
        opacity: 1;
        transition: all .8s;
        transform: translatex(0);
        filter: blur(0px);
    }

    /*---- down to up ----*/
    .hidden{
        opacity: 0;
        transform: translatey(100%);
        filter: blur(15px);
        transition: all 1.8s;
    }

    .show{
        opacity: 1;
        transition: all 1.8s;
        transform: translatex(0);
        filter: blur(0px);
    }

        /*---- left to right ----*/
    .hidden1{
        opacity: 0;
        filter: blur(15px);
        transition: all 1.5s;
    }

    .show1{
        opacity: 1;
        filter: blur(0px);
        transition: all 1.5s;
    }

        /*---- right to left ----*/
    .hidden2{
        opacity: 0;
        filter: blur(15px);
        transition: all 1.5s;
    }

    .show2{
        opacity: 1;
        filter: blur(0px);
        transition: all 1.5s;
    }

        /*---- Opacity ----*/
    .hidden3{
        opacity: 0;
        filter: blur(15px);
        transition: all 1.5s;
    }

    .show3{
        opacity: 1;
        filter: blur(0px);
        transition: all 1.5s;
    }

    /*---- loading ----*/
    /*.loading{
        width: 40px;
        height: 40px;
        background-color: #333333;
        border: solid .5rem rgb(189, 189, 189);
        border-top: solid .5rem rgb(78, 78, 78);
        border-radius: 50%;
        animation-name: spin;
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        position: absolute;
        display: block;
        text-align: center;
    }*/

    .loading{
        width: 50px;
        height: 50px;
        background-color: rgb(189, 189, 189);
        box-shadow: 0px 0px 30px 1px rgb(189, 189, 189);
        animation: rotate 2.5s infinite linear;
    }

    .contant{
        width: auto;
        height: auto;
        display: none;
    }
    

    /*---- Menu ----*/
    header{
        width: 100vw;
        height: 10vh;
        align-items: center;
        justify-content: center;
        background: #6a6a6a4b;
        backdrop-filter: blur( 13.5px);
        display: flex;
        position: fixed;
        z-index: 999;
    }

    .container_menu{
        width: 90vw;
        height: max-content;
        display: flex;
        justify-content: space-between;        
        align-items: center
    }

    .menu_icon{
        width: 3.8rem;
        height: 3.5rem;
        margin-left: 0.5rem;
    }

    .box-language{
        display: flex;
        flex-direction: row;
    }

    .box-language button{
        background-color: transparent;
        border: none;
        color: #939393;
        font-family: mona;
        font-size: 0.8rem;
    }

    .box-language p{        
        width: 20px;
        padding: 0px;
        margin: 0px;
        text-align: center;
        color: #939393;

    }

    
    .box-menu{
        width: 85vw;
        height: 10rem;
    }

    .header-menu{
        width: 80vw;
        height:auto;
        display: flex;
        justify-content: flex-end;
    }

    .icon-close{
        width: 2.5rem;
        height: 2.5rem;
    }

    .icon-close:hover{
        cursor: pointer;
    }

    .contact-menu{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: center;
        font-family: mona;
        font-size: 2rem;
    }

    .contact-menu a{
        width: auto;
        height: 15vh;
        text-decoration: none;
        font-family: 'archivo-black';
        color: #d9d9d9;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-menu:hover a{
    }



    /*---- Container Principal ----*/
    .principal_container{
        width: 100vw;
        min-height: 100vh;
        background: radial-gradient(circle 30vw at 75% 75%, #dbdbdbf5, #dbdbdbba, #747474de, #6461616e, #333333);
        display: flex;
        flex-direction: column;
        align-items: center;
    
    }

    .box_data{
        width: 100vw;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .data{
        width: 80vw;
        min-height: 57vh;
        padding-top: 6vh;
    }

    .box_title{
        width: 80vw;
        height: 4vh;
        font-family: garet;
        font-size: 3rem;
        color: #717171;
    }
     
    .box_subtitle{
        z-index: 2;
        text-align: left;
        font-size: 2rem;
        font-family: garet_book;
        color: white;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
    }  

    .box_other_informatons{
        width: 80vw;
        height: auto;
        text-align: left;
        font-family: garet_book;
    } 

    .information_txt{      
        font-family: garet_book;
        font-size: 1rem;
        color: #9E9E9E;
        letter-spacing: 2px;
        margin-top: 0.5rem;
        margin-left: 0.5rem;
    }

    .container_btn{
        width: 80vw;
        height: auto;
        text-align: left;
        padding-left: .5rem;
    } 

    .container_btn button{
        width: 9em;
        height: 3em;
        background-color: transparent;
        border: white solid;
        color: white;
        font-family: Verdana;
        font-family: garet_book;
        font-size: 1em;
        letter-spacing: 4px;
    }

    .container_btn button:hover{
        color: rgb(17, 17, 17);
        background-color: white;
        font-family: garet_book;
        cursor: pointer;
        transition: 0.8s;
    }

    .box_profile{        
        width: 80vw;
        min-height: 40vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .image_profile{         
        width: 55vw;
        min-height: 40vh;
    }


    /*---- Container Tecnologies ----*/
    .tecnologies_container{
        width: 100vw; 
        min-height: 100vh;   
        background-color: #D2D2D2;
        display: flex;
        flex-direction: column;
        align-items: center;
        /*---- Estilização ----*/
        font-family: garet_book;  
        color: white;
        padding-top: 2.5em;
        padding-bottom: 2.5em;
    }

    .teste{
        min-width: 75vw;
        height: auto;
    }

    .teste h2{
        font-size: 2.3rem;
        font-family: mona;
        color: #484848;
        text-align: center;
        margin: 0;
    }

    .teste h3{
        margin: 0;
        font-size: 2.5rem;
        font-family: mona;
        color: #8C8C8C;
        text-align: center;
    }

    .teste2{
        width: 75vw;
        height: auto;
        padding-top: 2rem;
    }

    .teste2 h3{
        color: #8C8C8C;
        font-size: 2.5rem;
        font-family: mona;
        text-align: left;
        margin-bottom: 0px;
        margin-top: 1rem;
        letter-spacing: 0.1rem;
        line-height: 2.5rem;
    }
    
    .text2{
        color: #888888;
        font-size: 1.3rem;
        text-align: justify;
        padding-left: .3rem;
        margin-top: 1rem;
    }
    
    .tecno_text{
        color: #333333;
        text-align: center;
    }

    .box_tecnology{
        width: 80vw;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        font-size: 4vw; 
    }

    .tecnology_icon1{
        width: 130px;
        height: 130px;
        margin: 10px;
        align-content: center;
        position: relative;     
        text-align: center;
        transition: 0.3s;
    }
    
    .tecnology_icon2{
        width: 130px;
        height: 130px;
        margin: 10px;
        align-content: center;
        position: relative;     
        text-align: center;
        transition: 0.3s;
    }
    
    .tecno_text{
        margin: 0px;
        font-size: 1rem;
        text-align: center;
        color: #333333;
    }

    .tecno_img{
        width: 4.5rem;
        height: 4.5rem;

    }


    /*---- Container animação ----*/
    .animation-container{
        width: 100vw;
        height: 90vh;
        background-color: #D2D2D2;
        display: none;
        justify-content: center;
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 15vh;
    }

    .box-animation{
        width: 10rem;
        height: 10rem;
        background-color: #484848;
        border-radius: 10px;
        position: sticky;
        top: 30vh;
    }


    /*---- Container works ----*/
    .works_container{        
        width: 100vw;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        font-family: garet_book;
        background: linear-gradient(#D2D2D2 0%, #535353d8 15%, #333333 20%);
    }

    .some-works{        
        width: 80vw;
        height: 1000px;
        display: flex;
        flex-direction: column;
        padding-top: 1rem;   
    }

    .title-projects{
        
        color: #FFFFFF;
        text-align: left;
    }

    .works{
        width: 80vw;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .work-side-right{
        width: 50vw;
        height: 200px;
        margin: .3rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .work-side-right h2{
        font-family: garet_book;
        color: #FFFFFF;
        text-align: left;
        margin: 0;
    }

    .work-side-right p{
        font-family: garet_book;
        font-size: .8rem;
        color: #A1A1A1; 
        text-align: justify;
        padding-right: .2rem;
    }

    .work_other{
        border-top: 1px solid #838383;
        padding-top: 1.5rem;
        margin-bottom: 7rem;
    }

    .work-side-left{
        width: 30vw;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-left{        
        width: 6rem;
        height: 200px;
        background-color: transparent;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        transition: .5s;
    }

    .box-left img{
        width: 6.5rem;
        height: 6rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    
    .work-side-right a{
        color: white;    
        text-decoration: none;    
    }

    .work-side-right button{
        width: 100px;
        height: 35px;
        font-family: mona;
        border: 0px;
        transition: .3s ease;
    }
    
    .btn-disabled{
        width: 100px;
        height: 35px;
        font-family: mona;
        color: #141414;
        border: 0px;
        transition: .3s ease;     
    }


    /*---- Container contacts ----*/
    .contacts_container{
        width: 100vw;
        min-height: 60vh;
        background-color: #D2D2D2;
        clip-path: polygon(0% 0%, 100% 15%, 100% 100%, 0% 100%);
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .box_contact{
        display: none;
    }

    .box_contact{
        width: 80vw;
        height: auto;
        display: flex;
        flex-direction: column;
        text-align: left;
        margin: 0px;
        margin-top: 8rem;
    }

    .img-contact{
        width: 14rem;
        height: 3.5rem;
    }

    .contact{
        width: 80vw;
        min-height: 5rem;
    }

    .box-contactt{
        width: 8rem;
        display: flex;
        flex-direction: row;
    }

    .contact h3{
        font-family: mona;
        color: #707070;
        font-size: 1.3em;
        margin-top: 1.3rem;
        margin-bottom: .5rem;
    }

    .img-link1{
        width: 3.5rem;
        height: 3.5rem;
    }

        
    .img-link2{
        width: 2.5rem;
        height: 2.5rem;
    }

    .img-link3{
        width:  2.5rem;
        height: 2rem;
    }

    .link{
        font-family: mona;  
        color: #707070;
        font-size: 1.2rem;
        text-decoration: none;
        font-weight: bold;
        margin-right: 2rem;
        margin-left: .5rem;
        padding-top: .5rem;
    }

    .link:hover{
            text-decoration: underline;
    }

    .link-email{
        font-family: mona;  
        color: #707070;
        font-size: 1.1rem;
        text-decoration: none;
        font-weight: bold;
        margin-right: 2rem;
        margin-left: .5rem;
    }

    .link-email:hover{
        text-decoration: underline;
    }

}
