/* ALERTA INFORMATIVO */
.dc-process-alert {
    width: 100%;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #02008815, #02008825);
    border: 1px solid #0900882a;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    margin-bottom: 28px;
}

.dc-process-alert-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #020072;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dc-process-alert-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.dc-process-alert-text strong {
    color: #0011a7;
    font-weight: 800;
}

/* AÇÕES */
.dc-process-actions {
    width: 100%;
    padding: 18px 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.dc-process-link {
    text-decoration: none;
    color: #07142e;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .30s ease;
}

.dc-process-link i {
    color: #000000;
}

.dc-process-link:hover {
    color: #2400c4;
    transform: translateY(-2px);
}

/* MOBILE */
@media(max-width:767px) {

    .dc-process-alert {
        padding: 18px;
        align-items: flex-start;
    }

    .dc-process-actions {
        flex-direction: column;
        gap: 18px;
    }

}