@charset "UTF-8";

/*** SECTION HEADER ***/

.sc-header {
    height: 100vh;
    background-color: #ede8e2;
    position: relative;
    overflow: hidden;
}
.sc-header .center-container {
    max-width: 1080px;
    z-index: 1;
}

.sc-header .titulo-header {
    padding: 0 40px 60px;
    margin-top: -5rem;
    color: #010101;
    text-align: right;
}
.sc-header .titulo-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: -3px;
    font-family: "Sora";
}
.sc-header .titulo-header h2 {
    font-size: 19px;
    color: #3e3e3e;
    font-family: "Inter";
}

.header-divider {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(calc(-100% + 1px));
    pointer-events: none;
}


/*** PORTFOLIO ***/

.sc-portfolio {
    background: #fff;
    position: relative;
    color: #010101;
    padding-bottom: 12%;
}

.sc-portfolio > .center-container {
    max-width: 1080px;
    margin-top: -9%;
    z-index: 1;
    padding: 30px;
}

.sc-portfolio .link-job {
    text-decoration: none;
    text-align: right;
}
.sc-portfolio .link-job .imagem {
    background: #3a3528;
    border-radius: 5px;
}
.sc-portfolio .link-job .imagem img {
    width: 100%;
    border-radius: 5px;
    background: #3a3528;
    transition: .05s;
}
.sc-portfolio .link-job:hover .imagem img {
    opacity: .95;
    transition: .15s;
}
.sc-portfolio .link-job .titulo {
    font-size: 15px;
    font-weight: 300;
    padding: 10px 5px 0;
    color: #3e3e3e;
    display: inline-block;
    border-bottom: 1px dotted;
}
.sc-portfolio .link-job:hover .titulo {
    border-bottom-style: solid;
}

.sc-portfolio .link-job .categoria {
    font-size: 12px;
    font-weight: 300;
    padding: 3px 5px 15px;
    border-radius: 3px 3px 0 0;
    color: #ffffff;
    display: inline-block;
    background-color: #010101;
    transform: translateY(12px);
}



/*** JOB ***/

.sc-job {
    background: #fff;
    position: relative;
    color: #232323;
    padding-bottom: 12%;
}


.sc-job > .center-container {
    max-width: 1080px;
    margin-top: -20%;
    z-index: 1;
    padding: 30px;
}


@media (max-width: 576px) {
    .sc-job > .center-container {
        margin-top: -30%;
    }
    .sc-header .titulo-header {
        margin-top: 0%;
    }
}