@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Inconsolata:wght@200..900&display=swap');

body {
    font-family: 'Comfortaa', cursive;
    color: #333;
    font-size: 1vw;
    background-color: #1d2025;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

section.banner {
    background-image: url('../imagens/banner.webp');
    background-position: center;
    background-size: cover;
    height: 100vh;
    box-shadow: inset 0 0 0 2000px #016ae27e;
}

.menu-burger-wrapper {
    z-index: 998;
    opacity: .7;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    min-width: 2.778vw;
    max-width: 2.778vw;
    min-height: 2.778vw;
    max-height: 2.778vw;
    margin-left: auto;
    transition: border-color .25s;
    display: flex;
    position: relative;
    overflow: hidden;
}

.menu-burger-light {
    filter: invert() brightness(200%);
    min-width: 2.5rem;
    max-width: 2.5rem;
    min-height: 2.5rem;
    max-height: 2.5rem;
}

.menu-burger-wrapper:hover {
    border-color: #fff;
}

.w-nav-menu {
    float: right;
    position: relative;
}

.navbar-brand {
    z-index: 998;
    position: relative;
}

.nav-menu {
    display: none;
    opacity: 0;
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-menu {
    z-index: 997;
    background-color: #1d2025;
    text-align: left;
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    min-width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 10%;
    display: none;
    position: fixed;
    inset: 0%;
}

.nav-flex {
    z-index: 999;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid;
}

.nav-block {
    flex-flow: column;
    display: flex;
}

.nav-card-images {
    justify-content: center;
    align-items: center;
    max-width: 50vw;
    display: flex;
}

.nav-link-block {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}


.nav-link {
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 3.9vw;
    font-weight: 500;
    line-height: 6vw;
}

.nav-link:hover {
    color: #0060b6;
    font-weight: 300;
}

.shadow {
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: start stretch;
    box-shadow: 0 1.7vw 4.4vw 1.1vw #0003;
}

.nav-card-image {
    z-index: 1;
    border-radius: 20px;
    min-width: 19.4vw;
    max-width: 19.4vw;
    min-height: 25vw;
    max-height: 25vw;
    position: relative;
}

.nav-card-image.left {
    z-index: 0;
    position: relative;
    top: 2.5vw;
    left: 10vw;
    transform: rotate(-20deg);
}

.nav-card-image.right {
    z-index: 2;
    position: relative;
    top: 2.5vw;
    right: 10vw;
    transform: rotate(20deg);
}

.icon-scroll,
.icon-scroll:before {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.icon-scroll {
    width: 2vw;
    height: 3.4vw;
    bottom: 2vw;
    box-shadow: inset 0 0 0 2px #fff;
    border-radius: 2vw;
}

.icon-scroll:before {
    content: '';
    width: 3px;
    height: 15px;
    background: #fff;
    margin-left: -1px;
    top: 8px;
    border-radius: 35%;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
}

@keyframes scroll {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(46px);
    }
}

.banner h2 {
    font-size: 1.823vw;
    color: #ffffff;
    font-weight: 700;
}

section.conteudo {
    overflow: hidden;
}

section.conteudo.sobre h2 {
    color: #ffffff;
    font-size: 3vw;
    letter-spacing: 0.3vw;
}

section.conteudo.sobre h3 {
    color: #ffffff;
    font-size: 2vw;
}

@keyframes wobble-hor-top {

    0%,
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    15% {
        -webkit-transform: translateX(-15px) rotate(2deg);
        transform: translateX(-15px) rotate(2deg);
    }

    30% {
        -webkit-transform: translateX(5px) rotate(-2deg);
        transform: translateX(5px) rotate(-2deg);
    }

    45% {
        -webkit-transform: translateX(-5px) rotate(2.6deg);
        transform: translateX(-5px) rotate(2.6deg);
    }

    60% {
        -webkit-transform: translateX(6px) rotate(-1.4deg);
        transform: translateX(6px) rotate(-1.4deg);
    }

    75% {
        -webkit-transform: translateX(-3px) rotate(0.2deg);
        transform: translateX(-3px) rotate(0.2deg);
    }
}

img {
    object-fit: cover;
}

.icone-cracha {
    height: 70px;
    animation: wobble-hor-top 4s 15s infinite;
}

.radio-traducao {
    border-radius: 20px;
    box-shadow: 0 8px .625rem -.3125rem #0003, 0 .3125rem .9375rem -.5rem #0000003d;
}

.title-wrapper {
    grid-column-gap: 2.22vw;
    grid-row-gap: 2.22vw;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.title-wrapper.align-left {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
}

section .subtitulo {
    border-radius: 20px;
    background-color: #d0d0d0;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: .6vw .8vw;
    display: flex;
    position: relative;
}

section h3 {
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 3.33vw;
    font-weight: 400;
    line-height: 3.89vw;
    color: #ffffff;
}

section h6 {
    letter-spacing: .14vw;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .89vw;
    font-weight: 400;
    line-height: 1vw;
}

section.traducao p,
section.desenvolvimento p {
    color: #d0d0d0;
    letter-spacing: .07vw;
    margin-bottom: 0;
    font-weight: 300;
}

.botao-fale-com-a-gente {
    grid-column-gap: 1.11vw;
    grid-row-gap: 1.11vw;
    border: .1vw solid #2f2f2f;
    background-color: #2f2f2f;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 8.9vw;
    justify-content: center;
    align-items: center;
    min-width: 12.22vw;
    padding: .14vw 2.22vw .14vw .28vw;
    display: flex;
    position: relative;
    overflow: hidden;
}

.circulo-botao-fale-com-a-gente {
    background-color: #0ee6ff;
    cursor: pointer;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    min-width: 3.33vw;
    max-width: 3.33vw;
    min-height: 3.33vw;
    max-height: 3.33vw;
    display: flex;
    overflow: hidden;
}

.circulo-botao-fale-com-a-gente i {
    font-size: 2vw;
}

section.conteudo.especializada hr {
    opacity: 1;
}

section.conteudo.especializada hr:first-child {
    margin-left: 15vw;
}

section.conteudo.especializada hr:last-child {
    margin-right: 15vw;
}

section.conteudo.especializada h2 {
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
}

section.conteudo.especializada p {
    color: #d0d0d0;
    letter-spacing: .07vw;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 1vw;
}

.title-wrapper.text-end {
    justify-content: center;
    align-items: flex-end;
}

section.desenvolvimento h3 {
    font-size: 2.5vw;
}

img.homem-desenvolvendo {
    border-radius: 20px;
}

section.conteudo h4 {
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.22vw;
    font-weight: 500;
    line-height: 2.78vw;
    color: #ffffff;
    vertical-align: middle;
}

.bola-servico {
    vertical-align: middle;
}

section.conteudo.servicos h2 {
    font-size: 3vw;
    color: #ffffff;
    letter-spacing: .4vw;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
}

section.conteudo.servicos p {
    color: #ffffff;
}

footer {
    color: #ffffff;
}

footer .informacoes-rodape .caixa-rodape {
    background-color: #2f2f2f;
    border-radius: 20px;
    box-shadow: 0 1.7vw 4.4vw 1.1vw #0003;
}

.btn-tmeventos {
    border: 1px solid #0ee6ff;
    background-color: #0ee6ff;
    color: #ffffff;
    border-radius: 8.9vw;
}

.btn-tmeventos:hover,
.btn-tmeventos:focus {
    border: 1px solid #0ee6ff;
    background-color: #ffffff;
    color: #0ee6ff;
}

.grecaptcha-badge {
    visibility: collapse !important;
}

div.whats-rodape {
    position: relative;
}

a.btn-whatsapp-rodape {
    z-index: 9999;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    transition: 0.2s ease-out;
    font-size: 60px !important;
    height: 80px;
    width: 80px;
    border-radius: 100% !important;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.4;
}

a.btn-whatsapp-rodape:hover {
    background: #44b002;
    color: #ffffff;
    border: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

label.error {
    color: #ff0000;
    font-size: 1.5vw;
    font-weight: 300;
    margin-top: 0.5vw;
}

@media screen and (max-width: 991px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: calc(1.5rem);
        padding-left: calc(1.5rem);
    }

    body {
        font-size: 3.5vw;
    }

    .h-mobile-75 {
        height: 75% !important;
    }

    .menu-burger-wrapper {
        min-width: 2.5rem;
        max-width: 2.5rem;
        min-height: 2.5rem;
        max-height: 2.5rem;
    }

    section.banner {
        height: 75vh;
    }

    .banner h2 {
        font-size: 5vw;
    }

    .icon-scroll {
        width: 8.5vw;
        height: 14vw;
        bottom: 4vw;
        border-radius: 20px;
    }

    @keyframes scroll {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            transform: translateY(35px);
        }
    }

    section.conteudo.sobre h2 {
        font-size: 6.5vw;
    }

    section.conteudo.sobre h3 {
        font-size: 4vw;
        line-height: 1.5;
    }

    section .subtitulo {
        padding: 3vw 4vw;
    }

    section .subtitulo hr {
        width: 20%;
        left: 50%;
        transform: translate(-50%, 0);
        position: relative;
    }

    section h6 {
        font-size: 3.5vw;
        line-height: 1;
    }

    section h3 {
        font-size: 8vw;
        line-height: 1.3;
    }

    section.traducao p,
    section.desenvolvimento p {
        letter-spacing: .12vw;
        font-size: 4vw;
    }

    .botao-fale-com-a-gente {
        grid-column-gap: 3vw;
        grid-row-gap: 3vw;
        border: .1vw solid #2f2f2f;
        background-color: #2f2f2f;
        color: #ffffff;
        text-transform: uppercase;
        cursor: pointer;
        border-radius: 8.9vw;
        justify-content: center;
        align-items: center;
        min-width: 12.22vw;
        padding: .14vw 3.22vw .14vw 0;
        display: flex;
        position: relative;
        overflow: hidden;
        font-size: 5vw;
    }

    .circulo-botao-fale-com-a-gente {
        min-width: 10vw;
        max-width: 10vw;
        min-height: 10vw;
        max-height: 10vw;
    }

    .circulo-botao-fale-com-a-gente i {
        font-size: 6vw;
    }

    section.conteudo.especializada h2 {
        font-size: 8vw;
    }

    section.conteudo.especializada p {
        letter-spacing: .12vw;
        font-size: 4vw;
    }

    section.desenvolvimento h3 {
        font-size: 7vw;
    }

    section.conteudo.servicos h2 {
        font-size: 10vw;
    }

    section.conteudo h4 {
        font-size: 6vw;
        line-height: 1.1;
    }

    footer h5 {
        font-size: 0.8rem;
    }

    .nav-menu {
        padding-top: 20%;
    }

    .nav-card-images {
        max-width: 100vw;
    }

    .nav-flex {
        grid-template-columns: 1fr;
    }

    .nav-card-image {
        min-width: 32vw;
        max-width: 32vw;
        min-height: 45vw;
        max-height: 45vw;
    }

    .nav-link {
        line-height: 2.5;
    }
}