* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'bebas';
    src: url('/bebas.ttf');
}
@font-face {
    font-family: 'inter';
    src: url('/inter.ttf');
}

body {
    background-color: #0A0A0A;
}

header {
    display: flex;
    padding: 30px 10%;
    justify-content: space-between;
    align-items: center;
    & span {
        color: #C7C7C7;
        font-weight: 600;
        font-family: 'bebas';
        font-size: 25px;
    }
    & ul {
        list-style: none;
        display: flex;
        gap: 1rem;
        & li {
            color: #C7C7C7;
            font-family: 'inter';
            font-size: 14px;
            cursor: pointer;
        }
    }
}

.hero {
    display: flex;
    justify-content: space-between;
    padding: 70px 10%;
    align-items: center;
    border-bottom: 1px solid #484848;
    height: 90vh;
    & .hero-content {
        width: 500px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        & button {
            background-color: #D3E97A;
            border: 0;
            padding: 10px 2rem;
            border-radius: 3rem; 
            cursor: pointer;
            outline: none;
        }
        & img {
            width: 40px;
            cursor: pointer;

        }
        & .hero-contact {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
    }
    & span {
        font-weight: 700;
        color: #C7C7C7;
        font-size: 70px;
        font-family: 'bebas';
    }
    & p {
        color: #C7C7C7;
        font-family: 'inter';
    }
    & img.perfil {
        width: 400px;
    }
}
.projetos {
    border-bottom: 1px solid #484848;
    & img {
        width: 400px;
    }
    padding: 100px 10%;
    & h3 {
        color: #FFF;
        font-family: 'bebas';
        font-size: 50px;
    }
    & h4 {
        color: #FFF;
        font-family: 'bebas';
        font-size: 50px;
   }
   & p {
    color: #C7C7C7;
    font-family: 'inter';
    font-size: 14px;
   }
    & .projetos-content {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 6rem;
    }
    
    & .projetos-content-image {
        padding: 3rem;
        margin-top: 3rem;
        border-radius: 1rem;
        background-color: #1A1A1A;
        width: 500px
    }
    & .projetos-informacoes {
        margin-top: 2rem;
        & h5 {
            font-size: 25px;
            color: #FFF;
            font-family: 'bebas';
        }
        & span {
            font-family: 'inter';
        }
    }
    & .projetos-informacoes-ano {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #484848;
        & span {
            color: #FFF;
        }
    }
}
.projetos-container-btn {
    margin-top: 1rem;
    & span {
        color:  #D3E97A;
        font-family: 'inter';
        border-bottom: 3px solid #D3E97A;
        cursor: pointer;
        font-weight: 600;
        text-decoration: none;
        outline: none;
    }
}

.sobremim {
    padding: 100px 10%;
    display: flex;
    gap: 5rem;
    border-bottom: 1px solid #484848;
    justify-content: space-between;
    & .sobremim-text {
        & h4 {
            font-size: 20px;
            font-family: 'arial';
            color: #FFF;
        } & p {
            font-family: 'inter';
            font-weight: 200;
            font-size: 14px;
            margin-top: 10px;
        }
    }
    & h3 {
        padding: 0;
        color: #FFF;
        font-family: 'bebas';
        font-size: 50px;
        width: 500px;
    }
    & p {
        color: #FFF;
    } 
    & .sobremim-container-btn {
        margin-top: 1rem;
        & span {
            color: #D3E97A;
            border-bottom: 3px solid #D3E97A;
            font-family: 'inter';
            font-weight: 600;
        }
    }
}

.contato {
    padding: 100px 10%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    & h3 {
        color: #FFF;
        font-family: 'bebas';
        font-size: 50px;
    }
    & button {
        margin-top: 1rem;
        border: 0;
        background-color: #D3E97A;
        padding: 10px 30px;
        border-radius: 2rem;
        font-weight: 600;
        font-size: 13px;
        color: #333;
        cursor: pointer;
    }
}

.footer {
    display: flex;
    color: #666;
    background-color: #1A1A1A;
    font-family: 'inter';
    padding: 1rem;
    justify-content: center;
    font-size: 14px;
}

.iconmenu {
    display: none !important;
}

.icon-menu::before {
    content: '' !important
}


@media (max-width: 768px){
    .hero {
        & span {
            
            font-size: 50px;
            
        }
    }
    .menu {
        display: none;
    }
    .menu.active { 
        display: block;
        background: #cfdc9c;
        padding: 1rem;
        position: absolute;
        right: 0;
        top: 0;
        height: 100vh;
        width: 200px;
        text-align: center;
        & li {
            color: #1A1A1A;
            font-weight: 500;
            line-height: 1.5rem;
        }
    }
    .iconmenu {
        display: block !important;
    }
    .icon-menu::before {
        content: "\f0c9 " !important
    }
    .hero {
        flex-direction: column;
        height: auto;
    }
    .hero-content {
        width: 100% !important;
    }
    .perfil {
        width: 300px !important;
        margin-top: 2rem;
    }
    .projetos-content-image {
        width: 100% !important;
        & img {
            width: 100%
        }
    }
    .projetos-content {
        flex-direction: column;
        gap: 2rem !important;
    }
    .sobremim {
        flex-direction: column !important;
        gap: 2rem !important;
        & h3 {
            width: auto;
        }
    }
    .projetos {
        & h4 {
            font-size: 33px;
        }
    }

}