@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

* {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;

    & .btn-fade {
        width: 242px;
        height: 58px;
        background-color: transparent;
        text-decoration: none;
        background-image: linear-gradient(137deg, #de4238 0%, #631d9a 100%);
        border: none;
        border-radius: 50px;
        margin: 20px 0px;

        text-decoration: none;
        font-weight: 700;

        animation-name: fade, bottomTop;
        animation-duration: 0.9s, 0.9s;

        & a {
            color: white;
            text-decoration: none;
            text-transform: uppercase;

            & :visited {
                color: white;
                text-decoration: none;
            }
        }
    }
}

body {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "DM Sans", sans-serif;
    font-weight: 600;

    & #menu {
        width: 100%;
        height: 6rem;
        background-image: linear-gradient(90deg, #f2295b56 0%, #641d9a56 100%);

        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: fixed;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 400;
        z-index: 20;
        transition: transform 0.3s ease;

        & #home-logo-mobile {
            display: none;
            padding: 10px 30px;
        }

        & #menu-hamburguer {
            display: none;
        }

        & #esc {
            display: none;
        }

        & nav {
            width: 70%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            & #itens-menu {
                position: relative;
                display: flex;
                flex-direction: row;
                justify-content: center;
                align-items: center;
                gap: 50px;
                text-transform: uppercase;
                font-size: 1rem;
                font-weight: 700;
                padding: 5px 0px;

                & #drop-down {
                    width: 25px;
                    height: 25px;
                    background-image: url(/image/icons/arrow-left-icon.png);
                    background-position: center center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    transform: rotate(270deg);
                    position: absolute;
                    right: 445px;
                    bottom: 4px;
                }

                & #menu-drop-servicos {
                    display: none;
                    flex-direction: column;
                    border: 1px white solid;
                    background-color: #b82b6d;
                    font-size: 1rem;
                    font-weight: 400;
                    position: absolute;
                    top: 31px;
                    left: 160px;
                    text-transform: lowercase;

                    a {
                        padding: 15px;
                        text-decoration: none;

                        &:hover {
                            background-color: white;
                            color: #b82b6d;
                        }

                        &::first-letter {
                            text-transform: uppercase;
                        }
                    }
                }
            }
        }

        & p {
            display: none;
        }

        & a {
            color: white;
            text-decoration: none;

            & :visited {
                color: white;
                text-decoration: none;
            }
        }
    }

    #menu.hidden {
        transform: translateY(-100%);
    }

    #menu:hover {
        background-image: linear-gradient(90deg, #f2295b 0%, #641d9afe 100%);
    }

    & main {
        width: inherit;
        /* overflow: hidden; */

        & #carousel {
            width: 100%;
            height: 98vh;
            display: flex;
            flex-flow: row nowrap;
            color: white;

            & #container-tbelucci {
                background-image: url("/image/banner-tbeluccirh.png");
                background-position: top right;
                background-repeat: no-repeat;
                background-size: cover;

                width: 100%;
                height: inherit;
                display: flex;
                flex-direction: column;
                justify-content: center;

                & #container-info-tbelucci {
                    width: 50%;
                    display: flex;
                    margin-left: 200px;
                    flex-flow: column wrap;
                    gap: 15px;
                }

                & h1 {
                    font-size: 64px;
                    font-weight: 400;

                    & span {
                        background: linear-gradient(
                            137deg,
                            #de4238 0%,
                            #631d9a 100%
                        );
                        background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }
                }

                & p {
                    font-size: 20px;
                    font-weight: 400;
                }
            }

            & #container-target {
                background-image: url("/image/banner-tbeluccitarget.png");
                background-position: top right;
                background-repeat: no-repeat;
                background-size: cover;
                width: 100%;
                height: inherit;
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: start;

                & #container-info {
                    width: 50%;
                    display: flex;
                    margin-left: 200px;
                    flex-flow: column wrap;
                    gap: 15px;
                }

                & h1 {
                    font-size: 64px;
                    font-weight: 400;

                    & span {
                        background: linear-gradient(
                            137deg,
                            #de4238 0%,
                            #631d9a 100%
                        );
                        background-clip: text;
                        -webkit-text-fill-color: transparent;
                    }
                }

                & p {
                    font-size: 20px;
                    font-weight: 400;
                }
            }
        }

        & #bullets {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            top: -50px;
            z-index: 5;

            & label {
                border-radius: 10px;
                width: 90px;
                height: 10px;
                background-color: #80808033;

                & input[type="radio"] {
                    position: absolute;
                    opacity: 0;
                    pointer-events: none;
                }
            }
        }

        & #quem-somos-section {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            padding: 40px 0px;

            & #quem-somos-container {
                width: 70vw;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;

                & #quem-somos-content {
                    width: 100%;
                    height: 50%;
                    display: flex;
                    flex-direction: row;
                    gap: 40px;

                    & #quem-somos-info {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 15px;

                        & h1 {
                            color: #3a3a3a;
                            font-size: 3rem;
                        }

                        & p {
                            color: #7a7a7a;
                            font-size: 1rem;
                            font-weight: 400;
                        }
                    }

                    & #foto-thalita {
                        width: 600px;
                        background-image: url(/image/Quem-Somos.png);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-size: cover;
                        border-radius: 15px;
                    }
                }

                & #mvv {
                    width: 100%;
                    height: 50%;
                    display: flex;
                    flex-direction: column;
                    gap: 30px;

                    & #mvv-title {
                        text-align: center;

                        & h1 {
                            color: #3a3a3a;
                            font-size: 2rem;
                        }
                    }

                    & #mvv-cards-container {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        gap: 30px;

                        & .card {
                            background-image: linear-gradient(
                                135deg,
                                #f2295b 0%,
                                #641d9a 100%
                            );
                            width: 250px;
                            height: 420px;
                            display: flex;
                            flex-direction: column;
                            gap: 30px;
                            padding: 30px;
                            border-radius: 15px;
                            color: white;
                            box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
                            transition: box-shadow 0.3s ease;

                            & p {
                                font-size: 1rem;
                                font-weight: 300;
                            }

                            & .head {
                                display: flex;
                                flex-direction: row;
                                align-items: center;
                                gap: 30px;
                            }
                        }

                        & #card1 {
                            & #icone-missao {
                                height: 50px;
                                width: 50px;
                                background-color: white;
                                mask-image: url(/image/Missao.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }
                        }

                        & #card2 {
                            background-image: none;
                            color: #7a7a7a;

                            & #icone-visao {
                                height: 50px;
                                width: 50px;
                                background-color: #7a7a7a;
                                mask-image: url(/image/Visao.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }
                        }

                        & #card3 {
                            & #icone-valores {
                                height: 50px;
                                width: 50px;
                                background-color: white;
                                mask-image: url(/image/Valores.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }

                            & .bold {
                                font-weight: bold;
                            }
                        }
                    }
                }
            }
        }

        & #nossos-servicos-section {
            width: 100%;
            height: auto;
            padding: 50px 0px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #000000;
            color: white;

            & #nossos-servicos-container {
                width: 70%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 50px;

                & #nossos-servicos-head {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                    text-align: center;

                    & h1 {
                        font-size: 3rem;
                    }

                    & p {
                        color: #7a7a7a;
                        font-weight: 400;
                    }
                }

                & #nossos-servicos-info {
                    display: flex;
                    flex-direction: row;
                    gap: 30px;

                    & #nossos-servicos-img {
                        width: 300px;
                        height: 300px;
                        background-image: url(/image/Recrutamento-e-seleção.png);
                        background-position: center center;
                        background-repeat: no-repeat;
                        background-size: contain;
                    }

                    & #infos {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;

                        & h1 {
                            font-size: 2rem;

                            & span {
                                background: linear-gradient(
                                    137deg,
                                    #de4238 0%,
                                    #631d9a 100%
                                );
                                background-clip: text;
                                -webkit-text-fill-color: transparent;
                            }
                        }

                        & p {
                            font-weight: 400;
                        }

                        & #topic {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                        }
                    }
                }

                & #nossos-servicos-plans {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;

                    & h1 {
                        font-size: 2rem;
                    }

                    & #cards-container {
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        gap: 20px;

                        & .card {
                            width: 300px;
                            height: fit-content;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            gap: 10px;
                            padding: 10px;
                        }

                        & #card-1 {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            text-align: center;

                            & p {
                                font-weight: 400;
                            }
                        }
                    }

                    & .plan-card {
                        display: flex;
                        flex-direction: column;
                        gap: 15px;
                        border-radius: 15px;
                        padding: 20px;
                        background-color: #151515;

                        ul {
                            width: 100%;
                            display: none;
                            flex-direction: column;
                            gap: 5px;
                            background-color: #121212;
                            color: #3a3a3a;
                            position: relative;
                            background-color: white;

                            li {
                                margin-left: 40px;
                                margin-top: 5px;
                                margin-bottom: 10px;
                                font-weight: 400;
                            }
                        }

                        &:hover {
                            background-color: white;
                            cursor: pointer;

                            & p {
                                color: #3a3a3a;
                            }
                        }
                    }
                }

                & #nosso-servicos-outros {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 20px;

                    & h1 {
                        font-size: 2rem;

                        & span {
                            background: linear-gradient(
                                137deg,
                                #de4238 0%,
                                #631d9a 100%
                            );
                            background-clip: text;
                            -webkit-text-fill-color: transparent;
                        }
                    }

                    & p {
                        font-weight: 400;
                    }

                    & #cards-container {
                        display: flex;
                        flex-direction: row;
                        gap: 30px;

                        & .card {
                            background-color: #121212;
                            width: 250px;
                            height: 300px;
                            display: flex;
                            flex-direction: column;
                            gap: 30px;
                            padding: 30px;
                            border-radius: 15px;

                            & .icones {
                                width: 40px;
                                height: 40px;
                                background-color: white;
                            }

                            & h1 {
                                font-size: 1rem;
                            }

                            & #icone1 {
                                mask-image: url(/image/Simulação-de-entrevista.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }

                            & #icone2 {
                                mask-image: url(/image/Preparação-de-Entrevista.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }

                            & #icone3 {
                                mask-image: url(/image/Busca-de-Vagas.png);
                                mask-size: contain;
                                mask-repeat: no-repeat;
                            }

                            &:hover {
                                background-color: #434343;
                            }
                        }
                    }
                }
            }
        }

        & #para-empresas {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 0px;

            & #para-empresas-container {
                width: 70%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 30px;

                & #recrutamento-selecao {
                    display: flex;
                    flex-direction: column;
                    gap: 30px;

                    & #head-para-empresas {
                        display: flex;
                        flex-direction: column;
                        gap: 30px;
                        text-align: center;

                        & h1 {
                            font-size: 3rem;
                            color: #3a3a3a;
                        }

                        & p {
                            font-size: 1rem;
                            color: #7a7a7a;
                            font-weight: 400;
                        }
                    }

                    & #content1-container {
                        display: flex;
                        flex-direction: row;
                        gap: 30px;

                        & p {
                            font-weight: 400;
                            font-size: 1rem;
                            color: #3a3a3a;
                        }

                        & #content {
                            display: flex;
                            flex-direction: column;
                            gap: 20px;

                            & h1 {
                                font-size: 3rem;
                                color: #3a3a3a;
                            }

                            & div {
                                display: flex;
                                flex-direction: column;
                                gap: 10px;

                                & h1 {
                                    font-size: 1.1rem;
                                    color: #3a3a3a;
                                }

                                & p {
                                    font-weight: 400;
                                    font-size: 1rem;
                                    color: #3a3a3a;
                                }
                            }
                        }

                        & #img {
                            width: 600px;
                            height: auto;
                            background-image: url(/image/Banner-recrutamento-e-seleção.png);
                            background-position: center center;
                            background-repeat: no-repeat;
                            background-size: contain;
                        }
                    }
                }

                & #outplacement {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 30px;

                    & h1 {
                        font-size: 3rem;
                        color: #3a3a3a;
                    }

                    & #content-container {
                        height: 400px;
                        display: flex;
                        flex-direction: row;
                        gap: 30px;

                        & #img {
                            width: 600px;
                            height: auto;
                            background-image: url(/image/Banner-Outpalcement.png);
                            background-position: center center;
                            background-repeat: no-repeat;
                            background-size: contain;
                        }

                        & #content {
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            gap: 30px;

                            & p {
                                font-size: 1rem;
                                font-weight: 500;
                            }

                            & h1 {
                                font-size: 1.1rem;
                            }

                            & #beneficios {
                                display: flex;
                                flex-direction: column;
                                gap: 10px;
                            }
                        }
                    }

                    & p {
                        font-size: 1rem;
                        color: #3a3a3a;
                        font-weight: 500;
                    }
                }
            }
        }

        & #historias-de-sucesso {
            background-color: #1f1a21;
            background-image: url("/image/doted-map.png");
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            & #hds-header {
                margin-top: 30px;
                text-align: center;
                color: white;

                & h1 {
                    font-size: 59px;
                }

                & p {
                    font-size: 16px;
                }
            }

            #depoimentos {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                width: 100%;

                & #prints {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    overflow-x: hidden;
                    flex-wrap: nowrap;
                    width: 1230px;
                    margin-top: 30px;
                    overscroll-behavior-x: contain;

                    & img {
                        border-radius: 15px;
                        object-fit: contain;
                    }
                }

                & #nav-arrows {
                    width: calc(100vw - 30px);
                    display: flex;
                    justify-content: space-between;
                    z-index: 15;
                    position: relative;
                    bottom: 300px;

                    & img {
                        &:hover {
                            cursor: pointer;
                        }
                    }
                }
            }

            & #case-sucesso {
                text-align: center;

                & h1 {
                    font-size: 59px;
                    color: white;

                    & p {
                        font-size: 16px;
                        font-weight: 500;
                    }
                }
            }

            & #videos {
                display: flex;
                gap: 40px;
                margin: 40px 0px;

                & iframe {
                    border-radius: 15px;
                }

                .video-wrapper {
                    position: relative;
                    width: 648px;
                    /* max-width: 640px; */
                    margin: auto;
                    cursor: pointer;
                }

                .video-thumbnail {
                    display: block;
                    width: 648px;
                    border-radius: 15px;
                }

                .play-button {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 80px;
                    height: 80px;
                    background: url("/image/icons/play-button.png") no-repeat
                        center center;
                    background-size: contain;
                    pointer-events: none;
                    z-index: 15px !important;
                }

                iframe {
                    width: 648px;
                    height: 365px;
                    border: none;
                    display: none;
                }
            }
        }

        & #botão-whatsapp {
            background-color: #25d366;
            width: 100px;
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            z-index: 10;
            position: fixed;
            bottom: 50px;
            right: 50px;

            & img {
                width: 3rem;
                position: relative;
                left: 1px;
                top: 1px;
            }
        }
    }

    & footer {
        height: 300px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        background-color: black;
        color: white;

        & #iformacoes {
            display: flex;
            flex-direction: row;
            justify-content: center;

            & #logo {
                margin: 20px;
            }

            & #links-rapidos {
                margin: 20px;

                p {
                    color: red;
                    font-size: 20px;
                }

                & ul {
                    li {
                        list-style: none;
                        font-weight: 400;

                        & a {
                            color: white;
                            text-decoration: none;

                            & :visited {
                                color: white;
                                text-decoration: none;
                            }
                        }
                    }
                }
            }

            & #redes-sociais {
                margin: 20px;

                & p {
                    color: purple;
                    font-size: 20px;
                }
            }
        }

        & #copyRight {
            display: flex;
            flex-direction: row;
            justify-content: center;
        }
    }
}

@keyframes nossos-servicos-head {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0%);
    }
}
