@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 13vh;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 7px;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background-color: #0e2c68;
}

body {
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

[data-anime] {
    opacity: 0;
    transition: .6s ease-in-out;
    z-index: -1;
}

[data-anime].animate {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}

[data-anime="top"] {
    transform: translate3d(0, -100px, 0);
}

[data-anime="left"] {
    transform: translate3d(-100px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(100px, 0, 0);
}

[data-anime="bottom"] {
    transform: translate3d(0, 100px, 0);
}

.select-disable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.splash {
    width: 100%;
    height: 100vh;
    background-color: #000116;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 1s;
}

.nothing {
    opacity: 0;
    pointer-events: none;
    z-index: -10;
}


.splash img {
    width: 8rem;
    transition: all 2;
    animation: .5s fadeIn ease-in-out forwards;
}

.spinner-box {
    position: absolute;
    width: 6.5rem;
    height: 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }

.circle-border {
    width: 6rem;
    height: 6rem;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(63,249,220);
    background: linear-gradient(0deg, rgba(255, 255, 255, .2) 33%, #ffffff 100%);
    animation: spin .8s linear 0s infinite, .5s fadeIn ease-in-out forwards;
  }
  
  .circle-core {
    width: 100%;
    height: 100%;
    background-color: rgb(0, 1, 22);
    border-radius: 50%;
  }

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to{
        transform: rotate(359deg);
    }
}
  

#home {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 97vh;
    background-image: url("../img/backgrounds/background.svg");
    background-size: center;
    background-repeat: no-repeat;
    padding-top: 22px;
    background-position: 24% 100%;
    overflow: hidden;
    position: relative;
}

.content-header {
    display: flex;
    justify-content: space-around;
}

.nav {
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    top: 0;
    height: 12vh;
    width: 100vw;
    z-index: 2;
    transition: all .5s ease-in-out;
}

.nav-ativo {

    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo-nav {
    max-height: 60px;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.line {
    width: 32px;
    height: 2;
    background-color: #fff;
    margin: 8px;
    transition: 0.3s;
}

.line-ativo {
    width: 32px;
    height: 2;
    background-color: #000;
    margin: 8px;
    transition: 0.3s;
}

.mobile-menu.active .line-1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line-2 {
    opacity: 0;
}

.mobile-menu.active .line-3 {
    transform: rotate(45deg) translate(-5px, -7px);
}

.voltar-topo {
    position: fixed;
    display: flex;
    bottom: 0px;
    right: 20px;
    width: 180px;
    height: 25px;
    background: #4953807c;
    text-decoration: none;
    color: #5d6daa;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.voltar-topo-ativo {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

.container-estrelas {
    width: 100%;
    height: 10vh;
    overflow: hidden !important;
}

.estrelas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
}

.estrelas_animation {
    animation-name: estrelas_animation;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    pointer-events: none;
}

@keyframes estrelas_animation {
    0% {
        transform: translate(0%, 0);
    }

    50% {
        transform: translate(0, -550px);
    }

    100% {
        transform: translate(0, -1100px);
    }
}

.azul {
    color: #266ef3;
}

.nav-list {
    list-style: none;
    display: flex;
    margin-left: 18vw;
}

.nav-list-item {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 50px;
}

.nav-links {
    position: relative;
    text-decoration: none;
    color: #fff;
    transition: all .4s ease-in-out;
}

.nav-links::before  {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #266ef3;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .4s ease-in-out;
}

.nav-links:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.nav-links-ativo {
    color: #000;
}

.logo-header-mobile {
    display: none;
}

.textos-header {
    position: relative;
    top: 10%;
    width: 400px;
    z-index: 1;
}

.titulo-azul {
    color: #266ef3;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 30px;
}

.titulo-header {
    width: 600px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
}

.titulo-header::before {
    content: '';
    display: block;
    width: 188px;
    height: 15px;
    transform: skew(-55deg);
    background-color: #266ef3;
    position: relative;
    left: 255px;
    top: 50px;
    z-index: -1;
}

.descricao-header {
    color: white;
    width: 500px;
    font-size: 20px;
    margin-top: 16px;
}

.texto-branco {
    color: #fff;
}

.btn-header {
    background-color: #266ef3;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    margin-top: 60px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 10px -1px #2873FF;
    box-shadow: 0px 0px 10px -1px #2873FF;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all .4s ease-in-out;
}

.btn-header:hover {
    background-color: #588ff7;
    -webkit-box-shadow: 0px 0px 15px -1px #508cfc;
    box-shadow: 0px 0px 15px -1px #508cfc;
}

.entre-contato {
    display: none;
}

.imgs-top {
    position: relative;
    width: 425px;
    height: 425px;
    max-width: 425px;
    max-height: 425px;
    pointer-events: none;
}

.bloco-header {
    position: absolute;
    top: -50%;
    left: 20%;
}

.computador-top,
.planeta-top,
.alavancas,
.luzes {
    max-width: 425px;
    position: absolute;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% {
        transform: translate(0, -10px);
    }

    50% {
        transform: translate(0, 15px);
    }

    100% {
        transform: translate(0, -10px);
    }
}

.green-lever {
    animation-name: green-lever;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes green-lever {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.red-lever {
    animation-name: red-lever;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes red-lever {
    0% {
        transform: translate(0, -10px);
    }

    50% {
        transform: translate(0, 10px);
    }

    100% {
        transform: translate(0, -10px);
    }
}

.yellow-lever {
    animation-name: yellow-lever;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes yellow-lever {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.red-light {
    animation-name: red-light;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes red-light {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.main {
    width: 100%;
}

#servicos,
#projetos {
    margin-left: 90px;
    margin-right: 90px;
}

.titulo-servicos {
    color: #494949;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
}

.titulo-servicos::before {
    content: '';
    display: block;
    width: 270px;
    height: 10px;
    transform: skew(-55deg);
    background: #DDDDFA;
    position: relative;
    top: 32px;
    z-index: -1;
}

.container-cards {
    margin-top: 60px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card-servicos {
    width: 450px;
    height: 550px;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 14px;
}

.titulo-card-servicos {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #162680;
    width: 100%;
    height: 40px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    font-size: 25px;
    font-weight: 700;
}

.card {
    width: 350px;
    height: 450px;
    margin: 20px;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 14px;
    background-color: #fff;
    -webkit-box-shadow: 13px 15px 1px #161650;
    -moz-box-shadow: 13px 15px 1px #161650;
    box-shadow: 13px 15px 1px #161650;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.titulo-card {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    height: 40px;
    background: #162680;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.conteudo-servicos {
    padding: 22px;
}

.container-img-servicos {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 250px;
    margin: 80px 0 100px 0;
}

.img-servicos {
    width: 80%;
    display: flex;
}

.texto-servicos {
    display: flex;
    width: 100%;
    text-align: center;
    color: #2c3b77;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.msg-servicos {
    margin-top: 50px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.equipe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 130px;
    margin-left: -2px;
    height: 1200px;
    background-image: url("../img/backgrounds/fundo-azul.svg");
    background-size: cover;
    background-repeat: no-repeat;
}

.container-equipe {
    width: 100%;
    margin-top: -90px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
}

.titulo-equipe {
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.line-equipe {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.div-foto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    height: 285px;
    margin: 20px 20px 50px 20px;
}

.foto {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 0 10px 0;
}

.foto img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.div-redes-sociais {
    display: flex;
    justify-content: space-evenly;
}

.redes-sociais {
    width: 20px;
    margin-left: 10px;
    margin-right: 10px;
    filter: brightness(100);
    transition: all .3s ease-in-out;
}

.redes-sociais:hover {
    filter: invert(62%) sepia(56%) saturate(4905%) hue-rotate(199deg) brightness(98%) contrast(103%);
    transform: scale(1.15);
}

.nome-equipe {
    font-size: larger;
    font-weight: 500;
}

.funcao-equipe {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
}

#sobre {
    display: flex;
    justify-content: center;
    margin-left: 260px;
    margin-right: 260px;
}

.titulo-sobre::before {
    content: '';
    display: block;
    width: 185px;
    height: 10px;
    transform: skew(-55deg);
    background: #DDDDFA;
    position: relative;
    top: 35px;
    z-index: -1;
}

.titulo-sobre {
    margin-bottom: 50px;
}

.container-sobre {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-sobre {
    width: 500px;
}

.logo-sobre-mobile {
    display: none;
}

.container-texto-sobre {
    text-align: justify;
    width: 60%;
    margin-left: 120px;
    font-weight: 600;
    font-size: 20px;
    color: #494949;
}

.titulo-projetos,
.titulo-sobre,
.titulo-historico,
.titulo-parcerias {
    color: #494949;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    white-space: nowrap;
}

#historico {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    background-image: url("../img/backgrounds/fundo-historico.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 1700px;
}

.container-historico {
    position: relative;
    height: 1600px;
}

.titulo-historico {
    text-align: center;
    margin-bottom: 50px;
}

.imgs-historico {
    width: 1300px;
    pointer-events: none;
}

.imgs-historico-mobile {
    display: none;
}

.data-historico {
    color: #0e2c68;
    margin-bottom: 14px;
}

.texto-historico {
    font-weight: 600;
    font-size: 16px;
}

.texto-container {
    width: 450px;
    position: relative;
}

.texto-container-1 {
    top: -86%;
    left: 30%;
}

.texto-container-2 {
    top: -72%;
    left: 35%;
}

.texto-container-3 {
    top: -50%;
    left: 30%;
}

.texto-container-4 {
    top: -35%;
    left: 38%;
}

#projetos {
    margin-top: 50px;
}

.container-projetos {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.projeto {
    width: 100%;
    border-radius: 20px;
}

.projeto-mobile {
    display: none;
    border-radius: 20px;
}

.titulo-projetos {
    width: 100%;
    text-align: center;
}

#parcerias {
    margin-top: 100px;
    width: 100%;
    height: 400px;
}

.titulo-parcerias {
    margin-left: 90px;
}

.titulo-parcerias::before {
    content: '';
    display: block;
    width: 295px;
    height: 10px;
    transform: skew(-55deg);
    background-color: #DDDDFA;
    position: absolute;
    left: 0px;
    top: 22px;
    z-index: -1;
}

.container-parcerias {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.parceria {
    display: flex;
    width: 450px;
    height: 400px;
    justify-items: center;
    align-items: center;
}

.img-parceria {
    width: 500px;
    transition: transform .3s ease-in-out;
}

.img-parceria:hover {
    transform: scale(0.95);
}

#contato {
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 750px;
}

.container-contato {
    position: relative;
    width: 95%;
    height: 750px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.container-img {
    display: flex;
    position: absolute;
    left: 0;
    width: 40%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.container-img img {
    pointer-events: none;
    width: 80%;
}

.titulo-contato {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0%;
    color: #494949;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    white-space: nowrap;
}

.titulo-contato-branco {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 5%;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    white-space: nowrap;
}

.container-form {
    position: absolute;
    right: 0;
    display: flex;
    width: 50%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(157deg, rgba(0, 0, 0, 1) 18%, rgba(14, 14, 48, 1) 48%, rgba(18, 18, 66, 1) 71%);
    justify-content: center;
    align-items: center;
    border-radius: 20px;

}

#formContato {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 500px;
    height: 445px;
}

#nomeUser,
#emailUser,
#assuntoUser,
#msgUser {
    display: block;
    width: 500px;
    height: 40px;
    border-radius: 15px;
    font-size: 16px;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    background: #D9D9D9;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Open Sans', sans-serif;
    transition: border .1s linear, outline .1s ease-in-out, background .2s linear;
}

#nomeUser:focus,
#emailUser:focus,
#assuntoUser:focus,
#msgUser:focus {
    border: 1px solid #313131;
    outline: 2px solid #4787fd8e;
    background: #c0c0c0;
}

#nomeUser:hover,
#emailUser:hover,
#assuntoUser:hover,
#msgUser:hover {
    background: #c0c0c0;
}

#msgUser {
    display: flex;
    height: 200px;
    resize: unset;
}

.input-error {
    outline: 2px solid #e94a4f;
}

.error-text {
    opacity: 0;
    color: #0b0b35;
    transition: .7s;
}

.error-text.active {
    opacity: 1;
    color: #e94a4f;
}


.btn-contato {
    display: block;
    background-color: #266ef3;
    color: #fff;
    border: none;
    width: 150px;
    height: 40px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 15px -1px #2873FF;
    box-shadow: 0px 0px 15px -1px #2873FF;
    font-weight: bolder;
    transition: all .4s ease-in-out;
    font-size: larger;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-contato:hover {
    background-color: #588ff7;
    -webkit-box-shadow: 0px 0px 15px -1px #508cfc;
    box-shadow: 0px 0px 15px -1px #508cfc;
}

.footer {
    display: flex;
    justify-content: space-evenly;
    background-color: #000123;
    height: 260px;
    padding-bottom: 46px;
}

.card-footer-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.card-footer-logo img {
    max-height: 60px;
}

.texto-copyright {
    font-size: 12px;
    margin-top: 20px;
    color: #fff;
}

.card-footer-sobre {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.card-footer-sobre div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
    margin-right: 30px;
    height: 100px;
}

.titulos-footer {
    white-space: nowrap;
    color: #fff;
}

.footer-list {
    text-align: left;
}

.footer-list-item {
    list-style: none;
    margin-top: 13px;
    font-size: 13px;
}

.footer-list-item a,
.item-contato a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
}

.footer-links {
    position: relative;
    text-decoration: none;
    color: #FFF;
    transition: all .4s ease-in-out;
}

.footer-links::before  {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: #ffffff;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .4s ease-in-out;
}

.footer-links:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.card-footer-contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.icones-footer {
    margin-bottom: 10px;
}

.footer-list-contato {
    text-align: center;
    list-style: none;
    font-size: 13px;
}

.item-contato {
    margin-top: 10px;
    color: #fff;
}



@media (max-width: 999px) {
    [data-anime] {
        opacity: 0;
        transition: .6s ease;
        z-index: -1;
    }

    .nav {
        background: rgba(7, 9, 36, 0);
        justify-content: space-between;
        padding-left: 20px;
        padding-right: 20px;

    }

    .nav-ativo {
        background-color: #FFFFFF;
    }

    .nav-list {
        position: absolute;
        top: 11.9vh;
        right: 0;
        width: 100vw;
        height: 30vh;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        background: rgb(7, 9, 36);
        box-shadow: 0 25px 32px 0 rgba(31, 38, 135, 0.37);
        border-left: unset;
        border-right: unset;
        transform: translateX(120%);
        transition: transform .3s ease-in;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list-branco {
        background: #FFFFFF;
        box-shadow: 10px 28px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        transition: all .5s ease-in-out;
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px)
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-list-item {
        margin-right: 0;
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }
}

