@import url('./styles.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./dark-mode.css');

.s-hero-vaga {
    padding-block: 19rem 8rem;

    @media (max-width: 1023px) {
        padding-block: 18rem 4rem;
    }

    @media (max-width: 767px) {
        padding-block: 14rem 4rem;
    }
}

.s-hero-vaga .container {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    justify-content: space-between;

    @media (max-width: 1023px) {
        flex-direction: column;
    }
}

.s-hero-vaga .container .left-container {
    width: 100%;
    max-width: 63.8rem;

    @media (max-width: 1023px) {
        max-width: 100%;
    }
}

.s-hero-vaga .container .left-container .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    margin-bottom: 4rem;

    @media (max-width: 767px) {
        flex-direction: column;
    }
}

.s-hero-vaga .container .left-container .top h1 {
    margin-bottom: 1.6rem;

    @media (max-width: 767px) {
        text-align: center;
    }
}

.s-hero-vaga .container .left-container .top .info {
    width: 100%;
    max-width: 35rem;
}

.s-hero-vaga .container .left-container .top a {
    @media (max-width: 767px) {
        display: none;
    }
}

.s-hero-vaga .container .left-container .top .info ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;

    @media (max-width: 767px) {
        justify-content: center;
    }
}

.s-hero-vaga .container .left-container .top .info ul li {
    padding: 8px 1.6rem;
    border: 1px solid var(--green);
    border-radius: 4px;
}

.s-hero-vaga .container .left-container p {
    color: var(--grey-300);
    margin-bottom: 4rem;
}

.s-hero-vaga .container .left-container .itens {
    margin-left: 2rem;
    display: flex;
    gap: 4rem;
    flex-direction: column;
}

.s-hero-vaga .container .right-container .itens {
    margin-left: 2rem;
    display: flex;
    gap: 4rem;
    flex-direction: column;
}

.s-hero-vaga .container .left-container .itens .item h6,
.s-hero-vaga .container .right-container .itens .item h6 {
    margin-bottom: 1.2rem;

    @media (max-width: 767px) {
        font-size: 2rem;
    }
}

.s-hero-vaga .container .left-container .itens .item ul {
    margin-left: 3rem;
}

.s-hero-vaga .container .right-container .itens .item ul {
    margin-left: 3rem;
}

.s-hero-vaga .container .right-container a {
    display: none;

    @media (max-width: 767px) {
        display: table;
        margin: 4rem auto 0 auto;
    }
}

.s-hero-vaga .container .left-container .itens .item ul li {
    list-style: disc;
    color: var(--Preto, #272627);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.s-hero-vaga .container .right-container .itens .item ul li {
    list-style: disc;
    color: var(--Preto, #272627);
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}

.s-hero-vaga .container .right-container {
    width: 100%;
    max-width: 57.3rem;


    @media (max-width: 1023px) {
        max-width: 100%;
    }
}

.s-hero-vaga .container .left-container .image {
    width: 100%;
    max-width: 10rem;
    height: auto;
    position: relative;
    margin-bottom: 1.6rem;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    @media(max-width: 1023px) {
        display: none;
    }
}

.s-hero-vaga .container .right-container .image .ret,
.s-hero-vaga .container .right-container .image .frame-top,
.s-hero-vaga .container .right-container .image .frame-bottom {
    position: absolute;
}


.s-metrolope-parque {
    padding-block: 8rem;
    position: relative;

    &::before {
        content: '';
        width: 100%;
        height: 23.9rem;
        background-color: var(--off);
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .container {
        background-color: var(--orange-02);
        border-radius: 2.4rem;
        padding-block: 8rem;
        position: relative;
        z-index: 3;

        .area {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2.4rem;
            width: 100%;
            max-width: 114rem;
            margin: 0 auto;
            position: relative;

            .frame-video {
                position: absolute;
                left: 0;
                bottom: -8rem;
                right: 10rem;
                margin: 0 auto;
                width: 100%;
                max-width: 21.6rem;
                height: 13.6rem;
                object-fit: contain;
            }
        }

        .left-container {
            width: 100%;
            max-width: 44.2rem;
            padding-left: 2.1rem;

            h2 {
                color: var(--orange);
                margin-bottom: 1.6rem;
            }

            .title {
                position: relative;

                h3 {
                    position: relative;
                    z-index: 2;

                    span {
                        line-height: 160%;
                    }
                }
            }
        }

        .right-container {
            width: 100%;
            max-width: 74.5rem;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            position: relative;
            z-index: 2;

            img,
            video {
                width: 100%;
                max-width: 64.7rem;
                height: 36.4rem;
                border-radius: 8px;
                object-fit: cover;
            }

            a {
                display: none;
            }


        }
    }

    @media (max-width: 1024px) {
        padding-block: 4rem;

        .container {
            padding-block: 4rem;

            .area {
                flex-direction: column;
                align-items: center;

                .left-container {
                    max-width: 768px;

                    h2 {
                        text-align: center;
                    }

                    h3 {
                        text-align: center;

                        br {
                            display: none;
                        }
                    }

                    .title {
                        img {
                            left: 0;
                        }

                        margin-bottom: 2rem;
                    }

                    a {
                        display: none;
                    }
                }

                .right-container {
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;

                    a {
                        display: table;
                        margin: 4rem auto 0 auto;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {
        .container {
            .area {
                .left-container {
                    padding-left: 0;

                    .title {
                        img {
                            display: none;
                        }

                        h3 {
                            font-size: 26px;

                            span {
                                line-height: 120%;
                            }
                        }
                    }
                }

                .right-container {

                    img,
                    video {
                        height: auto;
                    }
                }

                .frame-video {
                    display: none;
                }
            }
        }
    }
}

.s-nossos-diferenciais {
    padding-block: 8rem;
    background-color: var(--off);

    .container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2.4rem;
    }

    .left-container {
        width: 100%;
        max-width: 69.4rem;

        h2 {
            color: var(--orange);
            margin-bottom: 1.6rem;
        }

        .images {
            position: relative;
            width: 100%;
            max-width: 56.4rem;

        }
    }

    .right-container {
        width: 100%;
        max-width: 53.3rem;

        a {
            display: table;
            margin-right: 0;
            margin-left: auto;
            margin-bottom: 10.2rem;
            margin-top: 4rem;
        }

        a:last-child {
            display: none;
        }

        ul {

            li {
                display: flex;
                gap: 1.6rem;

                &:not(:last-child) {
                    margin-bottom: 3.2rem;
                }

                .icon {
                    width: 4.8rem;
                    height: 4.8rem;
                    border-radius: 50%;
                    background-color: var(--green-01);
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        width: 3.2rem;
                        height: 3.2rem;
                        object-fit: contain;
                    }
                }

                .title {
                    width: 100%;
                    max-width: 46.9rem;

                    h6 {
                        margin-bottom: 1.6rem;

                        span {
                            font-size: 14px;
                            font-weight: 500;
                            line-height: 140%;
                        }
                    }

                    p {
                        color: var(--dark-grey);
                    }
                }
            }
        }
    }

    @media (max-width: 1023px) {
        padding-block: 4rem;

        .container {
            flex-direction: column;
            align-items: center;

            .left-container {
                max-width: 100%;

                h2,
                h3 {
                    text-align: center;
                }

                .images {
                    display: none;
                }
            }

            .right-container {
                a:first-child {
                    display: none;
                }

                a:last-child {
                    display: table;
                    margin: 4rem auto 0 auto;
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding-block: 2rem 4rem;

        .container {
            .left-container {
                .images {
                    display: none;
                }

                h3 {
                    margin-bottom: 0;
                }
            }

            .right-container {
                ul {
                    li {
                        flex-direction: column;
                        align-items: center;

                        .title {

                            h6,
                            p {
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }
}

.s-depoimentos {

    padding-block: 8rem;
    background-color: var(--off);

    .container {
        position: relative;
        z-index: 2;

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2.4rem;
            margin-bottom: 5.6rem;

            .buttons {
                width: 100%;
                max-width: 12rem;
                display: flex;
                justify-content: space-between;
                gap: 2.4rem;
                align-items: center;

                .swiper-button-prev,
                .swiper-button-next {
                    position: relative;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: 0;
                    width: 4.8rem;
                    height: 4.8rem;
                }
            }
        }

        .swiper-slide {
            display: flex;
            align-items: stretch;
            height: auto !important;
            justify-content: center;

            .card-depoimento {
                width: 100%;
                height: 100%;
                max-width: 39.7rem;
                border-radius: 8px;
                background: var(--Preto, #272627);
                box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.10);
                overflow: hidden;
                border-top: 8px solid var(--orange);
                padding: 3.4rem 2.4rem 2.4rem 2.4rem;

                p {
                    color: #fff;
                    margin-bottom: 8rem;
                    font-size: 2.4rem;
                    transition: all .3s ease;

                    span {
                        color: var(--orange);
                    }
                }

                button {
                    display: flex;
                    align-items: center;
                    gap: 1.2rem;
                    font-size: 18px;
                    font-weight: 500;
                    line-height: 140%;
                    color: var(--orange);
                    padding-bottom: 8px;
                    border-bottom: 3px solid var(--orange);
                    transition: all .3s ease;

                    svg {
                        path {
                            transition: all .3s ease;
                        }
                    }
                }

                .author {
                    transform: translateY(100%);
                    pointer-events: none;
                    visibility: hidden;
                    height: 0;
                    width: 0;
                    opacity: 0;
                    display: flex;
                    align-items: center;
                    gap: 1.6rem;
                    justify-content: flex-start;
                    transition: all .3s ease;

                    .image {
                        width: 5.2rem;
                        height: 5.2rem;
                        border-radius: 50%;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    .text {
                        width: 100%;
                        max-width: 28rem;

                        h6 {
                            color: var(--orange);
                            margin-bottom: 4px;
                        }

                        span {
                            color: #fff;
                        }
                    }

                }
            }

            &:hover {


                .card-depoimento {
                    padding-top: 1.6rem;

                    button {
                        width: 0;
                        height: 0;
                        pointer-events: none;
                        visibility: hidden;
                        opacity: 0;
                    }

                    p {
                        font-size: 1.8rem;

                        span {
                            color: #fff;
                        }
                    }

                    .author {
                        transform: translateY(0);
                        pointer-events: all;
                        visibility: visible;
                        height: auto;
                        width: auto;
                        opacity: 1;
                    }
                }
            }
        }
    }

    @media (max-width: 767px) {
        padding-bottom: 4rem;

        .container {
            .top {
                flex-direction: column;

                h2 {
                    text-align: center;
                }
            }
        }
    }
}

.s-vagas-destaques {
    padding-bottom: 8rem;
    background-color: var(--off);
    position: relative;

    .container {
        padding-top: 8rem;
        border-top: 1px solid var(--grey-300);

        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2.4rem;
            margin-bottom: 5.6rem;

            .left {
                width: 100%;
                max-width: 711px;

                h4 {
                    color: var(--orange);
                    margin-bottom: 1.6rem;
                }
            }

            .buttons {
                width: 100%;
                max-width: 12rem;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1.6rem;

                .swiper-button-prev,
                .swiper-button-next {
                    position: relative;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    margin: 0;
                    width: 4.8rem;
                    height: 4.8rem;
                }

            }


        }

        .swiper {
            .swiper-slide {
                display: flex;
                align-items: stretch;
                height: auto !important;
                justify-content: center;

                .card-vaga {
                    padding: 2.4rem 1.7rem;
                    width: 100%;
                    height: 100%;
                    max-width: 39.7rem;
                    border-radius: 8px;
                    background: #fff;
                    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
                    transition: all .3s ease;

                    &:hover {
                        button {
                            svg {
                                path {
                                    transform: translateX(3px);
                                }
                            }
                        }
                    }

                    h6 {
                        color: var(--dark-grey);
                        margin-bottom: 8px;
                    }

                    .logo {
                        width: 100%;
                        max-width: 8.8rem;
                        height: auto;
                        margin-bottom: 3.2rem;
                    }

                    .local {
                        display: flex;
                        align-items: center;
                        gap: 1.6rem;
                        margin-bottom: 2.4rem;

                        .cidade {
                            display: flex;
                            align-items: center;
                            gap: 1.6rem;

                            p {
                                color: var(--dark-grey);
                            }


                        }

                        span {
                            background-color: var(--orange-02);
                            color: var(--orange-01);
                            display: inline-block;
                            padding: 4px 8px;
                            border-radius: 4px;
                        }
                    }

                    ul {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 8px;
                        margin-bottom: 4rem;

                        li {
                            padding: 8px 16px;
                            border-radius: 4px;
                            border: 1px solid var(--green);
                        }
                    }

                    button {
                        display: flex;
                        align-items: center;
                        gap: 1.2rem;
                        font-size: 18px;
                        font-weight: 500;
                        line-height: 140%;
                        color: var(--orange);
                        padding-bottom: 8px;
                        border-bottom: 3px solid var(--orange);

                        svg {
                            path {
                                transition: all .3s ease;
                            }
                        }
                    }
                }

                .card-vaga.disabled {

                    h6 {
                        opacity: .5;
                    }

                    .logo,
                    .local,
                    .areas {
                        opacity: .5;
                    }

                    button.btn.primary {
                        color: white;
                        display: table;
                        margin: 0 auto;
                        border: none;
                    }
                }
            }
        }


    }

    @media (max-width: 1023px) {
        padding-bottom: 4rem;

        .container {
            .top {
                flex-direction: column;

                h2,
                h4 {
                    text-align: center;
                }

                a.btn.primary {
                    display: none;
                }
            }

            a.btn.primary {
                display: table;
                margin: 4rem auto 0 auto;

            }
        }
    }

    @media (max-width: 767px) {

        &::before {
            display: none;
        }

        .container {
            padding-top: 4rem;

            .top {
                margin-bottom: 3.2rem;

                .left {
                    h4 {
                        text-align: center;
                    }
                }
            }



            .swiper {
                .swiper-slide {
                    .card-vaga {
                        padding: 1.6rem;

                        ul {
                            margin-bottom: 2.4rem;

                            li {
                                padding: 8px;
                            }
                        }
                    }
                }
            }
        }
    }
}

body.dark-mode .s-hero-vaga {
    background-color: var(--black);
}

body.dark-mode .s-hero-vaga h1,
body.dark-mode .s-hero-vaga ul li {
    color: white;
}

body.dark-mode .s-hero-vaga .left-container p {
    color: white;
}

body.dark-mode .s-hero-vaga .container h6 {
    color: white;
}

body.dark-mode .s-hero-vaga .container .left-container .itens .item ul li,
body.dark-mode .s-hero-vaga .container .right-container .itens .item ul li {
    color: white;
}

body.dark-mode .s-metrolope-parque::before {
    background-color: var(--black);
}