/* ============================================
   WEBPUSH MODAL STYLES
   ============================================ */

.webpush-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.webpush-modal.show {
    opacity: 1;
    visibility: visible;
}

.webpush-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.webpush-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.webpush-modal.show .webpush-modal-content {
    transform: scale(1);
}

.webpush-modal-header {
    text-align: center;
}

.webpush-modal-header h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.webpush-modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.webpush-benefits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.webpush-modal-footer {
    margin-top: 1.5rem;
}

.webpush-modal-footer .btn {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Toast de sucesso */
.webpush-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    z-index: 10000;
    transition: bottom 0.3s ease;
    display: flex;
    align-items: center;
}

.webpush-toast.show {
    bottom: 30px;
}

/* Responsivo */
@media (max-width: 576px) {
    .webpush-modal-content {
        padding: 1.5rem;
    }

    .webpush-modal-header h4 {
        font-size: 1.25rem;
    }

    .benefit-item {
        font-size: 0.85rem;
    }
}