/* /Layout/MainLayout.razor.rz.scp.css */
/* Contenedor de toda la página */
.app-shell[b-sqkz6kuro3] {
    min-height: 100vh; /* ocupa toda la altura visible */
    display: flex;
    flex-direction: column; /* header, main, footer en columna */
    background: #0a0a0a;
    color: #e0e0e0;
    font-family: system-ui, sans-serif;
}

/* Cabecera (sin cambios, salvo que ya no necesita justificar nada raro) */
.head-pers[b-sqkz6kuro3] {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* El main se expande y empuja el footer hacia abajo si hay espacio */
.hyperchat-main[b-sqkz6kuro3] {
    flex: 1 0 auto; /* << clave para que “estire” */
    margin: 0;
    /* corrige el typo y evita 100vw (provoca overflow horizontal) */
    padding: 0rem 1rem 0rem 1rem;
    width: 100vw; /* no uses 100vw aquí */
    overflow-x: hidden; /* cinturón y tirantes contra scroll horizontal */
    overflow-y: auto;
    box-sizing: border-box;
}

/* Footer queda al final de .app-shell, sin ser fixed */
.footer-pers[b-sqkz6kuro3] {
    width: 100%;
    display: flex;
    justify-content: space-between;

}
/* /Pages/Agradecimientos.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-kaikt4m7p1] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-kaikt4m7p1] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-kaikt4m7p1] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-kaikt4m7p1] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-kaikt4m7p1],
    .legal li[b-kaikt4m7p1] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-kaikt4m7p1] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-kaikt4m7p1] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-kaikt4m7p1] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-kaikt4m7p1],
        .legal a:focus[b-kaikt4m7p1] {
            color: var(--link-hover);
        }

    .legal strong[b-kaikt4m7p1] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-kaikt4m7p1] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-kaikt4m7p1],
    .legal button:focus[b-kaikt4m7p1] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-kaikt4m7p1] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-kaikt4m7p1], .legal h2[b-kaikt4m7p1] {
            color: #0f172a !important;
        }

        .legal a[b-kaikt4m7p1] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/AvisoLegal.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-6vicvevhxj] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-6vicvevhxj] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-6vicvevhxj] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-6vicvevhxj] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-6vicvevhxj],
    .legal li[b-6vicvevhxj] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-6vicvevhxj] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-6vicvevhxj] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-6vicvevhxj] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-6vicvevhxj],
        .legal a:focus[b-6vicvevhxj] {
            color: var(--link-hover);
        }

    .legal strong[b-6vicvevhxj] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-6vicvevhxj] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-6vicvevhxj],
    .legal button:focus[b-6vicvevhxj] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-6vicvevhxj] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-6vicvevhxj], .legal h2[b-6vicvevhxj] {
            color: #0f172a !important;
        }

        .legal a[b-6vicvevhxj] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Chat.razor.rz.scp.css */

body[b-vq2ypi72mh]{
    width:90%;
}

h1[b-vq2ypi72mh] {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: white;
}

.TituloChatPrivado[b-vq2ypi72mh] {
    color: red;
}

.conectando[b-vq2ypi72mh] {
    text-align: center;
    color: #bbb;
}

.zona-chat[b-vq2ypi72mh] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: auto;
    padding: 1rem;
    background-color: #111;
    border-radius: 8px;
    color: white;
}

.mensajes[b-vq2ypi72mh] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #1a1a1a;
    padding: 1rem;
    height: 300px;
    overflow-y: auto;
    border-radius: 6px;
}


.mensaje[b-vq2ypi72mh] {
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    background-color: #333;
    border-radius: 4px;
}

.zona-envio[b-vq2ypi72mh] {
    display: flex;
    gap: 0.5rem;
}

input[type="text"][b-vq2ypi72mh] {
    flex: 1;
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
}

button[b-vq2ypi72mh] {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #00b709ff;
    color: white;
}

    button:hover[b-vq2ypi72mh] {
        background-color: #00b709d1;
    }

.acciones-chat[b-vq2ypi72mh] {
    margin:20px 0px 0px 0px;
    display: flex;
    justify-content: flex-end;
    gap:10px;
}

.btnPurgar[b-vq2ypi72mh] {
    background-color: #0052fb;
}

    .btnPurgar:hover[b-vq2ypi72mh] {
    background-color: #1565c0d1;
    }


.btnPurgarSalir[b-vq2ypi72mh] {
    background-color: #ff7000;
}

    .btnPurgarSalir:hover[b-vq2ypi72mh] {
        background-color: #ff7000d1;
    }

.btnDestruir[b-vq2ypi72mh] {
    background-color: #ff0000;
}

    .btnDestruir:hover[b-vq2ypi72mh] {
    background-color: #ff0000d1;
    }

.estado-usuarios[b-vq2ypi72mh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.indicador[b-vq2ypi72mh] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: gray;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

    .indicador.conectado[b-vq2ypi72mh] {
        background-color: #4caf50;
    }

    .indicador.solo[b-vq2ypi72mh] {
        background-color: #e53935;
    }


.estado-verificacion[b-vq2ypi72mh] {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .5rem 0 1rem;
    flex-wrap: wrap;
}
    .estado-verificacion .verif-actions[b-vq2ypi72mh] {
        flex-basis: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .4rem;
        margin-top: .25rem;
        margin-left: 1.2rem;
    }

.indicador[b-vq2ypi72mh] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

    .indicador.ok[b-vq2ypi72mh] {
        background: #4caf50;
    }
    /* verde */
    .indicador.warn[b-vq2ypi72mh] {
        background: #e55353;
    }
/* rojo */

.texto-verif[b-vq2ypi72mh] {
    font-size: .95rem;
    opacity: .9;
}

.btnVerificar[b-vq2ypi72mh] {
    margin-left: 0;
    margin-top: .25rem;
    padding: .35rem .65rem;
    font-size: .9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #00b709d9;
    color: #fff;
    cursor: pointer;
}

    .btnVerificar:hover[b-vq2ypi72mh] {
        background: #00b709ff;
    }

.btnOlvidar[b-vq2ypi72mh] {
    background: #2d2d2d;
    color: #f0f0f0;
    border: 1px solid #6b6b6b;
    padding: .35rem .65rem;
    font-size: .9rem;
    border-radius: 6px;
    cursor: pointer;
}

    .btnOlvidar:hover[b-vq2ypi72mh] {
        background: #3a3a3a;
        border-color: #8a8a8a;
    }




/* Overlay de carga para Chat */
.hc-loading[b-vq2ypi72mh] {
    position: fixed; /* cubre la pantalla mientras conecta */
    inset: 0; /* top/right/bottom/left:0 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: rgba(0,0,0,.6); /* oscurece un poco */
    backdrop-filter: blur(1px);
    z-index: 1000;
    text-align: center;
    color: #e5e7eb;
    padding: 1rem;
}

    .hc-loading p[b-vq2ypi72mh] {
        margin: 0;
        font-size: 1rem;
        opacity: .95;
    }

/* Spinner */
.hc-spinner[b-vq2ypi72mh] {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255,255,255,.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hc-spin-b-vq2ypi72mh .8s linear infinite;
}

@keyframes hc-spin-b-vq2ypi72mh {
    to {
        transform: rotate(360deg);
    }
}
/* /Pages/Contacto.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */


.legal[b-mq8jzkay8i] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-mq8jzkay8i] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-mq8jzkay8i] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-mq8jzkay8i],
    .legal li[b-mq8jzkay8i] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-mq8jzkay8i] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-mq8jzkay8i] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-mq8jzkay8i] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-mq8jzkay8i],
        .legal a:focus[b-mq8jzkay8i] {
            color: var(--link-hover);
        }

    .legal strong[b-mq8jzkay8i] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-mq8jzkay8i] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-mq8jzkay8i],
    .legal button:focus[b-mq8jzkay8i] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

.card[b-mq8jzkay8i]{
    max-width:15rem;
    padding:1rem;
    margin:1rem;
    border-radius:10px;
    background-color:#272727;
}
/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-mq8jzkay8i] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-mq8jzkay8i], .legal h2[b-mq8jzkay8i] {
            color: #0f172a !important;
        }

        .legal a[b-mq8jzkay8i] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Cookies.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-bnnsp2ukz5] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-bnnsp2ukz5] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-bnnsp2ukz5] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-bnnsp2ukz5] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-bnnsp2ukz5],
    .legal li[b-bnnsp2ukz5] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-bnnsp2ukz5] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-bnnsp2ukz5] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-bnnsp2ukz5] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-bnnsp2ukz5],
        .legal a:focus[b-bnnsp2ukz5] {
            color: var(--link-hover);
        }

    .legal strong[b-bnnsp2ukz5] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-bnnsp2ukz5] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-bnnsp2ukz5],
    .legal button:focus[b-bnnsp2ukz5] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-bnnsp2ukz5] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-bnnsp2ukz5], .legal h2[b-bnnsp2ukz5] {
            color: #0f172a !important;
        }

        .legal a[b-bnnsp2ukz5] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Faqs.razor.rz.scp.css */
/* =========================
   Vars básicas (opcionales)
   ========================= */
:host[b-5lh9939yxq] {
    --text: #e8ecf1;
    --muted: #a6afba;
    --accent: #9cc5ff;
    --card: #10151b;
    --border: #1f2732;
    --shadow: 0 14px 36px rgba(0,0,0,.38);
    --radius: 16px;
    --mw: 1100px;
}

/* =========================
   Bandas full-bleed + ESPACIADO FIJO
   ========================= */
.band[b-5lh9939yxq] {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 5rem 0 !important; /* ESPACIADO INTERNO GRANDE */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .band + .band[b-5lh9939yxq] {
        margin-top: 4rem !important;
    }
/* DISTANCIA ENTRE BLOQUES */

.band--1[b-5lh9939yxq] {
    background: #0e1217;
}

.band--2[b-5lh9939yxq] {
    background: #0e1217;
}

.band--3[b-5lh9939yxq] {
    background: #0e1217;
}

.band--4[b-5lh9939yxq] {
    background: #0e1217;
}

.band--5[b-5lh9939yxq] {
    background: #0e1217;
}

.band--6[b-5lh9939yxq] {
    background: #0e1217;
}

.band--7[b-5lh9939yxq] {
    background: #0e1217;
}

.band--cta[b-5lh9939yxq] {
    background: linear-gradient(180deg,#0f1318,#0a0d11);
}

/* Más aire todavía en pantallas grandes */
@media (min-width: 1280px) {
    .band[b-5lh9939yxq] {
        padding: 6rem 0 !important;
    }

        .band + .band[b-5lh9939yxq] {
            margin-top: 5rem !important;
        }
}

/* =========================
   Contenedor
   ========================= */
.inner[b-5lh9939yxq] {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: var(--text);
}

/* =========================
   Títulos de página/grupo
   ========================= */
.page-title[b-5lh9939yxq] {
    font-size: clamp(1.8rem,3.2vw,2.2rem);
    margin: 0 0 .5rem;
    color: #f2f6fb;
}

.page-sub[b-5lh9939yxq] {
    margin: 0 auto 1.5rem;
    color: var(--muted);
    max-width: 720px;
}

.group-title[b-5lh9939yxq] {
    margin: 0 0 1.2rem;
    font-size: clamp(1.35rem,2.6vw,1.8rem);
    color: #f2f6fb;
}

/* =========================
   FAQ (details)
   ========================= */
.faq-grid[b-5lh9939yxq] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq[b-5lh9939yxq] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
    overflow: hidden;
}

    .faq summary[b-5lh9939yxq] {
        list-style: none;
        cursor: pointer;
        padding: 1rem 1.2rem;
        position: relative;
        color: #f2f6fb;
    }

        .faq summary[b-5lh9939yxq]::-webkit-details-marker {
            display: none;
        }

        .faq summary[b-5lh9939yxq]::after {
            content: "▾";
            position: absolute;
            right: 1rem;
            top: 1rem;
            transform: rotate(-90deg);
            transition: transform .15s ease;
            opacity: .9;
        }

    .faq[open] summary[b-5lh9939yxq]::after {
        transform: rotate(0);
    }

    .faq .answer[b-5lh9939yxq] {
        padding: 0 1.2rem 1.1rem;
        color: var(--muted);
    }

/* =========================
   Pills (Controles de borrado)
   ========================= */
.pills[b-5lh9939yxq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.pill[b-5lh9939yxq] {
    background: linear-gradient(180deg,#0f1318,#0a0d11);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 1rem 1.25rem;
    min-width: 280px;
    max-width: 420px;
    box-shadow: var(--shadow);
}

    .pill h3[b-5lh9939yxq] {
        margin: 0 0 .2rem;
        font-size: 1rem;
        color: #f2f6fb;
    }

    .pill p[b-5lh9939yxq] {
        margin: 0;
        color: var(--muted);
    }

/* =========================
   Listas enumeradas / check
   ========================= */
.duo[b-5lh9939yxq] {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 520px));
    justify-content: center;
    column-gap: 2rem;
    row-gap: 1.4rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

.enum-block[b-5lh9939yxq] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem 1.25rem;
    text-align: left;
}

    .enum-block h3[b-5lh9939yxq] {
        margin: 0 0 .6rem;
        font-size: 1.05rem;
        color: #f2f6fb;
    }

.enum[b-5lh9939yxq] {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0 0 .7rem;
}

    .enum li[b-5lh9939yxq] {
        counter-increment: item;
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .6rem .4rem;
        border-bottom: 1px dashed #2b3440;
        color: var(--text);
    }

        .enum li:last-child[b-5lh9939yxq] {
            border-bottom: none;
        }

        .enum li[b-5lh9939yxq]::before {
            content: counter(item);
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: #1b2330;
            color: #d8e6ff;
            border: 1px solid var(--border);
            font-size: .9rem;
        }

.check[b-5lh9939yxq] {
    list-style: none;
    padding: 0;
    margin: 0 0 .7rem;
}

    .check li[b-5lh9939yxq] {
        position: relative;
        padding: .5rem .4rem .5rem 1.6rem;
        color: var(--text);
        border-bottom: 1px dashed #2b3440;
    }

        .check li:last-child[b-5lh9939yxq] {
            border-bottom: none;
        }

        .check li[b-5lh9939yxq]::before {
            content: "✓";
            position: absolute;
            left: .4rem;
            top: .45rem;
            width: 18px;
            height: 18px;
            border-radius: 4px;
            display: grid;
            place-items: center;
            border: 1px solid var(--border);
            background: #132034;
            color: #9cd2ff;
            font-size: .8rem;
        }

/* =========================
   Enlaces / CTA
   ========================= */
.link[b-5lh9939yxq] {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.more[b-5lh9939yxq] {
    margin: 1rem 0 0;
    color: var(--muted);
}

.cta[b-5lh9939yxq] {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.2rem;
}

    .cta h2[b-5lh9939yxq] {
        margin: 0 0 1rem;
        color: #f2f6fb;
    }

.cta__buttons[b-5lh9939yxq] {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 900px) {
    .duo[b-5lh9939yxq] {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}
/* /Pages/GuiaUso.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-4ys6hdo1b3] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-4ys6hdo1b3] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-4ys6hdo1b3] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-4ys6hdo1b3] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-4ys6hdo1b3],
    .legal li[b-4ys6hdo1b3] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-4ys6hdo1b3] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-4ys6hdo1b3] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-4ys6hdo1b3] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-4ys6hdo1b3],
        .legal a:focus[b-4ys6hdo1b3] {
            color: var(--link-hover);
        }

    .legal strong[b-4ys6hdo1b3] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-4ys6hdo1b3] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-4ys6hdo1b3],
    .legal button:focus[b-4ys6hdo1b3] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-4ys6hdo1b3] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-4ys6hdo1b3], .legal h2[b-4ys6hdo1b3] {
            color: #0f172a !important;
        }

        .legal a[b-4ys6hdo1b3] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Index.razor.rz.scp.css */
/* ===== Hero existente (lo mantienes tal cual) ===== */
h1[b-by9zh5cgqq] {
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #e0e0e0;
}

p[b-by9zh5cgqq] {
    text-align: center;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.opciones-inicio[b-by9zh5cgqq] {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 4rem; /* aire extra antes del primer bloque */
}

button[b-by9zh5cgqq] {
    padding: .75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    background: #1e88e5;
    color: #fff;
    cursor: pointer;
    transition: background-color .2s ease, transform .06s ease;
}

    button:hover[b-by9zh5cgqq] {
        background: #1565c0;
    }

    button:active[b-by9zh5cgqq] {
        background: #0d47a1;
        transform: translateY(1px) scale(.99);
    }

@media (min-width:600px) {
    .opciones-inicio[b-by9zh5cgqq] {
        flex-direction: row;
        justify-content: center;
    }
}

/* ====================================================
   Variables del componente (usar :host en Blazor)
   ==================================================== */
:host[b-by9zh5cgqq] {
    --text: #e8ecf1;
    --muted: #a6afba;
    --card: #10151b;
    --border: #1f2732;
    --accent: #9cc5ff;
    --shadow: 0 14px 36px rgba(0,0,0,.38);
    --radius: 16px;
    --rsm: 12px;
    --mw: 1100px;
    /* separación AMPLIA entre bloques */
    --band-pad: 5em; /* padding vertical interno de cada bloque */
    --band-gap: 2rem; /* distancia entre bloques */
}

/* ====================================================
   Bandas full-bleed (ancho completo)
   ==================================================== */
.band[b-by9zh5cgqq] {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: var(--band-pad, 5rem) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .band + .band[b-by9zh5cgqq] {
        margin-top: var(--band-gap, 8rem);
    }
    /* aire extra entre hero y primer bloque / último bloque y footer */
    .band:first-of-type[b-by9zh5cgqq] {
        margin-top: 4rem;
    }

    .band:last-of-type[b-by9zh5cgqq] {
        margin-bottom: 5rem;
    }

.band--1[b-by9zh5cgqq] {
    background: #0e1217;
}

.band--2[b-by9zh5cgqq] {
    background: #0e1217;
}

.band--3[b-by9zh5cgqq] {
    background: #0e1217;
}

.band--4[b-by9zh5cgqq] {
    background: #0e1217;
}

.band--5[b-by9zh5cgqq] {
    background: #0e1217;
}

.band--cta[b-by9zh5cgqq] {
    background: linear-gradient(180deg, #0f1318, #0a0d11);
}

/* Contenedor interno centrado */
.inner[b-by9zh5cgqq] {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: var(--text);
}

/* ====================================================
   Títulos y filas
   ==================================================== */
.lc-title[b-by9zh5cgqq] {
    margin: 0 0 1.2rem;
    font-size: clamp(1.4rem, 2.7vw, 1.9rem);
    color: #f2f6fb;
}

.lc-row[b-by9zh5cgqq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
}

.lc-row--3 > *[b-by9zh5cgqq] {
    flex: 0 1 320px;
}
/* 3 por fila en desktop */
.lc-row--auto > *[b-by9zh5cgqq] {
    flex: 0 0 auto;
}

/* ====================================================
   Cards (ventajas)
   ==================================================== */
.lc-card[b-by9zh5cgqq] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem 1.25rem;
}

    .lc-card h3[b-by9zh5cgqq] {
        margin: .05rem 0 .45rem;
        font-size: 1.1rem;
        color: #f2f6fb;
    }

    .lc-card p[b-by9zh5cgqq] {
        margin: 0;
        color: var(--muted);
    }

/* ====================================================
   Pasos (Cómo funciona)
   ==================================================== */
.lc-steps-row[b-by9zh5cgqq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    margin-top: .6rem;
}

.lc-step[b-by9zh5cgqq] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .95rem 1.1rem;
    width: 320px;
    display: flex;
    gap: .75rem;
    align-items: center;
    text-align: left;
    box-shadow: var(--shadow);
}

.num[b-by9zh5cgqq] {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #1b2330;
    color: #d8e6ff;
    font-size: .9rem;
}

.lc-step p[b-by9zh5cgqq] {
    margin: 0;
    color: var(--text);
}

.lc-note[b-by9zh5cgqq] {
    color: var(--muted);
    margin: .95rem 0 0;
}

/* ====================================================
   Pills (Controles de borrado)
   ==================================================== */
.lc-pill[b-by9zh5cgqq] {
    background: linear-gradient(180deg, #0f1318, #0a0d11);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .9rem 1.25rem;
    min-width: 280px;
    max-width: 440px;
    display: inline-flex;
    flex-direction: column;
    gap: .25rem;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

    .lc-pill h4[b-by9zh5cgqq] {
        margin: 0;
        font-size: 1rem;
        color: #f2f6fb;
    }

    .lc-pill p[b-by9zh5cgqq] {
        margin: 0;
        color: var(--muted);
    }

/* ====================================================
   Detalles técnicos + Proyecto BETA (mismo bloque)
   ==================================================== */
.lc-duo-grid[b-by9zh5cgqq] {
    display: grid;
    grid-template-columns: 1fr; /* base: 1 columna en móvil */
    gap: 1.4rem;
    align-items: start;
}

/* Override específico del bloque (centrado perfecto de 2 columnas) */
.band--4 .lc-duo-grid[b-by9zh5cgqq] {
    grid-template-columns: repeat(2, minmax(320px, 520px));
    justify-content: center; /* centra el conjunto de columnas */
    column-gap: 2rem;
    row-gap: 1.4rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px; /* evita que “se abra” de más */
}

.lc-enum-block[b-by9zh5cgqq] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    text-align: left;
    box-shadow: var(--shadow);
}

    .lc-enum-block h3[b-by9zh5cgqq] {
        margin: 0 0 .6rem;
        font-size: 1.05rem;
        color: #f2f6fb;
    }

.lc-enum[b-by9zh5cgqq] {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0 0 .7rem;
}

    .lc-enum li[b-by9zh5cgqq] {
        counter-increment: item;
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .6rem .4rem;
        border-bottom: 1px dashed #2b3440;
        color: var(--text);
    }

        .lc-enum li:last-child[b-by9zh5cgqq] {
            border-bottom: none;
        }

        .lc-enum li[b-by9zh5cgqq]::before {
            content: counter(item);
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: #1b2330;
            color: #d8e6ff;
            border: 1px solid var(--border);
            font-size: .9rem;
        }

.lc-link[b-by9zh5cgqq] {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ====================================================
   Preguntas Rápidas
   ==================================================== */
.band--5 p[b-by9zh5cgqq]{
    font-size:1.2rem;
    color:#fff;
}
/* ====================================================
   CTA final
   ==================================================== */
.lc-cta[b-by9zh5cgqq] {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.2rem;
}

    .lc-cta h2[b-by9zh5cgqq] {
        margin: 0 0 1rem;
        color: #f2f6fb;
    }

.lc-cta__buttons[b-by9zh5cgqq] {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
    align-items: center;
}

/* ====================================================
   Responsive adicional
   ==================================================== */
@media (max-width: 860px) {
    .band--4 .lc-duo-grid[b-by9zh5cgqq] {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}

@media (max-width: 480px) {
    .lc-row--3 > *[b-by9zh5cgqq], .lc-step[b-by9zh5cgqq] {
        width: 100%;
    }
}

/* Más aire todavía en pantallas grandes */
@media (min-width: 1200px) {
    :host[b-by9zh5cgqq] {
        --band-pad: 9rem;
        --band-gap: 9rem;
    }
}
/* /Pages/Invite.razor.rz.scp.css */
h1[b-xtpriy5y7x] {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.crear-sala[b-xtpriy5y7x] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    color: #e0e0e0;
}

label[b-xtpriy5y7x] {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 0.95rem;
    gap: 0.5rem;
}

input[type="text"][b-xtpriy5y7x] {
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
}

button[b-xtpriy5y7x] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #43a047;
    color: white;
    cursor: pointer;
}

    button:hover[b-xtpriy5y7x] {
        background-color: #388e3c;
    }

.info-sala[b-xtpriy5y7x] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.advertencia[b-xtpriy5y7x] {
    color: #fbc02d;
    font-size: 0.9rem;
}
/* /Pages/Join.razor.rz.scp.css */
h1[b-e2py8vq2lz] {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.unirse-sala[b-e2py8vq2lz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    color: #e0e0e0;
}

label[b-e2py8vq2lz] {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    font-size: 0.95rem;
    gap: 0.5rem;
}

input[type="text"][b-e2py8vq2lz] {
    padding: 0.6rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
}

button[b-e2py8vq2lz] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
}

    button:hover[b-e2py8vq2lz] {
        background-color: #1565c0;
    }

.error[b-e2py8vq2lz] {
    color: #ff5252;
    font-size: 0.9rem;
    margin-top: 1rem;
}
/* /Pages/PoliticaUso.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-9n9wuy4gvx] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-9n9wuy4gvx] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-9n9wuy4gvx] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-9n9wuy4gvx] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-9n9wuy4gvx],
    .legal li[b-9n9wuy4gvx] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-9n9wuy4gvx] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-9n9wuy4gvx] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-9n9wuy4gvx] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-9n9wuy4gvx],
        .legal a:focus[b-9n9wuy4gvx] {
            color: var(--link-hover);
        }

    .legal strong[b-9n9wuy4gvx] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-9n9wuy4gvx] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-9n9wuy4gvx],
    .legal button:focus[b-9n9wuy4gvx] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-9n9wuy4gvx] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-9n9wuy4gvx], .legal h2[b-9n9wuy4gvx] {
            color: #0f172a !important;
        }

        .legal a[b-9n9wuy4gvx] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Privacidad.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */


.legal[b-i9cbp6qdn8] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-i9cbp6qdn8] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-i9cbp6qdn8] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-i9cbp6qdn8],
    .legal li[b-i9cbp6qdn8] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-i9cbp6qdn8] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-i9cbp6qdn8] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-i9cbp6qdn8] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-i9cbp6qdn8],
        .legal a:focus[b-i9cbp6qdn8] {
            color: var(--link-hover);
        }

    .legal strong[b-i9cbp6qdn8] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-i9cbp6qdn8] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-i9cbp6qdn8],
    .legal button:focus[b-i9cbp6qdn8] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-i9cbp6qdn8] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-i9cbp6qdn8], .legal h2[b-i9cbp6qdn8] {
            color: #0f172a !important;
        }

        .legal a[b-i9cbp6qdn8] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Reportes.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-qr13vgewqt] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-qr13vgewqt] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-qr13vgewqt] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-qr13vgewqt] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-qr13vgewqt],
    .legal li[b-qr13vgewqt] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-qr13vgewqt] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-qr13vgewqt] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-qr13vgewqt] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-qr13vgewqt],
        .legal a:focus[b-qr13vgewqt] {
            color: var(--link-hover);
        }

    .legal strong[b-qr13vgewqt] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-qr13vgewqt] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-qr13vgewqt],
    .legal button:focus[b-qr13vgewqt] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-qr13vgewqt] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-qr13vgewqt], .legal h2[b-qr13vgewqt] {
            color: #0f172a !important;
        }

        .legal a[b-qr13vgewqt] {
            color: #1d4ed8 !important;
        }
}
/* /Pages/Seguridad.razor.rz.scp.css */
/* =========================
   Base de estilo (coherente con Home/FAQ)
   ========================= */
:host[b-yrjb7hrzg8] {
    --text: #e8ecf1;
    --muted: #a6afba;
    --accent: #9cc5ff;
    --card: #10151b;
    --border: #1f2732;
    --shadow: 0 14px 36px rgba(0,0,0,.38);
    --radius: 16px;
    --mw: 1100px;
}

/* Bandas full-bleed con gran separación */
.band[b-yrjb7hrzg8] {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 6rem 0 !important;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

    .band + .band[b-yrjb7hrzg8] {
        margin-top: 5rem !important;
    }

.band--1[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--2[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--3[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--4[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--5[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--6[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--7[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--8[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--9[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--10[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--11[b-yrjb7hrzg8] {
    background: #0e1217;
}

.band--12[b-yrjb7hrzg8] {
    background: #0e1217;
}

    .band--12 a[b-yrjb7hrzg8]{
        color:#fff;
        font-weight:600;
    }

    .band--cta[b-yrjb7hrzg8] {
        background: linear-gradient(180deg,#0f1318,#0a0d11);
    }

@media (min-width:1280px) {
    .band[b-yrjb7hrzg8] {
        padding: 6rem 0 !important;
    }

        .band + .band[b-yrjb7hrzg8] {
            margin-top: 5rem !important;
        }
}

/* Contenedor centrado */
.inner[b-yrjb7hrzg8] {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    color: var(--text);
}

/* Títulos */
.page-title[b-yrjb7hrzg8] {
    font-size: clamp(1.8rem,3.2vw,2.2rem);
    margin: 0 0 .5rem;
    color: #f2f6fb;
}

.page-sub[b-yrjb7hrzg8] {
    margin: 0 auto 1.5rem;
    color: var(--muted);
    max-width: 720px;
}

.group-title[b-yrjb7hrzg8] {
    margin: 0 0 1.2rem;
    font-size: clamp(1.35rem,2.6vw,1.8rem);
    color: #f2f6fb;
}

/* Listas */
.bullets[b-yrjb7hrzg8] {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text);
}

    .bullets li[b-yrjb7hrzg8] {
        padding: .6rem .4rem;
        border-bottom: 1px dashed #2b3440;
    }

        .bullets li:last-child[b-yrjb7hrzg8] {
            border-bottom: none;
        }

    .bullets.center[b-yrjb7hrzg8] {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

.check[b-yrjb7hrzg8] {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 900px;
    color: var(--text);
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

    .check li[b-yrjb7hrzg8] {
        position: relative;
        padding: .55rem .4rem .55rem 1.6rem;
        border-bottom: 1px dashed #2b3440;
    }

        .check li:last-child[b-yrjb7hrzg8] {
            border-bottom: none;
        }

    .check.wide[b-yrjb7hrzg8] {
        max-width: 1000px;
    }

    .check li[b-yrjb7hrzg8]::before {
        content: "✓";
        position: absolute;
        left: .4rem;
        top: .45rem;
        width: 18px;
        height: 18px;
        border-radius: 4px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border);
        background: #132034;
        color: #9cd2ff;
        font-size: .8rem;
    }

/* Duo grid (dos columnas centradas) */
.duo[b-yrjb7hrzg8] {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 520px));
    justify-content: center;
    column-gap: 2rem;
    row-gap: 1.4rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
}

.enum-block[b-yrjb7hrzg8] {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.1rem 1.25rem;
    text-align: left;
}

    .enum-block.single[b-yrjb7hrzg8] {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .enum-block h3[b-yrjb7hrzg8] {
        margin: 0 0 .6rem;
        font-size: 1.05rem;
        color: #f2f6fb;
    }

/* Enum numerada */
.enum[b-yrjb7hrzg8] {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 0 0 .7rem;
}

    .enum li[b-yrjb7hrzg8] {
        counter-increment: item;
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .6rem .4rem;
        border-bottom: 1px dashed #2b3440;
        color: var(--text);
    }

        .enum li:last-child[b-yrjb7hrzg8] {
            border-bottom: none;
        }

        .enum li[b-yrjb7hrzg8]::before {
            content: counter(item);
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: #1b2330;
            color: #d8e6ff;
            border: 1px solid var(--border);
            font-size: .9rem;
        }

/* Notas */
.note[b-yrjb7hrzg8] {
    color: var(--muted);
    margin: .6rem 0 0;
}

/* CTA final */
.cta[b-yrjb7hrzg8] {
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem 1.2rem;
}

    .cta h2[b-yrjb7hrzg8] {
        margin: 0 0 1rem;
        color: #f2f6fb;
    }

.cta__buttons[b-yrjb7hrzg8] {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
    .duo[b-yrjb7hrzg8] {
        grid-template-columns: 1fr;
        max-width: 640px;
    }
}
/* /Pages/TerminosCondiciones.razor.rz.scp.css */
/* legal.css — fondo global negro (html/body) */
:root[b-sh6nxp3qaw] {
    --fg: #e5e7eb; /* texto principal (gris claro) */
    --fg-muted: #94a3b8; /* texto secundario */
    --heading: #f8fafc; /* títulos */
    --link: #60a5fa; /* enlaces */
    --link-hover: #93c5fd;
    --border: #1f2937; /* bordes sutiles en dark */
    --card: #0b0f16; /* panel sobre negro */
    --shadow: 0 8px 24px rgba(0,0,0,.35);
}

.legal[b-sh6nxp3qaw] {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: var(--fg);
    max-width: 880px;
    margin: 2rem auto;
    padding: 1.25rem 1rem;
    background: var(--card); /* panel oscuro para contraste */
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

    .legal h1[b-sh6nxp3qaw] {
        font-size: 1.9rem;
        margin: 0 0 1rem 0;
        letter-spacing: -0.02em;
        color: var(--heading);
    }

    .legal h2[b-sh6nxp3qaw] {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.6rem 0;
        color: var(--heading);
    }

    .legal p[b-sh6nxp3qaw],
    .legal li[b-sh6nxp3qaw] {
        font-size: 0.975rem;
        margin: 0.55rem 0;
        color: var(--fg);
    }

    .legal ul[b-sh6nxp3qaw] {
        padding-left: 1.15rem;
        margin: 0.4rem 0 0.6rem 0;
    }

    .legal .meta[b-sh6nxp3qaw] {
        font-size: 0.875rem;
        color: var(--fg-muted);
        margin-bottom: 1rem;
    }

    .legal a[b-sh6nxp3qaw] {
        color: var(--link);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .legal a:hover[b-sh6nxp3qaw],
        .legal a:focus[b-sh6nxp3qaw] {
            color: var(--link-hover);
        }

    .legal strong[b-sh6nxp3qaw] {
        color: #ffffff;
    }

    /* Separadores sutiles para listas largas (opcional) */
    .legal hr[b-sh6nxp3qaw] {
        border: 0;
        height: 1px;
        background: var(--border);
        margin: 1rem 0;
    }

    /* Accesibilidad foco teclado */
    .legal a:focus[b-sh6nxp3qaw],
    .legal button:focus[b-sh6nxp3qaw] {
        outline: 2px solid var(--link);
        outline-offset: 2px;
    }

/* Impresión: fondo blanco para ahorrar tinta (opcional) */
@media print {
    .legal[b-sh6nxp3qaw] {
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border-color: #e5e7eb !important;
    }

        .legal h1[b-sh6nxp3qaw], .legal h2[b-sh6nxp3qaw] {
            color: #0f172a !important;
        }

        .legal a[b-sh6nxp3qaw] {
            color: #1d4ed8 !important;
        }
}
/* /Shared/ChatBubble.razor.rz.scp.css */
.chat-bubble[b-1oel8n7brg] {
    max-width: 75%;
    padding: 0.6rem 1rem;
    margin: 0.4rem 0;
    border-radius: 8px;
    word-wrap: break-word;
    font-size: 0.95rem;
    display: inline-block;
}

    .chat-bubble.propio[b-1oel8n7brg] {
        background-color: #1565c0;
        color: white;
        margin-left: auto;
        text-align: right;
        border-bottom-right-radius: 0;
    }

    .chat-bubble.ajeno[b-1oel8n7brg] {
        background-color: #444;
        color: white;
        margin-right: auto;
        text-align: left;
        border-bottom-left-radius: 0;
    }
/* /Shared/FooterMini.razor.rz.scp.css */
/* ===== Footer contenedor (full-bleed de fondo + borde con pseudo) ===== */
.hc-foot[b-qb1gryh73u] {
    position: relative;
    width: 100%; /* fondo/borde a ancho completo */
    padding: 0rem 1rem ;
    margin-top: 2rem;
    color: #e0e0e0;
    font-size: .95rem;
    border-top: 1px solid #2a2a2a;
}

    .hc-foot[b-qb1gryh73u]::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw; /* fondo y borde a ancho completo */
        top: 0;
        bottom: 0;
        background: #0a0a0a;
        box-shadow: inset 0 1px 0 #2a2a2a; /* borde superior */
        z-index: -1;
    }

/* ===== Grid 25 / 50 / 25 como la cabecera ===== */
.hc-foot__inner[b-qb1gryh73u] {
    box-sizing: border-box;
    /* FULL BLEED del contenido para que brand y extra toquen borde del viewport */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    /* sin padding lateral para pegar a los bordes */
    padding: .75rem 1rem;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,2fr) minmax(0,1fr); /* 25/50/25 */
    grid-template-areas: "brand nav extra";
    align-items: center;
    gap: .75rem;
}

/* IZQUIERDA: copy pegado a la izquierda */
.hc-foot__brand[b-qb1gryh73u] {
    grid-area: brand;
    justify-self: start; /* (no flex-end) */
    text-align: left;
    white-space: nowrap;
    padding-left: 0; /* sin margen lateral */
}

.copyRight[b-qb1gryh73u] {
    opacity: .65;
}

/* CENTRO: enlaces centrados SIEMPRE */
.hc-foot__nav[b-qb1gryh73u] {
    grid-area: nav;
    justify-self: center; /* centro de la columna del 50% */
    text-align: center;
}

.hc-foot__links[b-qb1gryh73u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .25rem .75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hc-foot__links li[b-qb1gryh73u] {
        position: relative;
        padding: 0 .25rem;
    }

        .hc-foot__links li + li[b-qb1gryh73u]::before {
            content: "|";
            margin-right: .75rem;
            opacity: .6;
        }

    .hc-foot__links a[b-qb1gryh73u] {
        color: #fff;
        text-decoration: none;
        padding: .25rem .25rem;
        border-radius: .35rem;
        opacity: .9;
    }

        .hc-foot__links a:hover[b-qb1gryh73u],
        .hc-foot__links a:focus[b-qb1gryh73u] {
            text-decoration: underline;
            opacity: 1;
            outline: none;
        }

/* DERECHA: By Marez Code pegado a la derecha */
.hc-foot__extra[b-qb1gryh73u] {
    grid-area: extra;
    justify-self: end; /* (no flex-start) */
    text-align: right;
    padding-right: 0; /* sin margen lateral */
}

.hc-foot__by[b-qb1gryh73u] {
    color: #fff;
    text-decoration: none;
    opacity: .65;
    padding: .25rem .25rem;
    border-radius: .35rem;
}

    .hc-foot__by:hover[b-qb1gryh73u],
    .hc-foot__by:focus[b-qb1gryh73u] {
        text-decoration: underline;
        opacity: 1;
    }

/* ===== Responsive: apilado en móvil =====
   - Arriba ENLACES centrados
   - Debajo fila 50% / 50%: copy (izq) y "By Marez Code" (dcha)
*/
@media (max-width: 768px) {

    .hc-foot__inner[b-qb1gryh73u] {
        /* corregido: unidad % */
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        padding: .75rem 0rem; /* un poco de aire en móviles */
        grid-template-columns: 1fr 1fr; /* dos columnas para la fila inferior */
        grid-template-areas:
            "nav nav" /* fila 1: enlaces centrados */
            "brand extra"; /* fila 2: 50 / 50 */
        text-align: center;
        gap: .5rem .35rem;
    }

    .hc-foot__nav[b-qb1gryh73u] {
        justify-self: center;
    }

    .hc-foot__brand[b-qb1gryh73u] {
        justify-self: end; /* izq en la fila 2 */
        text-align: left;
        padding-right: 1.1rem;
    }

    .hc-foot__extra[b-qb1gryh73u] {
        justify-self: start; /* dcha en la fila 2 */
        text-align: right;
        padding-left: 1.1rem;
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .hc-foot__links a[b-qb1gryh73u],
    .hc-foot__by[b-qb1gryh73u] {
        transition: none;
    }
}
/* /Shared/HeaderNav.razor.rz.scp.css */
/* ==========================================================================
   LAYOUT BASE (evita overflow horizontal global)
   ========================================================================== */
.hyperchat-main[b-hlwt08uyri] {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%; /* evita 100vw (overflow por scrollbar) */
    overflow-x: hidden; /* cinturón y tirantes */
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-family: system-ui, sans-serif;
}

/* ==========================================================================
   TOPBAR: GRID 3 COLUMNAS (Desktop) → [Brand] [Nav centrado] [Right]
   - En móvil pasa a 2 columnas: [Brand] [Burger]
   ========================================================================== */
.hc-topbar[b-hlwt08uyri] {
    /* Variables de layout */
    --hc-pad-inline: 1rem; /* padding horizontal del header */
    --hc-pad-block: .75rem; /* padding vertical del header */
    --hc-minbar-h: 3.5rem; /* altura mínima de la barra (contenidos) */
    /* Altura efectiva de la topbar = minbar + paddings verticales */
    --hc-topbar-h: calc(var(--hc-minbar-h) + 2 * var(--hc-pad-block));
    box-sizing: border-box;
    position: relative; /* referencia normal (solo para inline) */
    display: grid;
    grid-template-columns: minmax(0,3fr) minmax(0,4fr) minmax(0,3fr); /* ~30/40/30 sin overflow */
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: var(--hc-minbar-h);
    padding: var(--hc-pad-block) var(--hc-pad-inline);
    border-bottom: 1px solid #2a2a2a;
    background: #0a0a0a;
    color: #e0e0e0;
    z-index: 10; /* que quede por delante del contenido */
}

/* ==========================================================================
   CONTENEDOR 1: Brand (Logo + Título juntos, siempre)
   ========================================================================== */
.hc-brand[b-hlwt08uyri] {
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* ~10px entre logo y título */
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    white-space: nowrap;
}

    .hc-brand:focus[b-hlwt08uyri] {
        outline: 2px solid currentColor;
        outline-offset: 2px;
    }

.hc-logo[b-hlwt08uyri] {
    display: block;
    width: 70px; /* solicitado */
    height: 70px; /* solicitado */
    object-fit: contain;
}

.hc-title[b-hlwt08uyri] {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.4rem); /* +25% aprox vs base */
    line-height: 1.1;
}

/* ==========================================================================
   CONTENEDOR 2: Menú centrado (inline en desktop)
   ========================================================================== */
.hc-navwrap[b-hlwt08uyri] {
    grid-column: 2;
    justify-self: center; /* centrado exacto en su celda */
    max-width: 100%;
    overflow-x: hidden;
}

.hc-nav[b-hlwt08uyri] {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .hc-nav a[b-hlwt08uyri] {
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        opacity: .9;
    }

        .hc-nav a:hover[b-hlwt08uyri],
        .hc-nav a:focus[b-hlwt08uyri] {
            text-decoration: underline;
            opacity: 1;
        }

/* ==========================================================================
   CONTENEDOR 3: Derecha (“BETA” como enlace, por ahora desactivado)
   ========================================================================== */
.hc-right[b-hlwt08uyri] {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .02em;
    padding: .25rem .6rem;
    border: 1px solid #2a2a2a;
    border-radius: 999px; /* pill */
    text-decoration: none;
    color: #e0e0e0;
    opacity: .9;
    pointer-events: none; /* “enlace vacío” mientras no esté activo */
}

    .hc-right:hover[b-hlwt08uyri],
    .hc-right:focus[b-hlwt08uyri] {
        opacity: 1;
        border-color: #3a3a3a;
    }

/* ==========================================================================
   BOTÓN BURGER (solo visible en móvil)
   ========================================================================== */
.hc-burger[b-hlwt08uyri] {
    display: none; /* visible solo en móvil (se activa en @media) */
    width: 44px; /* área táctil recomendada */
    height: 44px;
    padding: 10px; /* separa las líneas del borde */
    box-sizing: border-box;
    border: 1px solid #2a2a2a; /* contorno sutil; quítalo si no lo quieres */
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px; /* distancia entre las 3 rayas */
}


    .hc-burger span[b-hlwt08uyri] {
        display: block;
        width: 100%;
        height: 3px; /* grosor de las rayas */
        background: #ffffff; /* color de las rayas (alto contraste) */
        border-radius: 3px;
        opacity: 0.95;
        transition: transform .18s ease, opacity .18s ease;
    }

/* ==========================================================================
   PANEL MÓVIL (drawer fijo) con botón CERRAR
   - Respetamos tu tamaño: right:0; top:0; width:50%; height:50%;
   - Se muestra cuando data-open="true".
   ========================================================================== */
@media (max-width: 768px) {
    /* La barra pasa a 2 columnas: Brand (izq) + Burger (dcha) */
    .hc-topbar[b-hlwt08uyri] {
        grid-template-columns: 1fr auto;
        align-items: center;
        z-index: 20;
    }

    .hc-brand[b-hlwt08uyri] {
        grid-column: 1;
        justify-self: start;
        text-align: left;
        flex-direction: row; /* NO invertir */
        gap: 10px;
        align-items: center;
        min-width: 0;
    }

    .hc-title[b-hlwt08uyri] {
        font-size: clamp(1.1rem, 4vw, 1.25rem);
    }

    /* BETA: visible y colocado entre título y burger */
    .hc-right[b-hlwt08uyri] {
        grid-column: 2; /* va en medio */
        display: inline-flex; /* antes lo ocultábamos en móvil */
        align-items: center;
        justify-content: center;
        justify-self: center; /* centrado en su celda */
        padding: .2rem .5rem; /* un poco más compacto que desktop */
        font-size: .85rem;
        border-radius: 999px;
        margin-left: .75rem;
        margin-right: .15rem;
        pointer-events: none;
    }

    .hc-burger[b-hlwt08uyri] {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
        margin-right: .5rem;
    }

    /* Drawer fijo (cerrado por defecto) */
    .hc-navwrap[b-hlwt08uyri] {
        position: fixed;
        top: 0;
        right: 0; /* pegado al borde derecho */
        width: 50%; /* lo que pediste */
        height: 50%; /* lo que pediste */
        background: #1d1d1d;
        box-sizing: border-box;
        border-top-left-radius: 10px;
        border-top-right-radius: 0; /* opcional: esa esquina suele ir a 0 en un drawer pegado al borde */
        border-bottom: 1px solid #2a2a2a;
        box-shadow: 0 10px 24px rgba(0,0,0,.35);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform .16s ease, opacity .16s ease;
        z-index: 999;
        padding: 3rem 1rem 1rem; /* espacio para el botón de cerrar arriba */
    }

        /* Abierto */
        .hc-navwrap[data-open="true"][b-hlwt08uyri] {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        /* Contenido del menú en columna dentro del drawer */
        .hc-navwrap .hc-nav[b-hlwt08uyri] {
            display: flex;
            flex-direction: column;
            gap: .75rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

    /* Botón CERRAR (arriba derecha dentro del panel) */
    .hc-close[b-hlwt08uyri] {
        position: absolute;
        top: .5rem;
        right: .5rem;
        width: 2.25rem; /* área táctil generosa */
        height: 2.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        line-height: 1;
        border: 1px solid #2a2a2a;
        border-radius: .6rem;
        background: rgba(255,255,255,0.06);
        color: #e0e0e0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

        .hc-close:hover[b-hlwt08uyri],
        .hc-close:focus[b-hlwt08uyri] {
            background: rgba(255,255,255,0.1);
            border-color: #3a3a3a;
            outline: none;
        }
}

/* ==========================================================================
   DESKTOP (≥769px)
   - Burger oculto
   - Nav inline visible por defecto
   ========================================================================== */
@media (min-width: 769px) {
    .hc-burger[b-hlwt08uyri] {
        display: none;
    }

    .hc-navwrap[b-hlwt08uyri] {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        position: static;
        width: auto;
        padding: 0; /* el padding del panel lo reservamos sólo para el drawer */
    }

    /* Ocultamos el botón cerrar en desktop (no hace falta inline) */
    .hc-close[b-hlwt08uyri] {
        display: none;
    }
}

/* ==========================================================================
   ACCESIBILIDAD: respeta reducción de movimiento
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .hc-navwrap[b-hlwt08uyri] {
        transition: none;
    }

    .hc-close[b-hlwt08uyri] {
        transition: none;
    }
}


/* Quita el outline cuando el foco viene por ratón/táctil */
.hc-topbar a:focus:not(:focus-visible)[b-hlwt08uyri],
.hc-burger:focus:not(:focus-visible)[b-hlwt08uyri],
.hc-close:focus:not(:focus-visible)[b-hlwt08uyri] {
    outline: none;
}

/* Mantén un foco visible para accesibilidad cuando se usa teclado */
.hc-topbar a:focus-visible[b-hlwt08uyri],
.hc-burger:focus-visible[b-hlwt08uyri],
.hc-close:focus-visible[b-hlwt08uyri] {
    outline: 2px solid #9cc5ff;
    outline-offset: 3px;
    border-radius: 10px; /* opcional, para que se vea suave */
}

/* El que te causa el rectángulo: desactívalo y usa focus-visible */
.hc-brand:focus[b-hlwt08uyri] {
    outline: none;
}

.hc-brand:focus-visible[b-hlwt08uyri] {
    outline: 2px solid #9cc5ff;
    outline-offset: 3px;
    border-radius: 10px;
}

/* Quita el destello gris en móviles al tocar */
.hc-topbar a[b-hlwt08uyri], .hc-burger[b-hlwt08uyri], .hc-close[b-hlwt08uyri] {
    -webkit-tap-highlight-color: transparent;
}
/* /Shared/ModalSistema.razor.rz.scp.css */
/* === Backdrop (capa oscura a pantalla completa) === */
.hc-modal-backdrop[b-660tg9rsu1] {
    position: fixed;
    inset: 0; /* top/right/bottom/left: 0 */
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000; /* por encima del resto */
}

/* === Caja de la modal === */
.hc-modal[b-660tg9rsu1] {
    background: #1a1a1a;
    color: #fff;
    width: min(92vw, 520px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
    padding: 1rem 1rem .75rem;
}

/* === Cuerpo / mensaje === */
.hc-modal-body[b-660tg9rsu1] {
    padding: .5rem 1rem;
}

.hc-modal-msg[b-660tg9rsu1] {
    margin: 0;
    white-space: pre-wrap; /* respeta saltos de línea */
    background: #121212;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: .75rem;
    max-height: 50vh;
    overflow: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    font-size: .95rem;
}

/* === Zona de acciones (centradas) === */
.hc-modal-actions[b-660tg9rsu1] {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin: .75rem 0 0;
}

    /* Botón Aceptar (azul) */
    .hc-modal-actions .btn-pri[b-660tg9rsu1] {
        background: #1e88e5;
        color: #fff;
        border: 1px solid #1e88e5;
        padding: .55rem 1.1rem;
        font-size: .95rem;
        border-radius: 6px;
        cursor: pointer;
    }

        .hc-modal-actions .btn-pri:hover[b-660tg9rsu1] {
            background: #1565c0;
            border-color: #1565c0;
        }

    /* Botón Cancelar (contraste) */
    .hc-modal-actions .btn-sec[b-660tg9rsu1] {
        background: #b20202;
        color: #f0f0f0;
        border: 1px solid #6b6b6b;
        padding: .55rem 1.1rem;
        font-size: .95rem;
        border-radius: 6px;
        cursor: pointer;
    }

        .hc-modal-actions .btn-sec:hover[b-660tg9rsu1] {
            background: #3a3a3a;
            border-color: #8a8a8a;
        }
