/* Fonts */
@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Thin.ttf");
    font-weight: 100;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Light.ttf");
    font-weight: 200;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-ExtraLight.ttf");
    font-weight: 300;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Bold.ttf");
    font-weight: 700;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-ExtraBold.ttf");
    font-weight: 800;
}

@font-face {
    font-family: 'Encode Sans Semi Condensed';
    src: url("fonts/EncodeSansSemiCondensed-Black.ttf");
    font-weight: 900;
}

/* Resets */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #EAEAEA;
    --secondary: #4D4D4D;
    --extra: #FFA400;

    --brack: #000000;
    --white: #FFFFFF;
}

html{
    font-family: 'Encode Sans Semi Condensed', sans-serif;
    font-weight: 400;
}

ul{
    list-style: none;
}

@media only screen and (max-width: 655px){
    html{
        font-size: 80%;
    }
}

.size-49{
    font-size: 49px;
    line-height: 58.8px;
}

.size-40{
    font-size: 40px;
    line-height: 48px;
}

.size-39{
    font-size: 39px;
    line-height: 46.8px;
}

.size-30{
    font-size: 30px;
    line-height: 45px;
}

.size-29{
    font-size: 29px;
    line-height: 34.8px;
}

.size-27{
    font-size: 27.84px;
    line-height: 22.78px;
}

.size-22{
    font-size: 22px;
    line-height: 26.4px;
}

.size-19{
    font-size: 19px;
    line-height: 22.8px;
}

.bg-primary{
    background-color: var(--primary);
}

.bg-secondary{
    background-color: var(--secondary);
}

img{
    width: 100%;
    max-width: max-content;
}

h1{
    margin: 0;
}

section{
    height: 826px;
}

.container-main{
    overflow: hidden;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.sec-1 > div:first-of-type{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sec-1 > div:first-of-type img{
    left: -14%;
    bottom: 10px;
    position: absolute;
    z-index: 1;
}

.sec-1 > div:last-of-type{
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.sec-1-top{
    margin: 0 auto;
    padding-top: 118px;
    padding-bottom: 68px;
}

.sec-1 .sec-1-top img{
    margin-bottom: 20px;
}

.sec-1 .sec-1-top h1{
    font-weight: 200;
    margin-bottom: 0;
}

.sec-1 .sec-1-top h2{
    color: var(--extra);
    font-weight: 800;
    text-transform: uppercase;
}

.sec-1 .sec-1-bottom h3{
    font-weight: 500;
}

.sec-1 .sec-1-bottom h4{
    font-weight: 200;
}

.sec-1-bottom{
    padding-left: 50px;
    padding-top: 118px;
    padding-right: 60px;
    padding-bottom: 68px;
    height: 340px;
    width: 90%;
    margin-left: auto;
    margin-bottom: 50px;
}

.sec-1.image-right{
    display: flex;
}
.sec-1.image-right > div:first-of-type{
    order: 2;
}
.sec-1.image-right > div:last-of-type{
    order: 1;
}

.sec-2 > div:first-of-type{
    padding-left: 74.9px;
    padding-top: 105px;
}

.sec-2 ul li{
    display: flex;
    align-items: center;
    margin-bottom: 105px;
}

.sec-2 ul li div:first-of-type{
    min-width: 132.9px;
    height: 132.9px;
    color: var(--white);
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 37.4px;
}

.sec-2 ul li h1{
    margin-bottom: 10px;
    font-weight: 500;
}

.sec-2 ul li h4{
    font-weight: 200;
}

.sec-2 > div:last-of-type{
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 30px 0;
    height: 100%;
    padding-bottom: 90px;
}

.sec-2 img.plus-icon{
    position: absolute;
    z-index: 1;
    margin-bottom: 550px;
    margin-left: -15px;
    cursor: pointer;
}

.sec-2 .plus-hover{
    position: absolute;
    background-color: #d8d8d8;
    max-width: 480px;
    border-radius: 10px;
    text-align: center;
    padding: 50px;
    margin-bottom: 380px;
    opacity: 0;
    transition: opacity 0.8s;
}

.sec-2 img.plus-icon:hover ~ .plus-hover{
    opacity: 1;
}

.sec-2 .plus-hover h1{font-weight: 500;}
.sec-2 .plus-hover h4{font-weight: 200;}

.sec-2.image-left{
    display: flex;
}
.sec-2.image-left > div:first-of-type{
    order: 2;
}
.sec-2.image-left > div:last-of-type{
    order: 1;
}

.sec-3{
    height: 550px;
}

.sec-3 > div:first-of-type{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.sec-3 > div:last-of-type{
    padding: 0 0 0 20px;
    height: 100%;
}

.sec-3 span{
    margin-top: 20px;
    display: flex;
}

.sec-3 ul{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 60px;
    grid-gap: 10px;
}

.sec-3 ul li{
    text-align: center;
}

.sec-3 ul li h1{
    margin-top: 10px;
    font-weight: 500;
}

.sec-3 h1{
    font-weight: 500;
    margin-bottom: 10px;
}

.sec-3 .funcional{
    margin-top: 109px;
}

.sec-3 .funcional > h1, .sec-3 .funcional > p{
    width: 80%;
    margin: 0 auto;
}

.sec-4{
    display: block;
    height: 900px;
}

.sec-4 > div:first-of-type{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 54px;
    background-color: #FFA400;
    height: 100%;
}

.sec-4 > div:last-of-type{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
}

.sec-4 ul{
    width: 100%;
    max-width: 500px;
    padding-left: 30px;
}

.sec-4 ul li{
    margin-bottom: 67.292px; 
}

.sec-4 ul li h1{
    font-weight: 500;
    margin-bottom: 10px;
}

.sec-4 ul h4{
    font-weight: 200;
}

.sec-4 ul li img{
    display: block;
    margin-bottom: 38px;
}

.sec-4 img.plus-icon {
    position: absolute;
    z-index: 1;
    margin-top: -240px;
    margin-left: -15px;
    cursor: pointer;
}

.sec-4 .plus-hover{
    position: absolute;
    background-color: #d8d8d8;
    max-width: 480px;
    border-radius: 10px;
    text-align: center;
    padding: 50px;
    margin-top: 80px;
    opacity: 0;

    transition: opacity 0.8s;
}

.sec-4 .plus-hover h1{
    font-weight: 500;
}

.sec-4 .plus-hover h4{
    font-weight: 200; 
}

.sec-4 img.plus-icon:hover ~ .plus-hover{
    opacity: 1;
}

.sec-5{
    display: block;
}

.sec-5 .mobile{
    display: none;
}

.sec-5 > div:first-of-type{
    display: flex;
    align-items: center;
    justify-content: center;
    
    height: 100%;
}

.sec-5 > div:last-of-type{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding-top: 30px;
    padding-left: 80px;
}

.sec-5 > div:last-of-type img {
    margin-left: 26%;
}

.sec-5 h1 {
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 80.44px;
}

.sec-5 ul{
    padding-right: 30px;
}

.sec-5 ul li{
    margin-bottom: 36.634px;
    display: flex;
    align-items: center;
}

.sec-5 ul li span {
    font-weight: 400;
    margin-right: 30px;
}

.sec-5 ul li h5 {
    font-weight: 200;
}

.sec-5.image-right{
    display: flex;
}
.sec-5.image-right > div:first-of-type{
    order: 2;
}
.sec-5.image-right > div:last-of-type{
    order: 1;
}

@media only screen and (max-width: 992px){

    section{
        height: auto;
    }

    .sec-1.image-right{
        flex-direction: column;
    }
    .sec-1.image-right > div:first-of-type{
        order: 1;
        height: 600px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .sec-1.image-right > div:first-of-type img{
        left: auto;
        bottom: -60px;
        position: relative;
        right: 0;
    }
    .sec-1.image-right > div:last-of-type{
        order: 2;
    }

    .sec-1-bottom{
        width: 100%;
        padding-top: 40px;
        height: auto;
        padding-left: 60px;
    }

    .sec-1-top {
        padding-left: 60px;
        padding-right: 40px;
    }

    .sec-2 > div:first-of-type{
        text-align: center;
        padding: 40px 20px;
    }

    .sec-2 ul li{
        flex-direction: column;
    }

    .sec-2 ul li div:first-of-type{
        margin-right: 0;
        margin-bottom: 30px;
    }

    .sec-2 > div:last-of-type img.img-item{
        display: none;
    }

    .sec-2 img.plus-icon{
        margin-top: 0;
        margin-left: 0;
        margin-bottom: -6px;
    }

    .sec-2 > div:last-of-type{
        padding: 0;
    }

    .sec-2 img.plus-icon{
        z-index: 2;
    }

    .sec-2 .plus-hover {
        margin-top: 250px;
        z-index: 1;
    }

    .sec-2 > div:last-of-type img.img-item{
        display: block;
    }

    .sec-2 > div:last-of-type{
        padding: 0;
        height: 700px;
    }

    .sec-2.image-left{
        flex-direction: column;
    }

    .sec-2 img.plus-icon {
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 0;
        top: 20px;
    }

    .sec-3, .sec-4{
        height: auto;
    }

    .sec-3 > div:last-of-type{
        padding: 80px 0;
        text-align: center;
    }

    .sec-3 > div:first-of-type img{
        margin-bottom: -80px;
    }

    .sec-3 .bico-turbo{
        background-color: var(--primary);
        padding: 20px;
    }

    .sec-3 .funcional{
        padding: 0 20px;
        margin-top: 40px;
    }

    .sec-4{
        display: flex;
        flex-direction: column;
    }

    .sec-4 > div:last-of-type{
        order: 1;
        padding-bottom: 40px;
    }

    .sec-4 > div:first-of-type{
        order: 2;
        text-align: center;
        padding: 50px 20px;
        padding-bottom: 0;
    }

    .sec-4 ul{
        padding-left: 0;
    }

    .sec-4 ul li img{
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .sec-5.image-right{
        flex-direction: column;
    }

    .sec-5 > div:first-of-type{
        flex-direction: column;
        padding-top: 40px;
    }

    .sec-5 > div:first-of-type h1{
        margin-bottom: 20px;
    }

    .sec-5 > div:last-of-type{
        padding-left: 20px;
        padding-right: 20px;
    }

    .sec-5 h1{
        margin-top: 20px;
        font-size: 30px;
    }

    .sec-5 .desktop{
        display: none;
    }
    
    .sec-5 .mobile{
        display: block;
    }

    .sec-5.image-right{
        flex-direction: column;
    }

    .sec-5.image-right > div:first-of-type{
        order: 1;
    }
    .sec-5.image-right > div:last-of-type{
        order: 2;
    }

    .container-main .row{
        margin: 0;
    }
}

@media only screen and (max-width: 450px){
    .sec-1 > div:first-of-type img {
        right: -65px;
        bottom: -50px;
    }

    .sec-1-top{
        padding-top: 70px;
    }

    .sec-1-bottom {
        padding: 30px;
        height: auto;
        width: 90%;
        margin: 0 auto;
        margin-bottom: 30px;
    }

    .sec-1-top {
        padding-left: 40px;
    }
}