@import url('../reutilizables/fonts.css');

/* 2. Propiedades Globales (Fuera de MQ) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    overflow-x: hidden;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE y Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Brave y Opera */
}

/* MQ 1367 (Maestra) */
@media (min-width: 1367px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centrar a lo alto */
        padding: 0;
        gap: 50px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 250px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 32px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        color: #777777;
        margin-bottom: 50px;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 25px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 245px;
        /* Cuadrado perfecto */
        height: 245px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
        line-height: 1.6;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #777777;
        margin-bottom: 40px;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 400px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 18px 25px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 18px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 10px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }


    /* Estilo código 7 dígitos */
    .campo-12331 {
        text-align: center;
        font-size: 24px;
        letter-spacing: 10px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 400px;
        padding: 35px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 30px;
        height: 30px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 30px;
        height: 30px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 30px;
        height: 30px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 12px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 25px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 15px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}


/* MQ2 */
@media (min-width: 1281px) and (max-width: 1366px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centrar a lo alto */
        padding: 0;
        gap: 45px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 230px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 30px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #777777;
        margin-bottom: 45px;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 230px;
        /* Cuadrado perfecto */
        height: 230px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 19px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        line-height: 1.6;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 26px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #777777;
        margin-bottom: 40px;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 380px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 18px 25px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 18px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 10px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }

    /* Estilo código 7 dígitos */
    .campo-12331 {
        text-align: center;
        font-size: 24px;
        letter-spacing: 10px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) - MQ2 */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 380px;
        padding: 32px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 28px;
        height: 28px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 28px;
        height: 28px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 28px;
        height: 28px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 19px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 11px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 13.5px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 22px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 14px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14.5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}

/* MQ3 */
@media (min-width: 1025px) and (max-width: 1280px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centrar a lo alto */
        padding: 0;
        gap: 40px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 210px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #777777;
        margin-bottom: 40px;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 185px;
        /* Cuadrado perfecto */
        height: 185px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        line-height: 1.6;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
        margin-bottom: 35px;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 360px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 16px 22px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 16px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 10px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }

    /* Estilo código 7 dígitos */
    .campo-12331 {
        text-align: center;
        font-size: 22px;
        letter-spacing: 10px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) - MQ3 */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 360px;
        padding: 30px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 26px;
        height: 26px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 26px;
        height: 26px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 26px;
        height: 26px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 10px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 20px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 13px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centrar a lo alto */
        padding: 0;
        gap: 40px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 210px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 28px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #777777;
        margin-bottom: 40px;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 185px;
        /* Cuadrado perfecto */
        height: 185px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
        line-height: 1.6;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 24px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
        margin-bottom: 35px;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 360px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 16px 22px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 16px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 10px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }

    /* Estilo codigo 7 digitos */
    .campo-12331 {
        text-align: center;
        font-size: 22px;
        letter-spacing: 10px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) - MQ4 */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 340px;
        padding: 28px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 24px;
        height: 24px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 24px;
        height: 24px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 24px;
        height: 24px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 17.5px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 9px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 12.5px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 18px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 12px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}
@media (min-width: 481px) and (max-width: 767px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Centrar a lo alto */
        padding: 50px 20px;
        gap: 35px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 180px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 22px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 8px;
        text-align: center;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        color: #777777;
        margin-bottom: 30px;
        text-align: center;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 145px;
        /* Cuadrado perfecto */
        height: 145px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 11px;
        color: #777777;
        line-height: 1.5;
        padding: 0 8px;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 6px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 8px;
        text-align: center;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        margin-bottom: 28px;
        text-align: center;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 100%;
        max-width: 380px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 15px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 8px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }

    /* Estilo código 7 dígitos */
    .campo-12331 {
        text-align: center;
        font-size: 20px;
        letter-spacing: 8px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) - MQ5 */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 300px;
        padding: 25px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 22px;
        height: 22px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 22px;
        height: 22px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 22px;
        height: 22px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 17px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 8px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 16px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 11px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}

@media (min-width: 320px) and (max-width: 480px) {

    .seccion-1 {
        width: 100%;
        min-height: 100vh;
        background-color: #fcfcfc;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Centrar a lo alto */
        padding: 40px 16px;
        gap: 30px;
    }

    .modulo-11 {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .icono-1111 {
        width: 155px;
        height: auto;
    }

    .modulo-12 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Ocultar pasos por defecto */
    .bloque-122,
    .bloque-123 {
        display: none;
    }

    /* Mostrar paso activo */
    .bloque-121.activo,
    .bloque-122.activo,
    .bloque-123.activo {
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .texto-1211 {
        font-family: 'Outfit', sans-serif;
        font-size: 20px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 6px;
        text-align: center;
    }

    .texto-1212 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        margin-bottom: 24px;
        text-align: center;
    }

    .contenido-1213 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .contenido-12131,
    .contenido-12132,
    .contenido-12133,
    .contenido-12134,
    .contenido-12135 {
        background-color: #ffffff;
        border: 2px solid #eeeeee;
        border-radius: 20px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 125px;
        /* Cuadrado perfecto */
        height: 125px;
        /* Cuadrado perfecto */
    }

    .contenido-12131:hover,
    .contenido-12132:hover,
    .contenido-12133:hover,
    .contenido-12134:hover,
    .contenido-12135:hover {
        border-color: #003cff;
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 60, 255, 0.08);
    }

    .contenido-12131.seleccionado,
    .contenido-12132.seleccionado,
    .contenido-12133.seleccionado,
    .contenido-12134.seleccionado,
    .contenido-12135.seleccionado {
        border-color: #003cff;
        background-color: rgba(0, 60, 255, 0.02);
        box-shadow: 0 10px 25px rgba(0, 60, 255, 0.05);
    }

    .texto-1213111,
    .texto-1213211,
    .texto-1213311,
    .texto-1213411,
    .texto-1213511 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .texto-1213112,
    .texto-1213212,
    .texto-1213312,
    .texto-1213412,
    .texto-1213512 {
        font-family: 'Outfit', sans-serif;
        font-size: 10px;
        color: #777777;
        line-height: 1.5;
        padding: 0 6px;
    }

    .badge-12135 {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ff6600;
        color: #ffffff;
        font-family: 'Outfit', sans-serif;
        font-size: 9px;
        font-weight: 700;
        padding: 3px 7px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 5px;
    }

    /* ESTILOS PASO 2 Y 3 */
    .texto-1221,
    .texto-1231 {
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        color: #213242;
        font-weight: 700;
        margin-bottom: 6px;
        text-align: center;
    }

    .texto-1222,
    .texto-1232 {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        color: #777777;
        margin-bottom: 24px;
        text-align: center;
    }

    #app-seleccionada {
        color: #003cff;
        font-weight: 700;
        text-transform: capitalize;
    }

    .contenido-1223,
    .contenido-1233 {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .campo-12231,
    .campo-12331 {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #dddddd;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 14px;
        outline: none;
        transition: border 0.3s;
    }

    .campo-12231:focus,
    .campo-12331:focus {
        border-color: #003cff;
    }

    .contenido-12232 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .texto-122321 {
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        color: #777777;
    }

    .texto-122321 a {
        color: #003cff;
        text-decoration: none;
    }

    .boton-12233,
    .boton-12332 {
        width: 100%;
        padding: 14px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 6px;
    }

    .boton-12233:hover,
    .boton-12332:hover {
        background-color: #002db3;
    }

    /* Estilo código 7 dígitos */
    .campo-12331 {
        text-align: center;
        font-size: 18px;
        letter-spacing: 6px;
        font-weight: 700;
        color: #213242;
    }

    /* Estilos del Modal de Alerta Custom Premium (modulo-a1) - MQ6 (Mobile) */
    .modulo-a1 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(33, 50, 66, 0.45);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .modulo-a1.activo {
        opacity: 1;
    }
    .bloque-a11 {
        background-color: #ffffff;
        width: 280px;
        padding: 20px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(33, 50, 66, 0.15);
        text-align: center;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 1px solid rgba(238, 238, 238, 0.5);
    }
    .modulo-a1.activo .bloque-a11 {
        transform: scale(1) translateY(0);
    }
    .contenido-a111 {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        transition: all 0.3s ease;
    }
    .contenido-a111.bg-success {
        background-color: rgba(16, 185, 129, 0.1);
    }
    .contenido-a111.bg-error {
        background-color: rgba(239, 68, 68, 0.1);
    }
    .contenido-a111.bg-info {
        background-color: rgba(0, 60, 255, 0.1);
    }
    .icono-a1111-success {
        width: 20px;
        height: 20px;
        color: #10b981;
    }
    .icono-a1111-error {
        width: 20px;
        height: 20px;
        color: #ef4444;
    }
    .icono-a1111-info {
        width: 20px;
        height: 20px;
        color: #003cff;
    }
    .contenido-a112 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .texto-a1121 {
        font-family: 'Outfit', sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #213242;
        margin-bottom: 8px;
    }
    .texto-a1122 {
        font-family: 'Outfit', sans-serif;
        font-size: 11.5px;
        line-height: 1.5;
        color: #777777;
        margin-bottom: 15px;
    }
    .bloque-a114 {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contenido-a1141 {
        width: 100%;
        padding: 10px;
        background-color: #003cff;
        color: #ffffff;
        border: none;
        border-radius: 12px;
        font-family: 'Outfit', sans-serif;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.1s ease;
        outline: none;
        box-shadow: 0 4px 12px rgba(0, 60, 255, 0.15);
    }
    .contenido-a1141:hover {
        background-color: #002db3;
    }
    .contenido-a1141:active {
        transform: scale(0.98);
    }
}