:root {
    --primary: #5367ff;
    --primary-dark: #3f51d9;
    --primary-light: #eef0ff;

    --purple: #7957ef;
    --purple-light: #f1edff;

    --success: #16a477;
    --success-light: #e9f9f3;

    --dark: #111625;
    --dark-soft: #20273a;

    --text: #242a3b;
    --text-soft: #6e768a;
    --text-light: #969daf;

    --background: #f4f6fa;
    --white: #ffffff;

    --border: #e3e6ee;
    --border-dark: #cfd4df;

    --shadow:
        0 30px 80px rgba(21, 29, 51, .12);

    --shadow-small:
        0 10px 30px rgba(21, 29, 51, .07);

    --radius: 28px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;

    font-family: "Montserrat", sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(83, 103, 255, .12),
            transparent 25%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(121, 87, 239, .10),
            transparent 27%
        ),
        var(--background);
}

button,
input {
    font-family: inherit;
}

button {
    border: 0;
}

.material-symbols-outlined {
    font-size: 22px;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.verificacion {
    position: relative;

    display: flex;
    justify-content: center;

    min-height: 100vh;

    padding: 40px 25px;

    overflow: hidden;
}


/* =========================================================
   DECORACIONES
   ========================================================= */

.decoracion {
    position: fixed;

    pointer-events: none;
}

.decoracion-1 {
    width: 520px;
    height: 520px;

    top: -330px;
    right: -180px;

    border: 1px solid rgba(83, 103, 255, .12);

    border-radius: 50%;
}

.decoracion-2 {
    width: 350px;
    height: 350px;

    bottom: -220px;
    left: -170px;

    border: 1px solid rgba(121, 87, 239, .10);

    border-radius: 50%;
}

.decoracion-3 {
    width: 100px;
    height: 100px;

    top: 13%;
    left: 5%;

    border: 1px solid rgba(83, 103, 255, .08);

    transform: rotate(45deg);
}


/* =========================================================
   PANEL
   ========================================================= */

.panel {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: auto;

    padding: 24px;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 34px;

    background: rgba(255,255,255,.80);

    box-shadow: var(--shadow);

    backdrop-filter: blur(20px);

    animation:
        panelEntrada
        .65s
        cubic-bezier(.22,1,.36,1);
}

@keyframes panelEntrada {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   BARRA SUPERIOR
   ========================================================= */

.barra-superior {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding:
        5px
        12px
        25px;
}


/* Marca */

.marca {
    display: flex;
    align-items: center;

    gap: 12px;
}

.marca-icono {
    display: grid;
    place-items: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    box-shadow:
        0 8px 20px rgba(83,103,255,.22);
}

.marca-icono .material-symbols-outlined {
    font-size: 22px;
}

.marca-texto {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.marca-texto strong {
    color: var(--dark);

    font-size: .78rem;
}

.marca-texto span {
    color: var(--text-light);

    font-size: .58rem;
}


/* Seguridad */

.seguridad {
    display: flex;
    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    border: 1px solid var(--border);

    border-radius: 100px;

    color: #737b8d;

    font-size: .58rem;
    font-weight: 600;

    background: rgba(255,255,255,.7);
}

.seguridad .material-symbols-outlined {
    font-size: 15px;
}

.punto-seguridad {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--success);

    box-shadow:
        0 0 0 4px rgba(22,164,119,.10);
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.contenido {
    display: grid;

    grid-template-columns: 280px minmax(0, 1fr);

    min-height: 610px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background: white;

    overflow: hidden;
}


/* =========================================================
   NAVEGACIÓN
   ========================================================= */

.navegacion {
    display: flex;

    flex-direction: column;

    padding: 35px 28px;

    color: white;

    background:
        linear-gradient(
            160deg,
            #141a2b,
            #202941
        );
}

.navegacion-cabecera {
    margin-bottom: 43px;
}

.mini-etiqueta {
    display: inline-block;

    margin-bottom: 13px;

    color: #8995ff;

    font-size: .55rem;
    font-weight: 700;

    letter-spacing: .13em;
}

.navegacion-cabecera h2 {
    margin-bottom: 12px;

    font-size: 1.35rem;

    line-height: 1.25;

    letter-spacing: -.04em;
}

.navegacion-cabecera p {
    color: rgba(255,255,255,.47);

    font-size: .64rem;

    line-height: 1.7;
}


/* =========================================================
   PASOS
   ========================================================= */

.lista-pasos {
    display: flex;

    flex-direction: column;
}

.paso {
    display: flex;

    align-items: center;

    gap: 13px;

    color: rgba(255,255,255,.38);

    transition:
        color .3s ease,
        transform .3s ease;
}

.numero_paso {
    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 37px;
    height: 37px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 50%;

    font-size: .68rem;
    font-weight: 700;

    background: rgba(255,255,255,.04);

    transition: all .3s ease;
}

.paso-info {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.paso-info strong {
    font-size: .68rem;
}

.paso-info span {
    color: rgba(255,255,255,.30);

    font-size: .53rem;
}


/* Activo */

.paso.activo {
    color: white;

    transform: translateX(4px);
}

.paso.activo .numero_paso {
    border-color: var(--primary);

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    box-shadow:
        0 8px 20px rgba(83,103,255,.25);
}

.paso.activo .paso-info span {
    color: #9ba5ff;
}


/* Completado */

.paso.completado {
    color: rgba(255,255,255,.85);
}

.paso.completado .numero_paso {
    border-color: var(--success);

    color: white;

    background: var(--success);
}

.paso.completado .paso-info span {
    color: rgba(255,255,255,.40);
}


/* Conectores */

.conector-paso {
    width: 1px;
    height: 32px;

    margin-left: 18px;

    background: rgba(255,255,255,.09);
}


/* =========================================================
   AYUDA
   ========================================================= */

.ayuda {
    display: flex;

    gap: 10px;

    margin-top: auto;

    padding: 13px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 13px;

    background: rgba(255,255,255,.035);
}

.ayuda-icono {
    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    border-radius: 9px;

    color: #8d99ff;

    background: rgba(83,103,255,.12);
}

.ayuda-icono .material-symbols-outlined {
    font-size: 17px;
}

.ayuda strong {
    display: block;

    margin-bottom: 4px;

    font-size: .56rem;
}

.ayuda span {
    display: block;

    color: rgba(255,255,255,.35);

    font-size: .49rem;

    line-height: 1.5;
}


/* =========================================================
   ÁREA DEL FORMULARIO
   ========================================================= */

.area-formulario {
    min-width: 0;

    background: white;
}

.contenedor-registro {
    width: 100%;

    padding: 45px 52px;
}


/* =========================================================
   PASOS
   ========================================================= */

.c2,
.c3 {
    display: none;
}


/* =========================================================
   CABECERA
   ========================================================= */

.cabecera-paso {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 35px;
}

.numero_seccion {
    display: inline-block;

    margin-bottom: 12px;

    padding: 6px 9px;

    border-radius: 7px;

    color: var(--primary);

    font-size: .55rem;
    font-weight: 700;

    letter-spacing: .11em;

    background: var(--primary-light);
}

.titulo {
    margin-bottom: 11px;

    color: var(--dark);

    font-size: clamp(1.65rem, 3vw, 2.15rem);

    line-height: 1.16;

    letter-spacing: -.05em;
}

.descripcion {
    max-width: 570px;

    color: var(--text-soft);

    font-size: .73rem;

    line-height: 1.8;
}

.numero-grande {
    color: #eef0f5;

    font-size: 4rem;
    font-weight: 700;

    line-height: .8;

    letter-spacing: -.08em;
}


/* =========================================================
   FORMULARIO DATOS
   ========================================================= */

.formulario-datos {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.grupo_formulario {
    margin-bottom: 20px;
}

.grupo_formulario label {
    display: block;

    margin-bottom: 9px;

    color: #434a5c;

    font-size: .63rem;
    font-weight: 700;
}


/* =========================================================
   INPUT
   ========================================================= */

.campo_input {
    display: flex;

    align-items: center;

    min-height: 69px;

    padding: 10px 13px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: #fafbfc;

    transition:
        border .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.campo_input:hover {
    border-color: #cfd4df;
}

.campo_input:focus-within {
    border-color: var(--primary);

    background: white;

    box-shadow:
        0 0 0 4px rgba(83,103,255,.07);
}

.icono-input {
    display: grid;
    place-items: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    margin-right: 11px;

    border-radius: 10px;

    color: var(--primary);

    background: var(--primary-light);
}

.icono-input .material-symbols-outlined {
    font-size: 19px;
}

.input-contenido {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.input-ayuda {
    color: #a0a6b4;

    font-size: .45rem;
    font-weight: 700;

    letter-spacing: .06em;
}

.campo_input input {
    width: 100%;

    height: 22px;

    border: 0;
    outline: 0;

    color: var(--dark);

    font-size: .76rem;

    background: transparent;
}

.campo_input input::placeholder {
    color: #a5abb8;
}


/* =========================================================
   MENSAJE SEGURIDAD
   ========================================================= */

.mensaje-seguridad {
    display: flex;

    gap: 12px;

    margin: 7px 0 27px;

    padding: 14px;

    border: 1px solid #e4e7ef;

    border-radius: 14px;

    background: #f8f9fb;
}

.mensaje-icono {
    display: grid;
    place-items: center;

    flex-shrink: 0;

    width: 35px;
    height: 35px;

    border-radius: 10px;

    color: var(--success);

    background: var(--success-light);
}

.mensaje-icono .material-symbols-outlined {
    font-size: 18px;
}

.mensaje-seguridad strong {
    display: block;

    margin-bottom: 4px;

    color: #3b4253;

    font-size: .58rem;
}

.mensaje-seguridad p {
    color: #838a9a;

    font-size: .55rem;

    line-height: 1.6;
}


/* =========================================================
   ACCIONES
   ========================================================= */

.acciones {
    display: flex;

    align-items: center;

    gap: 15px;
}

.accion-info {
    display: flex;

    align-items: center;

    gap: 6px;

    flex: 1;

    color: #959baa;

    font-size: .51rem;
}

.accion-info .material-symbols-outlined {
    color: var(--primary);

    font-size: 16px;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.btn_continuar {
    position: relative;

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    min-width: 180px;

    min-height: 52px;

    padding: 12px 20px;

    border-radius: 12px;

    color: white;

    font-size: .65rem;
    font-weight: 700;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    box-shadow:
        0 10px 24px rgba(83,103,255,.20);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.btn_continuar:hover:not(:disabled) {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(83,103,255,.27);
}

.btn_continuar:active:not(:disabled) {
    transform: translateY(0);
}

.btn_continuar .material-symbols-outlined {
    font-size: 18px;

    transition:
        transform .25s ease;
}

.btn_continuar:hover:not(:disabled)
.material-symbols-outlined {
    transform: translateX(3px);
}

.btn_continuar:disabled {
    color: #9ca2ae;

    cursor: not-allowed;

    background: #e8eaf0;

    box-shadow: none;
}


/* =========================================================
   BIOMETRÍA
   ========================================================= */

.estado_preparacion {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 17px;

    padding: 13px;

    border: 1px solid #e1e4ed;

    border-radius: 13px;

    background: #f7f8fb;
}

.estado_preparacion.oculto {
    display: none;
}

.loader_biometrico {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border: 3px solid #e2e5ec;

    border-top-color: var(--primary);

    border-radius: 50%;

    animation:
        girarLoader
        .8s
        linear
        infinite;
}

@keyframes girarLoader {
    to {
        transform: rotate(360deg);
    }
}

.texto_preparacion strong {
    display: block;

    margin-bottom: 4px;

    color: #333a4d;

    font-size: .61rem;
}

.texto_preparacion p {
    color: #7e8697;

    font-size: .53rem;

    line-height: 1.5;
}


/* =========================================================
   VISOR BIOMÉTRICO
   ========================================================= */

.visor-biometrico {
    padding: 10px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #101523,
            #1b2337
        );

    box-shadow:
        0 18px 35px rgba(13,18,32,.17);
}

.visor-cabecera {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding:
        3px
        5px
        11px;
}

.visor-status {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #cbd1ff;

    font-size: .46rem;
    font-weight: 700;

    letter-spacing: .08em;
}

.visor-status span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #40d9a5;

    box-shadow:
        0 0 0 4px rgba(64,217,165,.10);
}

.visor-label {
    color: rgba(255,255,255,.30);

    font-size: .42rem;
    font-weight: 600;

    letter-spacing: .07em;
}


/* =========================================================
   CÁMARA
   ========================================================= */

.contenedor {
    position: relative;

    width: 100%;

    max-width: 490px;

    aspect-ratio: 16 / 9;

    margin: auto;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 13px;

    background: white;
}

.img-ejemplo {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

#video,
#canvas {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

#video {
    object-fit: cover;

    transform: scaleX(-1);
}

#canvas {
    z-index: 2;
}


/* =========================================================
   MARCO ROSTRO
   ========================================================= */

.marco-rostro {
    position: absolute;

    z-index: 4;

    top: 50%;
    left: 50%;

    width: 32%;
    height: 65%;

    border: 1px solid rgba(139,150,255,.70);

    border-radius: 50%;

    transform: translate(-50%,-50%);

    box-shadow:
        0 0 0 999px rgba(6,10,20,.13);

    pointer-events: none;
}

.esquina {
    position: absolute;

    width: 18px;
    height: 18px;

    border-color: #91a0ff;
    border-style: solid;
}

.esquina-tl {
    top: -2px;
    left: -2px;

    border-width: 2px 0 0 2px;

    border-radius: 7px 0 0 0;
}

.esquina-tr {
    top: -2px;
    right: -2px;

    border-width: 2px 2px 0 0;

    border-radius: 0 7px 0 0;
}

.esquina-bl {
    bottom: -2px;
    left: -2px;

    border-width: 0 0 2px 2px;

    border-radius: 0 0 0 7px;
}

.esquina-br {
    right: -2px;
    bottom: -2px;

    border-width: 0 2px 2px 0;

    border-radius: 0 0 7px 0;
}


/* =========================================================
   MENSAJE CÁMARA
   ========================================================= */

.mensaje_biometrico {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 7px;

    min-height: 42px;

    color: rgba(255,255,255,.58);

    font-size: .55rem;

    text-align: center;
}

.mensaje_biometrico .material-symbols-outlined {
    color: #91a0ff;

    font-size: 17px;
}


/* =========================================================
   RECOMENDACIONES
   ========================================================= */

.recomendaciones {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 8px;

    margin: 15px 0 20px;
}

.recomendaciones div {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 6px;

    min-height: 40px;

    padding: 8px;

    border: 1px solid var(--border);

    border-radius: 11px;

    color: #747c8e;

    font-size: .51rem;
    font-weight: 600;

    background: #fafbfc;
}

.recomendaciones .material-symbols-outlined {
    color: var(--primary);

    font-size: 17px;
}


/* =========================================================
   DOCUMENTO IDENTIDAD
   ========================================================= */

.documento-identidad {
    margin-bottom: 22px;
}

.documento-cabecera {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-bottom: 9px;
}

.documento-etiqueta {
    color: #a0a6b3;

    font-size: .47rem;
    font-weight: 700;

    letter-spacing: .08em;
}

.documento-cabecera h3 {
    margin-top: 3px;

    color: #343b4c;

    font-size: .67rem;
}

.documento-icono {
    display: grid;
    place-items: center;

    width: 32px;
    height: 32px;

    border-radius: 9px;

    color: var(--primary);

    background: var(--primary-light);
}

.documento-icono .material-symbols-outlined {
    font-size: 17px;
}


/* =========================================================
   ARCHIVOS
   ========================================================= */

.campo_archivo {
    position: relative;

    display: flex;

    align-items: center;

    min-height: 72px;

    padding:
        10px
        58px
        10px
        12px;

    border: 1px dashed #cdd2dc;

    border-radius: 13px;

    background: #fafbfc;

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.campo_archivo:hover {
    border-color: var(--primary);

    background: #f8f9ff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(83,103,255,.06);
}

.campo_archivo > .material-symbols-outlined {
    display: grid;
    place-items: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    margin-right: 11px;

    border-radius: 10px;

    color: var(--primary);

    font-size: 20px;

    background: var(--primary-light);
}

.informacion_archivo {
    display: flex;

    flex: 1;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.informacion_archivo strong {
    overflow: hidden;

    color: #3a4050;

    font-size: .60rem;
    font-weight: 700;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.informacion_archivo small {
    overflow: hidden;

    color: #9298a7;

    font-size: .51rem;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   VERIFICADO
   ========================================================= */

.archivo_verificado {
    position: absolute;

    top: 50%;
    right: 15px;

    display: grid;
    place-items: center;

    width: 29px;
    height: 29px;

    border-radius: 50%;

    opacity: 0;

    color: white;

    background: var(--success);

    transform:
        translateY(-50%)
        scale(.7);

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.archivo_verificado .material-symbols-outlined {
    font-size: 17px;
}

.campo_archivo.archivo_cargado {
    border-style: solid;

    border-color: #68bda1;

    background: var(--success-light);
}

.campo_archivo.archivo_cargado
.archivo_verificado {
    opacity: 1;

    transform:
        translateY(-50%)
        scale(1);
}

.campo_archivo.archivo_cargado
> .material-symbols-outlined {
    color: var(--success);

    background: #d9f5eb;
}

.campo_archivo.archivo_cargado
.informacion_archivo strong {
    color: var(--success);
}

.campo_archivo input[type="file"] {
    position: absolute;

    inset: 0;

    z-index: 5;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}


/* =========================================================
   LISTA DOCUMENTOS
   ========================================================= */

.lista-documentos {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.documento-item {
    margin-bottom: 11px;
}

.documento-item label {
    margin-bottom: 6px;

    color: #9ca2af;

    font-size: .46rem;

    letter-spacing: .07em;
}


/* =========================================================
   PIE
   ========================================================= */

.pie {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 10px;

    padding:
        20px
        5px
        3px;

    color: #9ba1ae;

    font-size: .47rem;
}

.separador-pie {
    color: #d1d4db;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .panel {
        padding: 18px;
    }

    .contenido {
        grid-template-columns: 225px minmax(0,1fr);
    }

    .navegacion {
        padding: 30px 22px;
    }

    .contenedor-registro {
        padding: 35px 32px;
    }

    .numero-grande {
        font-size: 3rem;
    }

}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 760px) {

    .verificacion {
        padding: 15px 10px;
    }

    .panel {
        padding: 12px;

        border-radius: 25px;
    }

    .barra-superior {
        padding:
            5px
            7px
            18px;
    }

    .contenido {
        display: block;
    }

    .navegacion {
        padding: 22px;

        border-radius: 18px 18px 0 0;
    }

    .navegacion-cabecera {
        margin-bottom: 20px;
    }

    .navegacion-cabecera h2 {
        font-size: 1.1rem;
    }

    .navegacion-cabecera p {
        display: none;
    }

    .lista-pasos {
        display: grid;

        grid-template-columns: repeat(3,1fr);

        gap: 10px;
    }

    .conector-paso {
        display: none;
    }

    .paso {
        justify-content: center;
    }

    .paso-info {
        display: none;
    }

    .ayuda {
        display: none;
    }

    .contenedor-registro {
        padding: 32px 25px;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 600px) {

    .verificacion {
        padding:
            8px
            7px
            20px;
    }

    .panel {
        padding: 8px;

        border-radius: 21px;
    }

    .barra-superior {
        padding:
            6px
            8px
            14px;
    }

    .marca-icono {
        width: 38px;
        height: 38px;
    }

    .marca-texto strong {
        font-size: .69rem;
    }

    .marca-texto span {
        font-size: .50rem;
    }

    .seguridad span:not(.punto-seguridad) {
        display: none;
    }

    .seguridad {
        padding: 8px;

        border-radius: 10px;
    }

    .contenido {
        border-radius: 17px;
    }

    .navegacion {
        padding: 18px;
    }

    .navegacion-cabecera {
        display: flex;

        justify-content: space-between;
        align-items: center;

        margin-bottom: 15px;
    }

    .navegacion-cabecera h2 {
        margin: 0;

        font-size: .92rem;
    }

    .mini-etiqueta {
        display: none;
    }

    .lista-pasos {
        gap: 7px;
    }

    .numero_paso {
        width: 31px;
        height: 31px;

        font-size: .59rem;
    }

    .contenedor-registro {
        padding:
            26px
            17px;
    }

    .cabecera-paso {
        margin-bottom: 26px;
    }

    .numero-grande {
        display: none;
    }

    .titulo {
        font-size: 1.45rem;
    }

    .descripcion {
        font-size: .67rem;

        line-height: 1.7;
    }

    .formulario-datos {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .campo_input {
        min-height: 64px;
    }

    .acciones {
        flex-direction: column;

        align-items: stretch;
    }

    .accion-info {
        justify-content: center;

        order: 2;
    }

    .btn_continuar {
        width: 100%;

        min-height: 52px;
    }

    .recomendaciones {
        grid-template-columns: 1fr;
    }

    .recomendaciones div {
        justify-content: flex-start;

        padding-left: 12px;
    }

    .visor-biometrico {
        padding: 7px;
    }

    .visor-label {
        display: none;
    }

    .marco-rostro {
        width: 39%;
    }

    .documento-cabecera h3 {
        font-size: .62rem;
    }

    .campo_archivo {
        min-height: 69px;

        padding-right: 51px;
    }

    .informacion_archivo strong {
        font-size: .57rem;
    }

    .informacion_archivo small {
        font-size: .48rem;
    }

    .mensaje-seguridad {
        padding: 12px;
    }

    .pie {
        flex-wrap: wrap;

        gap: 6px;

        font-size: .43rem;
    }

}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    .verificacion {
        padding:
            5px
            4px
            15px;
    }

    .panel {
        padding: 6px;

        border-radius: 18px;
    }

    .contenedor-registro {
        padding:
            24px
            14px;
    }

    .titulo {
        font-size: 1.32rem;
    }

    .descripcion {
        font-size: .64rem;
    }

    .campo_archivo {
        padding-right: 46px;
    }

    .informacion_archivo strong {
        font-size: .54rem;
    }

    .informacion_archivo small {
        font-size: .45rem;
    }

}


/* =========================================================
   REDUCCIÓN DE MOVIMIENTO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }

}