@font-face {
    font-family: 'openSansRegular';
    src: url(../fonts/opensans/OpenSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'openSansMedium';
    src: url(../fonts/opensans/OpenSans-Medium.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'openSansSemiBold';
    src: url(../fonts/opensans/OpenSans-SemiBold.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'openSansBold';
    src: url(../fonts/opensans/OpenSans-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'openSansExtraBold';
    src: url(../fonts/opensans/OpenSans-ExtraBold.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'RadjdhaniLight';
    src: url(../fonts/Rajdhani/Rajdhani-Light.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'RadjdhaniBold';
    src: url(../fonts/Rajdhani/Rajdhani-Bold.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'InterLight';
    src: url(../fonts/Inter/Inter-Light.ttf);
    font-display: swap;
}

@font-face {
    font-family: 'InterBold';
    src: url(../fonts/Inter/Inter-Bold.ttf);
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
}

body {
    color: #ffffff;
    font-family: openSansRegular;
    overflow-x: hidden;
}

body.overflow {
    overflow: hidden;
}

.box-container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 30px;
}

.container-wrapper {
    position: relative;
}

.header {
    height: 150px;
    display: flex;
    align-items: center;
}

.header .box-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .nav-list {
    position: relative;
}
.header .nav-list ul {
    display: flex;
    gap: 58px;
    margin: 0;
    padding-right: 58px;
}

.header .nav-list ul li.selected a {
    color: #00a0fdce;
}

.header .nav-list.open {
    transition: opacity 0.4s;
    opacity: 1;
}

.header .nav-list a {
    font-family: 'openSansSemiBold';
    color: #fff;
    font-size: 26px;
    line-height: 41px;
    transition: 0.3s;
}

.header .nav-list a:hover {
    color: #00a0fdce;
}

.header .nav-list .btn-demo {
    position: absolute;
    right: 54px;
    top: -39px;
    background: linear-gradient(
        94.14deg,
        #6557fd 26.33%,
        rgba(145, 15, 187, 0) 115.11%
    );
    border-radius: 6px;
    padding: 4px 8px;
}

.header .nav-list .btn-demo a {
    font-size: 20px;
    line-height: 1;
}

.header .nav-list .btn-demo:hover a {
    color: #d9d9d9;
}

.header .nav-list .solucoes-list {
    position: relative;
}

.header .nav-list .solucoes-list .overflow-solucoes {
    position: absolute;
    width: 300px;
    background-color: #001b2d;
    z-index: 999;
    display: none;
}

.header .nav-list .solucoes-list .overflow-solucoes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}
.solucoes-list .overflow-solucoes ul li a {
    font-size: 19px;
    line-height: 1;
    color: #fff !important;
}
.solucoes-list .overflow-solucoes ul li a:hover {
    color: #00a3ff !important;
}

.mobile-menu {
    cursor: pointer;
    display: none;
}

.mobile-menu div {
    width: 70px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 12px;
    margin: 7px;
    transition: 0.3s;
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-18px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-15px, -7px);
}

.breadcrumbs a {
    color: #fff;
}

.breadcrumbs a:hover {
    color: #00a3ff;
}

.breadcrumbs .marcado {
    font-family: 'openSansBold';
}

@media (max-width: 992px) {
    .header .box-container {
        justify-content: center;
    }
    .mobile-menu {
        position: absolute;
        left: 30px;
        display: block;
        z-index: 999;
    }
    .header .nav-list {
        position: absolute;
        top: 150px;
        left: -95vw;
        width: 95vw;
        height: 100vh;
        /* background-image: url('../image/bg-home.png'); */
        background-color: #061728;
        z-index: 5;
        pointer-events: none;
        transition: transform 0.3s ease-in;
    }
    .header .nav-list.open {
        transition: transform 0.3s ease-in;
        transform: translateX(94vw);
        pointer-events: initial;
    }

    .header .nav-list ul {
        flex-direction: column;
        gap: 20px;
        padding-top: 0px;
        padding-left: 40px;
    }

    .header .nav-list a {
        font-size: 22px;
        line-height: 30px;
    }

    .header .nav-list .btn-demo {
        position: initial;
        width: max-content;
    }
}

.footer {
    font-family: Calibri;
    position: relative;
}

.footer a {
    color: #fff;
}

.footer .box-logo {
    padding-top: 40px;
    padding-left: 120px;
}

.footer .box-infos div {
    font-weight: 300;
    font-size: 20px;
    line-height: 90.5%;
}

.footer .box-infos .title h4 {
    font-size: 24px;
    line-height: 90.5%;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer .box-infos .box .overflow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .box-infos .box-ajuda {
    padding-left: 50px;
}

.footer .box-infos .box-institucional {
    min-width: 288px;
}

.footer .box-redes-sociais {
    display: none;
}
.footer a {
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #9a9090;
    transition: color 0.3s ease;
}

.rodape {
    margin-top: 40px;
    background: #183062;
    padding-block: 10px;
}

.box-rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box-rodape .copyright {
    font-size: 21.7778px;
    line-height: 90.5%;
    font-family: 'RadjdhaniLight';
}
.box-rodape .copyright span {
    font-family: 'RadjdhaniBold';
}

.footer .box .title svg {
    display: none;
}

.footer .box .title.active + .overflow {
    max-height: 780px;
    opacity: 1;
    padding-top: 20px;
    padding-bottom: 18px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.footer .box .title.active svg {
    transform: rotate(180deg);
}

.whats-app {
    position: fixed;
    bottom: 50px;
    right: 100px;
    width: 50px;
    height: 50px;
    z-index: 999999;
}
.whats-app img {
    width: 100%;
}

.modal-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 40, 0.78);
    z-index: 20;
    display: none;
}

.modal-cookie.show-cookie {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-cookie .conteudo {
    background: #00a3ff;
    text-align: center;
    max-width: 730px;
    border-radius: 23px;
    padding: 20px 30px;
    color: #000;
}

.modal-cookie .conteudo .mensagem {
    font-family: 'InterLight';
    font-size: 22.218px;
    line-height: 27px;
    margin-bottom: 20px;
}

.modal-cookie .conteudo .botao {
    border: none;
    font-family: 'InterBold';
    background: #161616;
    border-radius: 22.3515px;
    color: #fff;
    font-size: 23.106px;
    line-height: 28px;
    padding: 8px 35px;
    transition: ease 0.3s;
}
.modal-cookie .conteudo .botao:hover {
    background: #161616cc;
    transition: ease 0.3s;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header .nav-list ul {
        padding-right: 0px;
        gap: 30px;
    }
    .header .nav-list .btn-demo {
        right: 0px;
    }
    .footer .box-logo {
        padding: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .footer .box-infos .box-ajuda {
        padding-left: 70px;
    }
}
@media (max-width: 992px) {
    .footer .box-container {
        padding: 0;
    }
    .footer .row {
        margin-inline: 0;
        padding-inline: 0;
    }
    .footer .row > * {
        padding-inline: 0;
    }
    .footer .box-logo {
        padding: 0;
        text-align: center;
        padding-bottom: 60px;
    }

    .footer .box {
        background-color: #183062;
        margin-bottom: 5px;
        padding: 12px 25px;
    }

    .footer .box .title {
        cursor: pointer;
        font-size: 0.93rem;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer .box .title svg {
        display: block;
        width: 25px;
        height: 14.5px;
        -webkit-transition: ease-in-out 0.3s;
        transition: ease-in-out 0.3s;
    }

    .footer .box .overflow {
        max-height: 0;
        overflow: hidden;
        -webkit-transition: ease-in-out 0.3s;
        transition: ease-in-out 0.3s;
        opacity: 0;
        margin: 0 -10px;
        padding: 0 10px;
        -webkit-transform: scale(1, 0.6);
        transform: scale(1, 0.6);
        -webkit-transform-origin: top;
        transform-origin: top;
    }

    .footer .box-infos .box-ajuda {
        padding-left: 25px;
    }

    .footer .box-infos .title h4 {
        margin-bottom: 0;
    }

    .footer .box-redes-sociais {
        display: block;
        padding-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .footer .box-redes-sociais img {
        max-width: 30px;
        width: 100%;
        max-height: 30px;
    }

    .footer .box-rodape {
        padding: 0 30px;
    }

    .whats-app {
        right: 20px;
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .header .nav-list a {
        font-size: 20px;
    }
    .header .box-container {
        justify-content: flex-end;
    }
    .header svg {
        max-width: 200px;
    }

    .mobile-menu div {
        width: 48px;
        height: 6px;
    }

    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-15px, 9px);
    }

    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-9px, -4px);
    }

    .footer .box-logo svg {
        max-width: 200px;
    }

    .footer .box-infos .title h4 {
        font-size: 22px;
    }

    .footer .box-rodape {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer .box-rodape .copyright {
        font-size: 17px;
    }
}
