*{
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar{
    display: none;
}

html{
    overflow-x: hidden;
}


/* -----------------GERAL----------------- */

body{
    background-color: #1b2223;
    font-family: Helvetica;
    color: #f4fefd;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
    flex-direction: column;
}

h1{
    font-size: 32px;

}
h2{
    padding-bottom: 10px;
}
ul{
    list-style: none;

    display: flex;

}
li{
    padding: 20px;
}
a{
    color: #08B8B8;
    text-decoration: none;
    border-bottom: 1.5px solid #08B8B8;

    transition: 200ms;
}
a:hover{
    color: #69ecec;
    border-bottom: 1.5px solid #69ecec;
}
.container{
    border: 1px solid #08B8B8;
    padding: 20px;
    margin-bottom: 10px;
   
}
.flex-container{
    border: 1px solid #08B8B8;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;

    margin-bottom: 15px;
}
.button{
    border: none;
    border-radius: 12px;
    background-color: #08B8B8;
    padding: 12px 50px;
    color: #f4fefd;
}
.button:hover{
    border: none;
    color: #ffffff;
    text-decoration: underline;
}
.button:active{
    transition: none;
    background-color: #107881;
}

header, #About, #Contact{
    padding: 0px 9%;
}

/* ----------------------ANIMAÇÕES------------------- */

[data-animate]{
    opacity: 0;
    transition: 1s;
}

[data-animate = "down"]{
    transform: translate3d(0,-100%,0);
}
[data-animate = "up"]{
    transform: translate3d(0,100%,0);
}
[data-animate = "left"]{
    transform: translate3d(-100%,0,0);
}
[data-animate = "right"]{
    transform: translate3d(100%,0,0);
}

[data-animate].animate{
    opacity: 1;
    transform: translate3d(0,0,0);
}



 /* -----------------Header----------------- */
header{
        width: 100%;
        box-sizing: border-box;

    background-color: #031d20;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute ;
    top: 0;
    z-index: 9;
    
}

#logo{
    height: 35px;
}
.mobile-nav{
    height: 100vh;
    width: auto;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.719);
    right: 0px;
    top: 35px;
    display: none;
}

.mobile-nav ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    
}

.menu-desktop{
    display: flex;
}
.menu-mobile{
    margin-top: 6px;
    display: none;
}
#checkbox-menu{
    width: 4px;
    opacity: 0;
}
#checkbox-menu-label{
    cursor: pointer;
    position: relative;
    display: block;
    height: 22px;
    width: 30px;
}
label span{
    position: absolute;
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 30px;
    background: #08B8B8;
    transition: 0.3s ease-in-out;
}
label span:nth-child(1){
    top: 0; 
}
label span:nth-child(2){
    top: 8px;
}
label span:nth-child(3){
    top: 16px;
}
#checkbox-menu:checked + label span:nth-child(1){
    transform: rotate(45deg);
    top: 8px;
}
#checkbox-menu:checked + label span:nth-child(2){
    opacity: 0;
}
#checkbox-menu:checked + label span:nth-child(3){
    transform: rotate(-45deg);
    top: 8px;
}

#checkbox-menu:checked ~ nav{
        left: 70%;
        transition: 1s;
        display:block;
}



/* ------------------Introducing------------------ */

#Introducing{
    height: 100%;
    width: 100%;
    box-sizing: border-box;

    padding: 9rem 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: linear-gradient(45deg, #1b2223 ,#1b2223,  #3a4f50, #435c5e,  #08B8B8 ,#0ef6cc ,#08B8B8, #4b6d6e, #3a4f50, #1b2223, #1b2223);
    background-size: 300% 300%;
    
    animation: colors 20s ease-in-out infinite ;
}
@keyframes colors{
    0%{
        background-position: 0% 50%;
    }

    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0% 50%;
    }
}
#Introducing h1, #Introducing p{
    text-shadow: 2px 2px 10px #0000008f;
}


#Introducing img{
    width: 250px;
    height: 250px;
    border-radius: 50%;

    box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.479);

    margin-bottom: 16px;

}
    /* --------------ABOUT---------- */

#About{
    padding: 2rem 10%;
    
    text-align: center;

   
}
#About .flex-container{
    flex-wrap: wrap;
}

#About p{
    margin-bottom: 14px;
}


/* --------------Portfolio-------------- */

#Portfolio h2{


    padding: 1rem;
    text-align: center;

    background: linear-gradient(90deg,  #08B8B8, #435c5e, #1b2223  );
    animation: colors 10s infinite;
    

}
#Portfolio img{
    width: 100%;
    max-width: 628px;
    height: 100% ;
    max-height: 303px;
   
    height: fit-content;
}

#Portfolio .flex-container{
    margin: 20px;
    margin-bottom: 3rem;
    border: none;
}
.text{
     padding: 10px 25px;
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.text h3{
    padding-bottom: 1rem;
}
.text p{
    padding-bottom: 8px;
}
.text a{
    text-align: center;
    align-self: center;

    margin-bottom: 10px;
}

@media screen and (min-width= 1000px) {
    .button{
        padding: 12px 80px;
    }
}


#more{  
    justify-content: center;
    align-items: center;
}
#more h3{
    margin-left: 20px;
    color: #107881;
}


#plus{
    padding:16px 20px;
    border-radius: 50%;

    font-size: 20px ; 
    text-decoration: none;

    background-color: #107881;
}


#more a{
    border: none;

}


/* ------------Contact-----------------*/



#Contact{
    background: url(backgroundblur2.png);
    background-size: 300% 300%;

    animation: colors-up 20s ease infinite;
    padding-top: 2rem;
    padding-bottom: 1rem;

}
@keyframes colors-up{
    0%{
        background-position: 0% 0%;
    }

    25%{
        background-position: 50% 100%;
    }
    
    50%{
        background-position: 100% 0%;
    }
    75%{
        background-position: 20% 70%;
    }
    100%{
        background-position: 0% 0%;
    }
}
#Contact p {
    padding-bottom: 20px;
}


#Contact .flex-container{
    flex-direction: column;
    background: #1b222394;
    border: none;
    border-radius: 25px;
    padding:20px 32px;
}



form{
    display: flex;
    flex-direction: column;
  
    justify-content: center;
}

textarea{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

input, textarea{
    margin-bottom: 14px;
    padding: 8px 10px;
    background: none;
    border: 1px solid #4b6d6e;
    color: #08B8B8;
}

input:focus {
    background: none;
    border-style:solid;
    border: 2px solid #08B8B8;
    color: #08B8B8;

}

#send-button{
    border-color: #08B8B8;
    width: 50%;
    border-radius: 8px;
    align-self: center;
    
}
#send-button:hover{
    background: #05353a77;
}
#send-button:active{
    background: #059eaf77;
}



/* ------------FOOTER------------- */

footer{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    

    padding-bottom: 5px;
    color: #08B8B8;
}

footer .logo{
    height: 30px;
    transform: translateY(25%) ;
    padding: 0;
    margin: 0;
}

.break{
    background-color: #107881;
    width: 2px;
    height: 8px;
    margin-top: 10px;
    
}
footer li{
    padding-left: 0;
    padding-right: 0;
    margin-right: 12px;
}

.text-small{
    font-size: 12px;
}



footer .button{
    background:none;
    border: 1px solid #107881;
   
    border-radius: 8px;

    padding: 10px 19px;
}

footer .button:hover{
    border: 1px solid #08B8B8;
    filter: brightness(15);
}
footer .button:active{
    background-color: #1078817e;
}

#btn-1, #btn-2, #btn-3, #btn-En{
    background-repeat: no-repeat;
    background-position: center;

}
#btn-En{
    background-image: url(EN.png);
}
#btn-1{
    background-image: url(pt.png);
}

#btn-2{
    background-image: url(instagram.png);    
}

#btn-3{
    background-image: url(linkedin.png);
}



/* -----------------------MEDIA------------------- */
@media screen and (max-width: 1000px){
    .wrap{
        flex-wrap: wrap;
        
    }
    .reverse{
        flex-wrap: wrap-reverse;
    }
    #Portfolio img{
        padding-bottom: 10px;
    }
}



@media screen and (max-width: 660px){
   
   /*------------- Header ----------*/
    header{
        position: sticky;
        top: 0px;
        width: 100%;
    }

    .menu-mobile{
        display: flex;
    }
    .menu-desktop{
        display: none;
    }

    #send-button{
        width: 60%;
    }



}


@media screen and (max-width: 370px){
   
    header, #About, #Contact {
        padding: 0px 0px;
    }
    
    #Contact{
        padding-top: 1rem;
    }
 }
