/* 🔔 Sininho Fixo - Slim-SP */
.push-bell-btn {
    position: fixed;
    top: 120px;
    right: 20px;
    background: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    font-family: inherit;
}

.push-bell-btn:hover {
    background: rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
}

.push-bell-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.push-bell-btn .bell-icon { 
    font-size: 18px; 
    transition: transform 0.2s ease;
}

.push-bell-btn:hover .bell-icon {
    transform: scale(1.1);
}

/* Estados */
.push-bell-btn.subscribed {
    border-color: #11998e;
    color: #11998e;
    box-shadow: 0 2px 10px rgba(17, 153, 142, 0.3);
}
.push-bell-btn.subscribed:hover {
    background: rgba(17, 153, 142, 0.15);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.5);
}
.push-bell-btn.error {
    border-color: #eb3349;
    color: #eb3349;
}
.push-bell-btn.denied {
    border-color: #888;
    color: #888;
    cursor: not-allowed;
}
.push-bell-btn.unsupported {
    border-color: #666;
    color: #666;
    cursor: not-allowed;
}

/* Toast */
#push-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
    font-family: inherit;
}
#push-toast.show {
    opacity: 1;
    transform: translateY(0);
}
#push-toast.success { 
    background: #11998e; 
    border-left: 4px solid #38ef7d;
}
#push-toast.error { 
    background: #eb3349; 
    border-left: 4px solid #f45c43;
}
#push-toast.info {
    background: #2196F3;
    border-left: 4px solid #64B5F6;
}

/* Animação de pulsação para chamar atenção */
@keyframes bellPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.push-bell-btn.pulse {
    animation: bellPulse 1.5s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 600px) {
    .push-bell-btn {
        top: 50px;
        right: 15px;
        padding: 6px 10px;
        font-size: 13px;
    }
    #push-toast {
        top: 70px;
        right: 15px;
        max-width: 250px;
        font-size: 13px;
    }
}