.protocolo-modal-modern {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .28);
}

.protocolo-modal-header {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 28px 30px;
    background: radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 32%), linear-gradient(135deg, var(--theme-color1, #04173f), var(--theme-color2, #2e58ff));
    color: #fff;
}

.protocolo-modal-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 20px;
    background: rgba(255,255,255,.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.protocolo-modal-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.modal-title {
    display: inline-flex;
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.protocolo-modal-header h5 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.protocolo-modal-body {
    padding: 30px;
    background: #fff;
}

.protocolo-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.protocolo-subtitle {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.protocolo-warning-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 24px;
}

.protocolo-warning-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: rgba(249, 115, 22, .12);
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.protocolo-warning-box strong {
    color: #9a3412;
    font-size: 15px;
}

.protocolo-warning-box p {
    margin: 4px 0 0;
    color: #7c2d12;
    font-size: 14px;
    line-height: 1.6;
}

.protocolo-label {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.protocolo-input-wrap {
    position: relative;
}

    .protocolo-input-wrap i {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        z-index: 2;
    }

.protocolo-input {
    height: 58px;
    border-radius: 18px;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    padding-left: 48px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    color: #0f172a;
    transition: .25s ease;
}

    .protocolo-input:focus {
        border-color: var(--theme-color2, #2e58ff);
        background: #fff;
        box-shadow: 0 0 0 5px rgba(46, 88, 255, .12);
    }

.protocolo-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
    margin-top: 16px;
}

.protocolo-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.protocolo-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.protocolo-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 30px 30px;
    background: #fff;
}

.protocolo-btn-primary,
.protocolo-btn-secondary {
    width: 100%;
    min-height: 56px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .25s ease;
}

.protocolo-btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--theme-color1, #04173f), var(--theme-color2, #2e58ff));
    box-shadow: 0 14px 30px rgba(46, 88, 255, .24);
}

    .protocolo-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(46, 88, 255, .32);
    }

.protocolo-btn-secondary {
    border: 1px solid #dbe3ef;
    color: #334155;
    background: #f8fafc;
}

    .protocolo-btn-secondary:hover {
        background: #eef2f7;
        color: #0f172a;
    }

@media (max-width: 576px) {
    .protocolo-modal-header {
        padding: 24px;
    }

    .protocolo-modal-body {
        padding: 24px;
    }

    .protocolo-modal-footer {
        padding: 0 24px 24px;
    }

    .protocolo-modal-header h5 {
        font-size: 21px;
    }
}
