/* 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;
    }

}






.dc-consulta-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    background: rgba(2, 6, 23, .72);
    backdrop-filter: blur(7px);
}

.dc-consulta-card-titulos {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 34px;
    padding: 0px;
    box-shadow: 0 25px 20px rgba(0,0,0,.25);
    animation: dcPopupIn .30s ease;
}

.dc-consulta-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 34px;
    padding: 45px;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    animation: dcPopupIn .30s ease;
}

@keyframes dcPopupIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dc-consulta-card::-webkit-scrollbar {
    width: 8px;
}

.dc-consulta-card::-webkit-scrollbar-thumb {
    background: rgba(46,88,255,.35);
    border-radius: 999px;
}

.dc-consulta-card::-webkit-scrollbar-track {
    background: transparent;
}

.dc-consulta-card-titulos::-webkit-scrollbar {
    width: 8px;
}

.dc-consulta-card-titulos::-webkit-scrollbar-thumb {
    background: rgba(46,88,255,.35);
    border-radius: 999px;
}

.dc-consulta-card-titulos::-webkit-scrollbar-track {
    background: transparent;
}

.dc-consulta-voltar {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid #dbe4f0;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s;
}

    .dc-consulta-voltar:hover {
        background: #eef4ff;
        border-color: var(--theme-color2, #2e58ff);
        color: var(--theme-color2, #2e58ff);
    }

.dc-consulta-header {
    text-align: center;
    margin-bottom: 35px;
}

.dc-consulta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(46,88,255,.10);
    color: var(--theme-color2, #2e58ff);
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 22px;
}

.dc-consulta-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #071c4d;
    margin-bottom: 16px;
}

.dc-consulta-header p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.dc-input-wrap {
    position: relative;
}

    .dc-input-wrap i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--theme-color2, #2e58ff);
        font-size: 15px;
        z-index: 2;
    }

.form-control-custom {
    min-height: 62px;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    padding-left: 52px;
    background: #fff;
    font-size: 15px;
    transition: .25s;
}

    .form-control-custom:focus {
        border-color: var(--theme-color2, #2e58ff);
        box-shadow: 0 0 0 5px rgba(46,88,255,.10);
    }

    .form-control-custom.is-invalid {
        border-color: #ef4444 !important;
        background: #fff7f7;
        box-shadow: 0 0 0 4px rgba(239, 68, 68, .10);
    }

    .form-control-custom.is-valid {
        border-color: #22c55e !important;
        background: #f8fff9;
        box-shadow: 0 0 0 4px rgba(34, 197, 94, .10);
    }

.dc-field-error {
    display: none;
    margin-top: 8px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
}

    .dc-field-error.show {
        display: block;
    }

.dc-contact-btn {
    width: 100%;
    min-height: 60px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--theme-color1, #04173f), var(--theme-color2, #2e58ff));
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    transition: .25s;
}

    .dc-contact-btn:hover {
        transform: translateY(-2px);
    }

.dc-process-alert {
    display: flex;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #dce9ff;
}

.dc-process-alert-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--theme-color1, #04173f), var(--theme-color2, #2e58ff));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-process-alert-text {
    color: #475569;
    line-height: 1.7;
}

.dc-process-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.dc-process-link {
    flex: 1;
    min-height: 54px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

    .dc-process-link:hover {
        background: var(--theme-color2, #2e58ff);
        color: #fff;
    }

@media (max-width: 768px) {
    .dc-consulta-card {
        padding: 30px 22px;
        border-radius: 24px;
    }
    .dc-consulta-card-titulos {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .dc-consulta-header h2 {
        font-size: 30px;
    }

    .dc-process-actions {
        flex-direction: column;
    }
}

