/*==================================================
HEADER
==================================================*/

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:92px;

    background:rgba(5,5,5,.95);

    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:9999;

}

.header .container{

    max-width:1400px;

    height:100%;

    margin:auto;

    padding:0 40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:210px;

    display:block;

}

/*==================================================
MENU
==================================================*/

.menu{

    margin-left:auto;

    margin-right:28px;

}

.menu ul{

    display:flex;

    align-items:center;

    gap:38px;

    list-style:none;

    margin:0;

    padding:0;

}

.menu li{

    margin:0;

    padding:0;

}

.menu a{

    position:relative;

    color:#fff;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.5px;

    transition:.35s;

}

.menu a:hover,
.menu a.active{

    color:var(--gold);

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.menu a:hover::after,
.menu a.active::after{

    width:100%;

}

/*==================================================
INSIGHTS - DROPDOWN DESKTOP
==================================================*/

.menu-dropdown{
    position:relative;
}

/* GATILHO */

.dropdown-trigger{
    position:relative;

    display:flex;
    align-items:center;
    gap:7px;

    padding:0;

    border:0;
    background:none;

    color:#fff;

    font-family:inherit;
    font-size:14px;
    font-weight:600;

    text-transform:uppercase;
    letter-spacing:.5px;

    cursor:pointer;

    transition:.35s;
}

.dropdown-trigger::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.35s;
}

.dropdown-trigger:hover{
    color:var(--gold);
}

.menu-dropdown:hover .dropdown-trigger{
    color:var(--gold);
}

.menu-dropdown:hover .dropdown-trigger::after{
    width:100%;
}


/* SETA */

.dropdown-trigger i{
    font-size:10px;

    transition:
        transform .35s ease,
        color .35s ease;
}

.menu-dropdown:hover .dropdown-trigger i{
    transform:rotate(180deg);
}


/* PAINEL */

.insights-dropdown{
    position:absolute;

    top:calc(100% + 28px);
    left:50%;

    width:340px;

    padding:12px;

    background:rgba(8,8,8,.98);

    border:1px solid rgba(212,166,42,.22);
    border-radius:12px;

    box-shadow:
        0 24px 60px rgba(0,0,0,.60),
        inset 0 1px 0 rgba(255,255,255,.03);

    backdrop-filter:blur(16px);

    opacity:0;
    visibility:hidden;

    transform:
        translateX(-50%)
        translateY(12px);

    pointer-events:none;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

    z-index:10000;
}


/* PONTE INVISÍVEL ENTRE MENU E DROPDOWN */

.insights-dropdown::before{
    content:"";

    position:absolute;

    left:0;
    top:-30px;

    width:100%;
    height:30px;
}


/* ABERTURA */

.menu-dropdown:hover .insights-dropdown,
.menu-dropdown:focus-within .insights-dropdown{
    opacity:1;
    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0);

    pointer-events:auto;
}


/* ITENS */

.menu .insights-item{
    position:relative;

    display:flex;
    align-items:center;
    gap:15px;

    width:100%;

    padding:15px 14px;

    border-radius:8px;

    color:#fff;

    text-transform:none;
    letter-spacing:0;

    transition:.30s ease;
}


/* REMOVE A LINHA DO MENU PRINCIPAL */

.menu .insights-item::after{
    display:none;
}


/* ÍCONES */

.insights-item > i{
    width:22px;

    flex-shrink:0;

    color:var(--gold);

    font-size:17px;

    text-align:center;
}


/* TEXTO */

.insights-item span{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.insights-item strong{
    color:#fff;

    font-size:13px;
    font-weight:600;

    line-height:1.3;
}

.insights-item small{
    color:rgba(255,255,255,.50);

    font-size:11px;
    font-weight:400;

    line-height:1.4;
}


/* HOVER DOS LINKS ATIVOS */

.menu a.insights-item:hover{
    background:rgba(212,166,42,.08);
}

.menu a.insights-item:hover strong{
    color:var(--gold);
}


/* DIVISOR */

.insights-divider{
    height:1px;

    margin:8px 10px;

    background:rgba(255,255,255,.08);
}


/* CONTEÚDOS FUTUROS */

.insights-disabled{
    cursor:default;

    opacity:.42;
}

.insights-disabled:hover{
    background:transparent;
}


/* PEQUENO DETALHE DOURADO SUPERIOR */

.insights-dropdown::after{
    content:"";

    position:absolute;

    top:-1px;
    left:50%;

    width:54px;
    height:2px;

    transform:translateX(-50%);

    background:var(--gold);

    border-radius:0 0 2px 2px;
}

/*==================================================
BOTÃO
==================================================*/

.header .btn{

    padding:16px 36px;

    border-radius:10px;

    font-size:14px;

    white-space:nowrap;

}

/*==================================================
MENU TOGGLE
==================================================*/

.menu-toggle{

    display:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.35s;

}


.menu-toggle:hover{

    color:var(--gold);

}

/*==================================================
MENU MOBILE PREMIUM
==================================================*/

.mobile-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,.75);

    display:none;

    z-index:9998;

}


.mobile-overlay.active{

    display:block;

}


.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:80%;
    max-width:380px;
    height:100vh;

    padding:30px;

    background:#050505;

    transition:.50s ease;

    z-index:9999;

    overflow-y:auto;

    box-shadow:-10px 0 30px rgba(0,0,0,.50);

}


.mobile-menu.active{

    right:0;

}


/*==================================================
HEADER DO MENU
==================================================*/

.close-menu{

    cursor:pointer;

    color:#fff;

    font-size:30px;

    transition:.35s;

}


.close-menu:hover{

    color:var(--gold);

}


.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}


.mobile-header img{

    width:180px;

}


/*==================================================
LINKS DO MENU
==================================================*/

.mobile-menu ul{

    list-style:none;

    margin:0;

    padding:0;

}


.mobile-menu li{

    padding:18px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

}


.mobile-menu a{

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}


.mobile-menu a:hover{

    color:var(--gold);

}


/*==================================================
BOTÃO WHATSAPP
==================================================*/

.mobile-btn{

    display:block;

    margin-top:35px;

    padding:18px;

    text-align:center;

    text-decoration:none;

    background:var(--gold);

    color:#000;

    font-weight:700;

    font-size:17px;

    line-height:1.5;

    border-radius:10px;

    transition:.35s;

}


.mobile-btn:hover{

    opacity:.90;

}


/*==================================================
TELEFONE
==================================================*/

.mobile-phone{

    margin-top:25px;

    text-align:center;

    color:#fff;

    font-size:16px;

    font-weight:600;

}

/*==================================================
INSIGHTS MOBILE
==================================================*/

.mobile-insights-trigger{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0;

    border:0;
    background:none;

    color:#fff;

    font-family:inherit;
    font-size:18px;
    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.mobile-insights-trigger:hover{

    color:var(--gold);

}

.mobile-insights-trigger i{

    font-size:12px;

    transition:transform .35s ease;

}

.mobile-insights.open .mobile-insights-trigger{

    color:var(--gold);

}

.mobile-insights.open .mobile-insights-trigger i{

    transform:rotate(180deg);

}


/* CONTEÚDO */

.mobile-insights-content{

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:
        max-height .45s ease,
        opacity .30s ease,
        margin .35s ease;

}

.mobile-insights.open .mobile-insights-content{
    max-height:220px;
    opacity:1;
    margin-top:18px;
    margin-bottom:10px;
}


/* LINKS */

.mobile-insights-content a{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 12px;

    border-radius:8px;

    color:#fff;

    text-decoration:none;

    transition:.30s;

}

.mobile-insights-content a:hover{

    background:rgba(216,165,42,.08);

}

.mobile-insights-content > a i{

    width:22px;

    color:var(--gold);

    font-size:18px;

    flex-shrink:0;

}

.mobile-insights-content span{

    display:flex;

    flex-direction:column;

    gap:3px;

}

.mobile-insights-content strong{

    color:#fff;

    font-size:14px;

    font-weight:600;

}

.mobile-insights-content small{

    color:rgba(255,255,255,.50);

    font-size:11px;

    font-weight:400;

}


/* Remove a borda dos itens internos */

.mobile-insights-content a + a{

    border-top:1px solid rgba(255,255,255,.06);

}

/*==================================================
RESPONSIVO
==================================================*/

@media(max-width:992px){

    .menu{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .header .btn{

        display:none;

    }

}