@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary-font: "Quattrocento Sans", sans-serif;
    --albert-font: "Albert Sans", sans-serif;
}

a,
button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p {
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
    color: #000;
}

#navbarOnakaPrivate ul.navbar-nav {
    justify-content: space-between;
    width: 100%;

    background: transparent;
}

.nav-options a {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    color: #787878;
}

.navbar .navbar-brand img {
    width: 78px;
}

.navbar ul.navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 13px;
    line-height: 100%;
    color: #787878;
}

.dropdown-toggle.nav-link::after {
    display: none;
}

.dropdown-toggle.nav-link {
    position: relative;
    padding-right: 20px;
}

.dropdown-toggle.nav-link::before {
    content: "";
    position: absolute;
    right: -8px;
    top: 59%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("../icons/chevron-down.png");
    background-size: contain;
    background-repeat: no-repeat;
}


@media all and (min-width: 992px) {
    .mega-menu {
        position: fixed;
        /* ocupa a tela inteira */
        top: 100%;
        /* logo abaixo da navbar */
        left: 0;
        right: 0;
        width: 100vw;
        /* largura total */
        height: calc(100vh - 70px);
        /* altura total - altura da navbar (ajuste 70px) */
        background: #fff;
        /* fundo branco para cobrir o conteúdo */
        padding: 2rem;
        /* espaçamento interno (opcional) */
        overflow-y: auto;
        /* scroll se conteúdo passar */
        z-index: 1000;
        /* fica por cima do resto */
    }

    .ktm-mega-menu {
        position: static;
        /* mantém o pai estático */
    }
}

.dropdown-menu.mega-menu {
    border-radius: 0;
    padding: 0 !important;
    background-color: #000B1D;
}

.mega-menu {
    overflow-y: scroll;
    /* ou auto */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE e Edge antigo */
}

.mega-menu::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari e Edge moderno */
}



.mega-menu .primary {
    background-color: #0D033E;
}

.mega-menu .secondary {
    background-color: #000B1D;
}

.dropdown-menu.mega-menu li,
.dropdown-menu.mega-menu li .container-fluid,
.dropdown-menu.mega-menu li .row {
    height: 100%;
}

.mega-menu .btn-close {
    position: absolute;
    top: 0;
    right: 40px;

    background: transparent;
    border: unset;
    color: #FFF;
}

.mega-menu .primary {
    background-color: #0D033E;
}

.mega-menu .secondary {
    background-color: #000B1D;
}

.mega-menu .secondary h4 {
    font-weight: 700;
    font-size: 16px;
    color: #FFF;
    margin-bottom: 1.5rem;
    font-family: Quattrocento Sans;
    line-height: 20px;
}

.mega-menu .secondary .separator {
    height: 1px;
    width: 50%;
    background-color: #FFF;
    margin: 1rem 0;
    opacity: 1;
}

.mega-menu .secondary .account p {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #FFF;
}

.mega-menu .secondary .account a {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #FFF;
}

.mega-menu .primary h3 {
    color: #FFF;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.mega-menu .primary p.description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
}

.mega-menu button.download,
.mega-menu .newsletter,
.mega-menu .secondary .account .input,
.mega-menu .secondary .input-search {
    border-radius: 0;
    border: 1px solid #A4A2A2;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu .newsletter input,
.mega-menu .secondary .account .input input,
.mega-menu .secondary .input-search input {
    width: 80%;
    padding-left: 1rem;
    background: transparent;
    border: unset;
    color: #A4A2A2;
}


.mega-menu .newsletter input:focus,
.mega-menu .newsletter input:focus-visible,
.mega-menu .secondary .account .input input:focus,
.mega-menu .secondary .account .input input:focus-visible,
.mega-menu .secondary .input-search input:focus,
.mega-menu .secondary .input-search input:focus-visible {
    border: unset;
    outline: unset;
}

.mega-menu .newsletter button,
.mega-menu .secondary .input-search button {
    width: 20%;
    background: transparent;
    border: unset;
}


.mega-menu button.download {
    width: 100%;
    background: transparent;
    color: #A4A2A2;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mega-menu .secondary .row a {
    font-weight: 400;
    font-size: 13.5px;
    line-height: 18px;
    margin-bottom: 2.1rem;
}

.mega-menu .secondary a:hover {
    color: #FFF;
}

.mega-menu .secondary .account .input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.mega-menu .secondary .account .input input {
    width: 90%;
    height: 100%;

    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
}

.mega-menu .secondary .input-search button {
    width: 10%;   
}

::-webkit-scrollbar {
    width: 3px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0D033E;
}

::-webkit-scrollbar-thumb {
    background: #000B1D;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #001639;
}

.swiper-nav-insights .swiper-slide {
    background-image: url("../images/cover-insights.png");
    height: 180px;

    display: flex;
    justify-content: end;
    flex-direction: column;

    padding: 1rem;
}

.swiper-nav-insights .swiper-slide p {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFF;
}

