/* ===== ALERT MODAL - ESTILO FLUENT ===== */

.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: alertFadeIn 0.2s ease-in-out;
}

.alert-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 400px;
    max-width: 500px;
    width: 90%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: alertSlideUp 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.alert-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.alert-icon .bi-exclamation-triangle { color: #ff8c00; }
.alert-icon .bi-x-circle              { color: #d13438; }
.alert-icon .bi-check-circle          { color: #107c10; }
.alert-icon .bi-info-circle           { color: #7a1f33; }

.alert-content {
    text-align: center;
    width: 100%;
}

.alert-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #323130;
    margin: 0 0 8px 0;
}

.alert-message {
    font-size: 0.9375rem;
    color: #605e5c;
    margin: 0;
    line-height: 1.5;
}

.alert-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.btn-alert {
    padding: 10px 32px;
    border: 1px solid #7a1f33;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #7a1f33;
    color: white;
    transition: all 0.2s ease;
    min-width: 120px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.btn-alert:hover {
    background-color: #5c1726;
    border-color: #5c1726;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(122, 31, 51, 0.3);
}

.btn-alert:active {
    transform: translateY(0);
}

.btn-alert-cancel {
    background-color: transparent;
    color: #323130;
    border-color: #8a8886;
}

.btn-alert-cancel:hover {
    background-color: #f3f2f1;
    border-color: #323130;
    color: #323130;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes alertFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes alertSlideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .alert-container {
        min-width: unset;
        width: 90%;
        padding: 24px;
    }

    .alert-icon    { font-size: 2.5rem; }
    .alert-title   { font-size: 1.1rem; }
    .alert-message { font-size: 0.875rem; }
}
