@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;800;900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
    list-style: none;
    outline: none;
}
::-webkit-scrollbar{
    display: none;
}
.home{
    width: 100%;
    height: 969px;
    position: relative;
    background-image: url(./images/home.bg.jpg);
    background-position: center;
    background-size: cover;
    z-index: 2;
}
.name-title{
    position: absolute;
    top: 3rem;
    left: 3rem;
}
.name-title h1{
    display: inline-block;
    margin-right: 2rem;
    color: #fff;
    font-size: 1.8rem;
}
.name-title h4{
    display: inline-block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
}
.home-text{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3rem;
}
.home-text h4{
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 400;
}
.home-text h1{
    font-size: 5rem;
    color: #fff;
    margin-bottom: 2rem;
}
.home-text h5{
    color: #fff;
    font-weight: 400;
    font-size: 1.2rem;
}
.home-button{
    width: 400px;
    height: 80px;
    display: flex;
    position: absolute;
    right: 0rem;
    bottom: 8rem;
}
.btn{
    width: 100px;
    height: 80px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    border-radius: 5px 0 0 5px;
}
.btn:hover i{
    color: #d4d1d1;
    transform: translateX(3px);
    transition: all 200ms ease;
}
.home-button h2{
    width: 300px;
    height: 80px;
    background: #101010;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
/*================================ABOUT==========================================*/
.about{
    width: 100%;
    height: 969px; 
    position: relative;
    background: #101010;
    display: flex;
}
.about-title{
    position: absolute;
    top: 3rem;
    transform: translateX(-50%);
    left: 50%;
    z-index: 2;
}
#sobre{
    transform: translateY(-5px);
    color: aqua;
    transition: all 200ms ease;
}
#hist{
    transition: all 200ms ease;
}
.about-title h1{
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
}
.about-img{
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.about-img img{
    position: absolute;
    top: -8rem;
    left: -10rem;
    width: 100%;
    height: 100%;
}
.about-text1{
    width: 50%;
    height: 100%;
    position: relative;
    display: initial;
    animation: opacity 1s;
}
.about-text1-box{
    width: 600px;
    height: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.about-text1-box h3{
    position: relative;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2rem;
}
.about-text1-box h3::after{
    content: '';
    position: absolute;
    width: 150px;
    background: #fff;
    height: 2px;
    bottom: -1rem;
    left: 0;
}
.about-text1-box h1{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
}
.about-text1-box p{
    color: #fff;
    margin-bottom: 2rem;
}
.about-text1-box h2{
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-text1-box h5 a{
    color: #fff;
    font-weight: 300;
    font-size: 1rem;
}
.about-text1-box h5{
    margin-top: 1rem;
}
.about-text2{
    width: 50%;
    height: 100%;
    position: relative;
    display: none;
    animation: opacity 1s;
}
.about-text2-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 600px;
    height: 400px;
}
.about-text2-box h3{
    position: relative;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2rem;
}
.about-text2-box h3::after{
    content: '';
    position: absolute;
    width: 150px;
    background: #fff;
    height: 2px;
    bottom: -1rem;
    left: 0;
}
.about-text2-box h1{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
}
.about-text2-box p{
    color: #fff;
    margin-bottom: 2rem;
}
/*=============================PORTFOLIO========================================*/
@keyframes opacity{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
#habilidades{
    display: block;
    color: aqua;
    transform: translateY(-5px);
    transition: all 200ms ease;
}
#especializacoes{
    transition: all 200ms ease;
}
#diferenciais{
    transition: all 200ms ease;
}
.portfolio{
    width: 100%;
    height: 700px;
    background: #1a1a1a;
    position: relative;
    display: flex;
}
.portfolio-title{
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 2;
}
.portfolio-title h1{
    margin-left: 30px;
    margin-right: 30px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
}
.portfolio-text1{
    width: 50%;
    height: 100%;
    display: initial;
    position: relative;
    animation: opacity 1s;
}
.portfolio-text1-box{
    width: 400px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: left;
}
.portfolio-text1-box h2{
    position: relative;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 400;
}
.portfolio-text1-box h2::after{
    content: '';
    width: 150px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -2rem;
    position: absolute;
}
.portfolio-text1-box h1{
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
}
.portfolio-text1-box h3{
    color: #fff;
    margin-bottom: .4rem;
    font-weight: 300;
}
.portfolio-text2{
    width: 50%;
    height: 100%;
    display: none;
    position: relative;
    animation: opacity 1s;
}
.portfolio-text2-box{
    width: 300px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.portfolio-text2-box h2{
    position: relative;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 400;
}
.portfolio-text2-box h2::after{
    content: '';
    width: 150px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -2rem;
    position: absolute;
}
.portfolio-text2-box h1{
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
}
.portfolio-text2-box h3{
    color: #fff;
    margin-bottom: .4rem;
    font-weight: 300;
}
.portfolio-text3{
    width: 50%;
    height: 100%;
    display: none;
    position: relative;
    animation: opacity 1s;
}
.portfolio-text3-box{
    width: 300px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.portfolio-text3-box h2{
    position: relative;
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 400;
}
.portfolio-text3-box h2::after{
    content: '';
    width: 150px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: -2rem;
    position: absolute;
}
.portfolio-text3-box h1{
    font-size: 3rem;
    color: #fff;
    margin-bottom: 2rem;
}
.portfolio-text3-box h3{
    color: #fff;
    margin-bottom: .4rem;
    font-weight: 300;
}
.portfolio-img{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio-img img{
    width: 500px;
    height: 500px;
}
/*==================================WORKS========================================*/
.works{
    width: 100%;
    height: 969px;
    background: #101010;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.works-title{
    position: absolute;
    top: 5rem;
    left: 6rem;
    color: #fff;
    font-size: 2rem;
}
.works-slides a{
    transition: all 200ms ease;
}
.works-slides{
    width: 1700px;
    height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    place-items: center;
}
.slides{
    width: 400px;
    height: 600px;
    position: relative;
    border-radius: 5px;
}
.slide-text{
    position: absolute;
    bottom: 0;
    color: #fff;
}
.slide-text p{
    font-weight: 300;
    padding: 10px;
}
.slide-text h2{
    font-weight: 500;
    padding: 10px;
}
.works-slides a:hover{
    opacity: 0.8;
}
#slide1{
    background-image: url(./images/slide1.jpg);
    background-position: center;
    background-size: cover;
}
#slide2{
    background-image: url(./images/slide2.jpg);
    background-position: center;
    background-size: cover;
}
#slide3{
    background-image: url(./images/slide3.jpg);
    background-position: center;
    background-size: cover;
}
#slide4{
    background-image: url(./images/slide4.jpg);
    background-position: center;
    background-size: cover;
}
/*==================================BOOK=========================================*/
.book{
    width: 100%;
    height: 969px;
    background: #1a1a1a;
    display: flex;
}
.book-text{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.book-box{
    width: 600px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    position: relative;
}
.book-box h3{
    color: #fff;
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.book-box h1{
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
}
.book-box p{
    color: #fff;
    margin-bottom: 4rem;
    font-size: 1.2rem;
}
.btn2{
    width: 400px;
    height: 50px;
    left: 50%;
    bottom: 10rem;
    transform: translateX(-50%);
    font-size: 1.1rem;
    border-radius: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #fff;
    position: absolute;
    transition: all 200ms ease;
}
.btn2:hover{
    background: #fff;
    color: #1a1a1a;
}
.book-img{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.book-img img{
    border-radius: 5px;
}
/*=================================CONTACT=======================================*/
.contact{
    width: 100%;
    height: 969px;
    background: #101010;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact h2{
    position: absolute;
    top: 5rem;
    left: 50%;
    color: #fff;
    font-weight: 300;
    transform: translateX(-50%);
}
.contact-box{
    width: 600px;
    height: 600px;
    background: #fff;
    text-align: center;
    border-radius: 10px;
}
.contact-box form{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-box h1{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.name{
    display: block;
    width: 300px;
    height: 30px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #000;
    font-size: 1rem;
    padding: 5px;
    transition: all 200ms ease;
}
.name:focus{
    background: #101010;
    color: #fff;
}
.email{
    display: block;
    width: 300px;
    height: 30px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #000;
    font-size: 1rem;
    padding: 5px;
    transition: all 200ms ease;
}
.email:focus{
    background: #101010;
    color: #fff;
}
.textarea{
    display: block;
    width: 300px;
    height: 300px;
    resize: none;
    margin-bottom: 2rem;
    border-radius: 5px;
    border: 1px solid #000;
    font-size: 1rem;
    padding: 5px;
    transition: all 200ms ease;
}
.textarea:focus{
    background: #101010;
    color: #fff;
}
.contact-btn{
    display: block;
    width: 300px;
    height: 40px;
    color: #000;
    background: transparent;
    border: 1px solid #101010;
    border-radius: 40px;
    cursor: pointer;
    transition: all 200ms ease;
}
.contact-btn:hover{
    background: #101010;
    color: #fff;
}
.socials{
    width: 600px;
    height: 80px;
    background: #fff;
    position: absolute;
    bottom: 0;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socials ul{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 80px;
}
.socials ul li a{
    margin-left: 30px;
    margin-right: 30px;
    font-size: 2rem;
    color: #101010;
    transition: all 200ms ease;
}
.socials ul li a:hover{
    color: #464444;
}