/* ===== ALERTS MODERNOS ===== */

/* ALERT ERROR CARD */
.alert-error-card {
    background: white;
    border-left: 5px solid #e74c3c;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.3s ease-out;
}

.alert-error-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ffe5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-error-icon i {
    color: #e74c3c;
    font-size: 20px;
}

.alert-error-body {
    flex: 1;
}

.alert-error-body h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.alert-error-body p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.alert-error-dismiss {
    color: #e74c3c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s;
    cursor: pointer;
}

.alert-error-dismiss:hover {
    color: #c0392b;
}

/* ALERT SUCCESS */
.alert-success-card {
    background: white;
    border-left: 5px solid #27ae60;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.3s ease-out;
}

.alert-success-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #d5f4e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-success-icon i {
    color: #27ae60;
    font-size: 20px;
}

.alert-success-body h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.alert-success-body p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ALERT WARNING */
.alert-warning-card {
    background: white;
    border-left: 5px solid #f39c12;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.3s ease-out;
}

.alert-warning-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fef5e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-warning-icon i {
    color: #f39c12;
    font-size: 20px;
}

.alert-warning-body h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.alert-warning-body p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ALERT INFO */
.alert-info-card {
    background: white;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    animation: slideInDown 0.3s ease-out;
}

.alert-info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #ebf5fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-info-icon i {
    color: #3498db;
    font-size: 20px;
}

.alert-info-body h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.alert-info-body p {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* ANIMAÇÕES */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}