/* ===== MENU USUÁRIO (ACESSO) VISÍVEL E PROFISSIONAL ===== */
.pkp_navigation_user_wrapper {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 9999;
    font-weight: bold;
}

/* Fundo geral da página */
body {
    background-color: #ffffff !important;
}

/* Container principal (às vezes o tema usa esse bloco) */
.pkp_structure_page {
    background-color: #ffffff !important;
}

/* Área de conteúdo */
.pkp_structure_content {
    background-color: #ffffff !important;
}

/* HEADER SOBREPOSTO AO BANNER */
.pkp_structure_head {
    width: 90%;
    z-index: 9999;
}

/* Botão "Acesso" */
.pkp_navigation_user_wrapper a {
    background: rgba(255, 255, 255, 0.95);
    color: #1b1b1b !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Hover */
.pkp_navigation_user_wrapper a:hover {
    background: #c62828;
    color: #ffffff !important;
}

/* Força branco em tudo */
html, body, .pkp_structure_page, .pkp_structure_content {
    background: #ffffff !important;
}