/* Wrapper do sino */
.power-notify-wrapper {
    position: relative;
    display: inline-block;
    z-index: 99999; /* mantém o sino visível */
}

/* Dropdown das notificações */
.power-notify-dropdown {
    position: absolute;
    top: calc(100% + 12px); /* desce para fora do header */
    right: 0;

    width: 340px;
    max-height: 420px;
    overflow-y: auto;

    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.20);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.18s ease-in-out;

    z-index: 999999; /* dropdown por cima de tudo */
}

/* Exibir ao passar o mouse */
.power-notify-wrapper:hover .power-notify-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Estilo dos itens */
.power-notify-item {
    padding: 12px;
    border-radius: 10px;
    background: #f7f9fc;
    margin-bottom: 10px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    transition: background 0.2s;
}

.power-notify-item:hover {
    background: #eaf1ff;
}

/* Separador */
.power-notify-separator {
    height: 1px;
    background: #e6e6e6;
    margin: 8px 0;
}
header, 
.site-header, 
.elementor-section, 
.elementor-container {
    overflow: visible !important;
}

/* EVITA que o número fique fora do sino */
.power-notify-wrapper {
    position: relative;
}
.power-notify-badge {
    display: none !important;
}


