@media (min-width: 481px) {

    .background-1 div {
        width: 178vh;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
    }

    .background-1 .background {
        background-image: url(/assets/images/background-recorte.png);
        /* background-repeat: no-repeat; */
    }

    .background-1 .background:before {
        z-index: 1;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /* for brackground perfect gradient in safari */
        background-image: linear-gradient(to right, transparent 20%, rgb(33,33,33) 80%, rgb(33,33,33) );
    }

    /* for brackground perfect gradient in chrome */
    @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
        .background-1 .background:before {
            background-image: linear-gradient(to right, transparent 20%, #222 80%, #222);
        }
    }

    .background-1 .logo {
        background-image: url(/assets/svg/logo.svg);
        background-repeat: no-repeat;
        background-size: auto 100%;
        width: 88.5vh;
        top: 10vh;
        left: 5.31vh;
        height: 70vh;
    }

    .piramide {
        width: 230vh;
        height: 100vh;
        background-image: url(/assets/images/piramide2.png);
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: -10vw bottom;
    }

    .inovacao {
        top: 10vh;
        font-family: 'Roboto';
        font-size: 7.5em;
        letter-spacing: -0.04em;
        font-weight: 500;
        color: #FFFFFF;
        width: 68vw;
        left: 40vw;
    }

    .inovacao p {
        line-height: 1.05em;
    }

    .inovacao span {
        color: #FEC500;
    }

    .desenvolvemos {
        top: 62vh;
        font-size: 2.5em;
        letter-spacing: -0.04em;
        font-weight: 300;
        color: #C2C2C2;
        width: 50vw;
        left: 40vw;
    }
}




@media (max-width: 480px) {
    .background-1 .background {
        /* display: none; */
        top: 0;
        width: 100vw;
        height: 100vh;
        position: absolute;
        background-image: url(/assets/images/background-recorte.png);
        background-repeat: repeat;
        z-index: 0;
    }

    .background-1 .background:before {
        z-index: 1;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(to bottom, transparent, #222222);
        background-image: linear-gradient(to right, transparent 20%, rgb(33,33,33) 100%, rgb(33,33,33) );
    }

    .background-1 .logo {
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-image: url(/assets/svg/logo.svg);
        background-repeat: no-repeat;
        background-position: 55vw 20vh;
        background-size: auto 50%;
        opacity: 0.6;
        z-index: 1;
    }

    .background-1 .piramide {
        position: absolute;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-image: url(/assets/images/piramide.png);
        background-repeat: no-repeat;
        background-position: center 40vh;
        background-size: auto 70%;
        opacity: 1;
        z-index: 1;
    }

    .piramide:before {
        z-index: 1;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(to bottom, transparent 70%, #222222);
    }

    section {
        width: 100vw;
        overflow-x: hidden;
        position: relative;
        box-sizing: border-box;
        padding: 20px;
        z-index: 2;
    }

    section#land {
        height: 40vh;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 4vh 0 10vh 0;
    }

    .inovacao {
        top: 0vh;

        letter-spacing: -0.04em;
        font-weight: 500;
        color: #fff;
    }

    .inovacao p {
        font-size: 3.5em;
        line-height: 1.05em;
    }

    .inovacao span {
        color: #FEC500;
    }

    .desenvolvemos {
        top: 62vh;
        font-size: 1.5em;
        letter-spacing: -0.04em;
        font-weight: 300;
        color: #C2C2C2;
        left: 38vw;
        margin-top: 40px;
    }
}