@import url(header.css);
@import url(cards.css);
@import url(home.css);
@import url(quemsomos.css);
@import url(valor.css);
@import url(clientes.css);
@import url(formLgpd.css);
@import url(form.css);
@import url(footer.css);
@import url(envieCurriculo.css);
@import url(vagas.css);
@import url(buscarVagas.css);
@import url(lgpd.css);
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font);
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--gray);
}

body,
button,
a {
    color: var(--text);
    font: 400 1rem "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: var(--text);
}

button:hover {
    cursor: pointer;
}

:root {
    --text: #ffffff;
    --gray: #ced1db;
    --blueOp: #1c3157da;
    --blue: #1c3157;
    --afterColor: #3a4d77;
    --font: "Montserrat", sans-serif;
    --w-size: 200px;
    --w-margin: calc(-var(--w-size)/2);
    --b-size: 70%;
    --box-wrapper-width: var(--b-size);
    --box-wrapper-height: var(--b-size);
    --box-wrapper-margin: calc((100% - var(--box-wrapper-height))/2) calc((100% - var(--box-wrapper-width))/2);
}

#app {
    width: 100%;
    height: 100vh;
}

/* ANIMAÇÃO JS*/
.text-reveal, .img-reveal, .title-reveal, .Qsomos-reveal, .reveal-delay1, .reveal-delay2, .reveal-delay3,
.reveal1, .reveal2, .reveal3{
    visibility: hidden;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b4b4b4;
    transition: opacity 1.55s, visibility 1.55s;
}

.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6.5rem;
}

.box-wrap {
    display: flex;
    width: 200px; /* Ajuste o tamanho total dos cubos aqui */
    height: 200px; /* Ajuste o tamanho total dos cubos aqui */
    position: relative;
    transform: rotate(-45deg); /* Preserva a rotação original */
}

.box {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, #1c3157, #ffffff, #1c3157);
    background-position: 0% 50%;
    background-size: 1000% 1000%;
    visibility: hidden;
}

.box.one {
    animation: moveGradient 3s infinite, oneMove 3.5s infinite;
}

.box.two {
    animation: moveGradient 15s infinite, twoMove 3.5s 0.15s infinite;
}

.box.three {
    animation: moveGradient 15s infinite, threeMove 3.5s 0.3s infinite;
}

@keyframes moveGradient {
    to {
        background-position: 100% 50%;
    }
}

@keyframes oneMove {
    0%, 100% {
        visibility: visible;
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    14.2857% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    28.5714% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    42.8571% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    57.1428% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    71.4285% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    85.7142% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    100% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
}

@keyframes twoMove {
    0%, 100% {
        visibility: visible;
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    14.2857% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    28.5714% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    42.8571% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    57.1428% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    71.4285% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    85.7142% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    100% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
}

@keyframes threeMove {
    0%, 100% {
        visibility: visible;
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    14.2857% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    28.5714% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    42.8571% {
        clip-path: inset(0% 70% 70% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    57.1428% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    71.4285% {
        clip-path: inset(0% 35% 70% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    85.7142% {
        clip-path: inset(35% round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
    100% {
        clip-path: inset(35% 70% 35% 0 round 5%);
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    }
}
