* {
    font-family: 'Montserrat';
}

.header {
    padding: 1rem 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9;
}

.header .caixa {
    padding: 1rem;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 0 10px #5555555e;
}

.header .caixa .links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header .caixa .links nav a {
    text-decoration: none;
    color: #222;
    padding: 0 10px;
    font-weight: 600;
}

.header .caixa .links a.destaque {
    display: block;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #000097;
}

.infobanner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: initial;
    background-image: linear-gradient(180deg, black, transparent);
    color: #fff;
    padding: 4rem 0 0;
}

.infobanner video {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.infobanner h1 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
    font-size: 48px;
    line-height: 46px;
}

.infobanner .col-md-6>span {
    font-weight: 700;
    background-image: linear-gradient(90deg, #F88A1A, #FBE347);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: black;
}

a.botpadrao {
    display: block;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: #000097;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
    position: relative;
    overflow: hidden;
}

a.botpadrao:hover {
    transform: scale(1.05);
}

.wppvoa {
    display: flex;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    z-index: 999;
    bottom: 20px;
    left: 20px;
    animation: 1.5s ease 0s infinite normal none running pisca;
}

.wppvoa:hover {
    text-decoration: none;
    color: #fff;
}

.wppvoa:hover img {
    transform: rotate(360deg);
}

.wppvoa img {
    display: block;
    width: fit-content;
    transition: .4s;
}

@keyframes pisca{
    0% {
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        }
    70% {
        -webkit-transform:scale(1);
        -ms-transform:scale(1);
        transform:scale(1);
        box-shadow:0 0 0 25px #ffff0000;
        }
    100%{
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        box-shadow:0 0 0 0 #ffff0000;
    }
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .headermob {
        z-index: 600;
        padding: 12px 0;
        position: fixed;
        top: 0;
        background-color: #fff;
    }

    .headermob::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background-image: linear-gradient(90deg, #F88A1A, #FBE347);
    }

    .headermob a.logo {
        width: fit-content;
        margin: 0;
        display: block;
    }

    .headermob .submenumob a.logo {
        display: block;
        width: fit-content;
        margin: auto;
    }

    .headermob a.logo .dentro {
        margin: 0 auto 30px;
    }

    .headermob a.logo img {
        width: 180px;
    }

    .headermob .col-3 {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .headermob .collapse {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .iconmob {
        width: fit-content;
        margin: 0;
        background: var(--azul);
        padding: 1px 4px;
        border-radius: 5px;
        z-index: 99999999 !important;
        position: relative;
        /*top: 51px;
        right: 15px; */
    }

    .bar1,
    .bar2,
    .bar3 {
        width: 40px;
        height: 4px;
        background-color: #fff;
        border-radius: 10px;
        margin: 6px 0;
        transition: 0.4s;
    }

    .sidenav {
        display: none;
        height: 100%;
        width: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #F3F3F3;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        overflow-x: hidden;
        padding-top: 80px;
        transition: 0.5s;
        z-index: 500 !important;
    }

    .sidenav .closebtn {
        position: absolute;
        top: -70px;
        right: 60px;
        font-size: 46px;
        margin-left: 50px;
        color: black;
        text-decoration: none;
    }

    .headermob .sidenav ul.redes {
        list-style: none;
        padding: 0;
        justify-content: space-evenly;
    }


    .headermob .sidenav .links {
        padding: 10px;
    }

    .headermob .sidenav .links a {
        color: var(--textos);
        margin: 25px 0;
        display: block;
        font-size: 16px;
        text-align: center;
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }

    .infobanner h1 {
        margin-bottom: 1rem;
        font-weight: 700;
        font-size: 28px;
        line-height: 26px !important;
    }

    .infobanner {
        min-height: 90vh !important;
        /* background-image: url("../img/banner-mob.png"); */
        background-size: cover;
        background-repeat: no-repeat;
    }

    .numeros .caixa {
        margin: 0 auto 40px !important;
    }

    .equipamentosHome h2 {
        font-size: 28px !important;
    }

    .equipamentosHome .tab {
        overflow-x: auto;
        border-radius: 10px !important;
    }

    .equipamentosHome .tab button {
        padding: 6px 12px !important;
        min-width: 132px;
    }

    .equipamentosHome .tab button.active {
        padding: 6px 12px !important;
        border-radius: 9px !important;
    }

    .equipamentosHome .conteudo {
        padding: 0 !important;
    }

    .equipamentosHome .conteudo .row {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .sobreHome {
        padding: 2rem 1rem 14rem !important;
        background-image: url("../img/sobreHome.png");
        background-position: bottom left;
        background-repeat: no-repeat;
        background-size: contain !important;
    }

    .porque .grade .cada {
        padding: 12px !important;
        height: auto !important;
        min-height: 25px;
    }

    .porque .grade {
        margin-bottom: 20px;
    }

    #portfolio {
        height: 375vh !important;
    }

    .project-wrap {
        width: 80vw !important;
    }

    .chamadaFinal .caixa img.direita {
        display: none !important;
    }

    .chamadaFinal .caixa img.esquerda {
        display: none !important;
    }

    .chamadaFinal {
        padding: 0 1rem 4rem !important;
    }

    .chamadaFinal .caixa .texto h4 {
        font-size: 26px !important;
        margin-bottom: 10px !important;
    }

    .rodape .logo img {
        width: 100%;
        margin-bottom: 20px;
        max-width: 280px;
        display: block;
        margin: 0 auto 10px;
    }

    .rodape .row {
        gap: 2rem;
    }
}