/* ============================================
   DJP Mega Menu — Estilos v1.2
   Paleta: #05110E, #091D18, #0D2621, #A3E635, #E8F5E9, #83A095
   ============================================ */

/* ── Reset e Base ── */
.djp-mega-header,
.djp-mega-header *,
.djp-mega-header *::before,
.djp-mega-header *::after,
.djp-pre-header,
.djp-pre-header *,
.djp-pre-header *::before,
.djp-pre-header *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ══════════════════════════════════════════
   PRÉ-HEADER (barra superior com infos)
   Dentro do header fixo — colapsa ao rolar
   ══════════════════════════════════════════ */
.djp-pre-header {
    width: 100%;
    background: #091D18;
    border-bottom: 1px solid rgba(163, 230, 53, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
}

.djp-pre-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    height: 45px;
    flex-wrap: wrap;
}

.djp-pre-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px !important;
    color: #83A095;
    font-weight: 300 !important;
    white-space: nowrap;
}

.djp-pre-item svg {
    color: #A3E635;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Email — forçar mesmo tamanho dos outros (vencer Elementor) */
#djp-pre-header .djp-pre-header-inner .djp-pre-item a,
.djp-pre-header .djp-pre-item a {
    color: #83A095 !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 300 !important;
    line-height: normal !important;
    letter-spacing: normal !important;
    transition: color 0.2s ease !important;
}

#djp-pre-header .djp-pre-header-inner .djp-pre-item a:hover,
.djp-pre-header .djp-pre-item a:hover {
    color: #A3E635 !important;
}

/* ══════════════════════════════════════════
   HEADER PRINCIPAL (fixo)
   ══════════════════════════════════════════ */
.djp-mega-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
    background-color: transparent;
    will-change: background-color, box-shadow;
}

/* ── Estado Scrolled (Sticky Sólido) ── */
.djp-mega-header.djp-scrolled {
    background-color: rgba(13, 38, 33, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ── Container Interno ── */
.djp-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 8px;
}

/* ── Brand (Logo + Texto) ── */
.djp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.djp-brand:hover {
    opacity: 0.85;
}

.djp-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.djp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.djp-site-name {
    font-size: 15px;
    font-weight: 700;
    color: #E8F5E9;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.djp-slogan {
    font-size: 11px;
    color: #83A095;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ── Navegação Desktop ── */
.djp-nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}

.djp-menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

/* Item de Menu */
.djp-menu-item {
    position: relative;
    list-style: none;
}

.djp-menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: #E8F5E9;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0.2px;
    border-radius: 8px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.djp-menu-link:hover,
.djp-menu-link:focus {
    color: #A3E635;
}

/* Item ativo */
.djp-current > .djp-menu-link {
    color: #A3E635;
}

/* Seta dropdown */
.djp-arrow {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.djp-has-dropdown:hover .djp-arrow,
.djp-has-dropdown.djp-dropdown-open .djp-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Dropdown Desktop ── */
.djp-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: #091D1870;
    border: 1px solid rgba(163, 230, 53, 0.12);
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(163, 230, 53, 0.05);
    z-index: 100000;
}

/* Pseudo-element para zona de hover segura */
.djp-has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.djp-has-dropdown:hover > .djp-dropdown,
.djp-has-dropdown.djp-dropdown-open > .djp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Links do dropdown */
.djp-dropdown .djp-menu-item {
    list-style: none;
}

.djp-dropdown-link {
    display: block;
    padding: 10px 14px;
    color: #E8F5E9;
    text-decoration: none;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.djp-dropdown-link:hover {
    background-color: #091D1880;
    color: #A3E635;
    padding-left: 18px;
}

/* Sub-dropdown (nível 2+) */
.djp-dropdown-sub {
    position: absolute;
    top: 0;
    left: calc(100% + 4px);
    min-width: 200px;
    background: #0D2621;
    border: 1px solid rgba(163, 230, 53, 0.12);
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 100001;
    transform: translateX(8px);
}

.djp-menu-item:hover > .djp-dropdown-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ── Actions (Redes Sociais + Perfil + Hambúrguer) ── */
.djp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Ícones Redes Sociais — compactos */
.djp-social-icons {
    display: flex;
    align-items: center;
    gap: 2px;
}

.djp-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #E8F5E9;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.djp-social-link:hover {
    color: #A3E635;
    background-color: rgba(163, 230, 53, 0.1);
    transform: scale(1.1);
}

/* ── Barra de Pesquisa Minimalista ── */
.djp-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.djp-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2A3B3020;
    border: none;
    color: #E8F5E9;
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.djp-search-toggle:hover {
    color: #A3E635;
    background: rgba(163, 230, 53, 0.1);
}

.djp-search-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    opacity: 0;
}

.djp-search-wrapper.djp-search-open .djp-search-form {
    width: 220px;
    opacity: 1;
}

.djp-search-wrapper.djp-search-open .djp-search-toggle {
    color: #A3E635;
}

.djp-search-input {
    width: 100%;
    padding: 8px 14px;
    border: 1px solid rgba(163, 230, 53, 0.2);
    border-radius: 20px;
    background: rgba(9, 29, 24, 0.9);
    color: #E8F5E9;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.djp-search-input::placeholder {
    color: #83A095;
    font-size: 13px;
}

.djp-search-input:focus {
    border-color: rgba(163, 230, 53, 0.4);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.08);
}

/* Separador visual entre social e perfil */
.djp-profile-btn {
    position: relative;
    display: flex;
    align-items: center;
}

/* Ajustar o botão de perfil do perfil-au */
.djp-profile-btn #perfil-login-widget {
    display: flex;
    align-items: center;
}

.djp-profile-btn #login-btn {
    background: rgba(163, 230, 53, 0.15);
    border: 1px solid rgba(163, 230, 53, 0.3);
    color: #A3E635;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.djp-profile-btn #login-btn:hover {
    background: rgba(163, 230, 53, 0.25);
    border-color: #A3E635;
    transform: translateY(-1px);
}

/* Quando está logado — avatar circular */
.djp-profile-btn #login-btn.perfil-btn-account {
    padding: 4px;
    background: transparent;
    border: 2px solid rgba(163, 230, 53, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.djp-profile-btn .header-user-avatar,
.djp-profile-btn .header-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.djp-profile-btn .header-avatar-letter {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A3E635, #65a30d);
    color: #05110E;
    font-weight: 700;
    font-size: 16px;
    border-radius: 50%;
}

/* Dropdown do perfil */
.djp-profile-btn .user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #0D2621;
    border: 1px solid rgba(163, 230, 53, 0.12);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 100002;
}

.djp-profile-btn .user-menu-dropdown .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #E8F5E9;
    text-decoration: none;
    font-size: 13.5px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.djp-profile-btn .user-menu-dropdown .menu-item:hover {
    background: rgba(163, 230, 53, 0.1);
    color: #A3E635;
}

.djp-profile-btn .user-menu-dropdown .menu-divider {
    height: 1px;
    background: rgba(131, 160, 149, 0.15);
    margin: 4px 8px;
}

.djp-profile-btn .user-menu-dropdown .logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* ── Hambúrguer ── */
.djp-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.djp-hamburger:hover {
    background: rgba(163, 230, 53, 0.08);
}

.djp-hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #E8F5E9;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s ease;
}

/* Hambúrguer animado quando aberto */
.djp-hamburger.djp-active .djp-hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.djp-hamburger.djp-active .djp-hamburger-line:nth-child(2) {
    opacity: 0;
}
.djp-hamburger.djp-active .djp-hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Spacer — altura controlada pelo JS ── */
.djp-header-spacer {
    display: block;
}

/* ── Mobile Overlay ── */
.djp-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 17, 14, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.djp-mobile-overlay.djp-active {
    display: block;
    opacity: 1;
}

/* ── Painel Mobile ── */
.djp-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0D2621;
    z-index: 100000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
}

.djp-mobile-panel.djp-active {
    transform: translateX(0);
}

/* Header Mobile */
.djp-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(131, 160, 149, 0.12);
    flex-shrink: 0;
}

.djp-mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.djp-mobile-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
}

.djp-mobile-name {
    font-size: 14px;
    font-weight: 600;
    color: #E8F5E9;
}

.djp-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #83A095;
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.djp-mobile-close:hover {
    color: #E8F5E9;
    background: rgba(163, 230, 53, 0.08);
}

/* Nav Mobile */
.djp-mobile-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
}

.djp-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.djp-mobile-item {
    list-style: none;
    border-bottom: 1px solid rgba(131, 160, 149, 0.07);
}

.djp-mobile-item-row {
    display: flex;
    align-items: center;
}

.djp-mobile-link {
    display: block;
    flex: 1;
    padding: 14px 24px;
    color: #E8F5E9 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.djp-mobile-link:hover,
.djp-mobile-link:active {
    color: #A3E635;
    background: rgba(163, 230, 53, 0.05);
}

.djp-mobile-current > .djp-mobile-link,
.djp-mobile-current > .djp-mobile-item-row > .djp-mobile-link {
    color: #A3E635;
}

/* Toggle submenu mobile */
.djp-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent !important;
    border: 1px solid rgba(131, 160, 149, 0.3);
    border-radius: 8px;
    color: #83A095;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.3s ease, border-color 0.2s ease;
}

.djp-mobile-toggle:hover {
    color: #A3E635;
    border-color: rgba(163, 230, 53, 0.3);
}

.djp-mobile-toggle.djp-toggled {
    color: #A3E635;
    background: rgba(163, 230, 53, 0.1) !important;
    border-color: rgba(163, 230, 53, 0.3);
}

.djp-mobile-toggle.djp-toggled svg {
    transform: rotate(180deg);
}

/* Submenu mobile (accordion) */
.djp-mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(5, 17, 14, 0.3);
}

.djp-mobile-submenu.djp-submenu-open {
    max-height: 500px;
}

.djp-mobile-submenu .djp-mobile-link {
    padding-left: 40px!important;
    font-size: 14px!important;
    font-weight: 400!important;
    color: #83A095!important;
}

.djp-mobile-submenu .djp-mobile-link:hover {
    color: #A3E635!important;
}

/* Submenu nível 2 */
.djp-mobile-submenu .djp-mobile-submenu .djp-mobile-link {
    padding-left: 56px;
    font-size: 13px;
}

/* Social Mobile */
.djp-mobile-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 20px;
    border-top: 1px solid rgba(131, 160, 149, 0.12);
    flex-shrink: 0;
}

.djp-mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #83A095;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
    background: rgba(131, 160, 149, 0.08);
}

.djp-mobile-social a:hover {
    color: #A3E635;
    background: rgba(163, 230, 53, 0.12);
}

/* Perfil Mobile */
.djp-mobile-profile {
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(131, 160, 149, 0.12);
    flex-shrink: 0;
}

.djp-mobile-profile #perfil-login-widget {
    width: 100%;
}

.djp-mobile-profile #login-btn {
    width: 100%;
    justify-content: center;
    background: rgba(163, 230, 53, 0.15);
    border: 1px solid rgba(163, 230, 53, 0.3);
    color: #A3E635;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.djp-mobile-profile #login-btn:hover {
    background: rgba(163, 230, 53, 0.25);
}

.djp-mobile-profile #login-btn.perfil-btn-account {
    padding: 12px 20px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    overflow: visible;
}

.djp-mobile-profile .header-user-avatar {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.djp-mobile-profile .header-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.djp-mobile-profile .header-avatar-letter {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #A3E635, #65a30d);
    color: #05110E;
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
}

/* ══════════════════════════════════════════
   RESPONSIVO — Mobile (≤991px)
   Hambúrguer esquerda | Logo centro | Pesquisa+Perfil direita
   Sem pré-header, sidebar abre da esquerda
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
    /* Esconder pré-header no mobile */
    .djp-pre-header {
        display: none !important;
    }

    /* Esconder navegação desktop e redes sociais */
    .djp-nav-desktop {
        display: none;
    }

    .djp-social-icons {
        display: none;
    }

    /* Esconder pesquisa do header no mobile (vai na sidebar) */
    .djp-search-wrapper {
        display: none !important;
    }

    /* Header inner — layout: hambúrguer(esq) | logo(centro) | perfil(dir) */
    .djp-header-inner {
        height: 60px;
        padding: 0 12px;
        position: relative;
        justify-content: flex-end;
    }

    /* Hambúrguer — extremo canto esquerdo, SEM FUNDO */
    .djp-hamburger {
        display: flex;
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: transparent !important;
        border: none;
        box-shadow: none;
    }

    /* Logo centralizada absoluta, sem texto */
    .djp-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        order: 0;
        flex: 0;
        margin: 0;
        gap: 0;
    }

    .djp-brand-text {
        display: none;
    }

    .djp-logo {
        width: 50px;
        height: 50px;
    }

    /* Actions à DIREITA: só perfil */
    .djp-header-actions {
        gap: 6px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .djp-profile-btn {
        display: flex;
    }

    /* Pesquisa na Sidebar Mobile */
    .djp-mobile-search {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(163, 230, 53, 0.1);
    }

    .djp-mobile-search-form {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(163, 230, 53, 0.15);
        border-radius: 10px;
        padding: 10px 14px;
        gap: 10px;
    }

    .djp-mobile-search-icon {
        color: #83A095;
        flex-shrink: 0;
    }

    .djp-mobile-search-input {
        border: none;
        background: transparent;
        color: #E8F5E9;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
        width: 100%;
        outline: none;
    }

    .djp-mobile-search-input::placeholder {
        color: #83A095;
    }

    /* Sidebar Mobile — abre da ESQUERDA */
    .djp-mobile-panel {
        left: 0;
        right: auto;
        transform: translateX(-100%);
        box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
    }

    .djp-mobile-panel.djp-active {
        transform: translateX(0);
    }

    /* Perfil no mobile — compacto */
    .djp-profile-btn #login-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

    .djp-profile-btn #login-btn.perfil-btn-account {
        width: 34px;
        height: 34px;
        padding: 3px;
    }
}

/* Telas muito pequenas */
@media (max-width: 480px) {
    .djp-header-inner {
        padding: 0 8px;
    }

    .djp-logo {
        width: 56px;
        height: 56px;
    }

    .djp-mobile-panel {
        width: 280px;
    }
}


/* ── Prevenir scroll quando menu mobile aberto ── */
body.djp-menu-open {
    overflow: hidden;
    touch-action: none;
}

/* ══════════════════════════════════════════
   Animação de entrada suave
   ══════════════════════════════════════════ */
@keyframes djpFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.djp-mega-header {
    animation: djpFadeInDown 0.5s ease both;
}

/* ── Acessibilidade ── */
.djp-mega-header a:focus {
    outline: 2px solid rgba(163, 230, 53, 0.5);
    outline-offset: 2px;
    border-radius: 4px;
}
