/* /Components/FAQ2PROFESIONAL.razor.rz.scp.css */
.faq-section-label[b-ww6a4cx2k8] {
    display: inline-block;
    margin-bottom: 10px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-section-title[b-ww6a4cx2k8] {
    max-width: 750px;
    margin: 0 auto 12px;
    color: #1f2933;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.faq-section-description[b-ww6a4cx2k8] {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-section[b-ww6a4cx2k8] {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

    .faq-section .container[b-ww6a4cx2k8] {
        width: 100%;
    }

/* ========================= */
/* TABS */
/* ========================= */

.tabs-container[b-ww6a4cx2k8] {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(4,1fr);
    width: fit-content;
    background: #ffffff;
    border-radius: 22px;
    padding: 6px;
    margin-inline: auto;
}

.slider[b-ww6a4cx2k8] {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #8eb8f5;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.tab-button[b-ww6a4cx2k8] {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 600;
    color: #64748b;
    transition: .25s;
    white-space: nowrap;
}

    .tab-button i[b-ww6a4cx2k8] {
        margin-right: 8px;
    }

    .tab-button:hover[b-ww6a4cx2k8] {
        color: #0f172a;
    }

    .tab-button.active[b-ww6a4cx2k8] {
        color: #0f172a;
    }

/* ========================= */
/* FAQ */
.faq-list[b-ww6a4cx2k8] {
    max-width: 900px;
    margin: 40px auto 0;
    animation: aparecer-b-ww6a4cx2k8 .45s ease;
}

.faq-card[b-ww6a4cx2k8] {
    background: white;
    border-radius: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    overflow: hidden;
    transition: .35s;
}

    .faq-card:hover[b-ww6a4cx2k8] {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.faq-header[b-ww6a4cx2k8] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

    .faq-header i[b-ww6a4cx2k8] {
        font-size: 1.2rem;
        color: #2563eb;
        transition: .25s;
    }

.faq-body[b-ww6a4cx2k8] {
    padding: 0 30px 30px;
    color: #64748b;
    line-height: 1.8;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes aparecer-b-ww6a4cx2k8 {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.97);
        filter: blur(8px);
    }

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

/* ========================= */
/* TABLETS */
/* ========================= */

@media(max-width:991px) {

    .faq-section[b-ww6a4cx2k8] {
        min-height: auto;
        display: block;
        padding: 80px 0;
    }

    .tabs-container[b-ww6a4cx2k8] {
        display: flex;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px;
        margin-inline: 0;
        scrollbar-width: none;
    }

        .tabs-container[b-ww6a4cx2k8]::-webkit-scrollbar {
            display: none;
        }

    .slider[b-ww6a4cx2k8] {
        display: none;
    }

    .tab-button[b-ww6a4cx2k8] {
        flex-shrink: 0;
        min-width: max-content;
        padding: 12px 43px;
        font-size: .95rem;
    }

        .tab-button.active[b-ww6a4cx2k8] {
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,.06);
        }

    .faq-list[b-ww6a4cx2k8] {
        margin-top: 40px;
    }

    .faq-header[b-ww6a4cx2k8] {
        padding: 22px;
        font-size: 1rem;
    }

    .faq-body[b-ww6a4cx2k8] {
        padding: 0 22px 22px;
    }
}

/* iPhone XR / 14 Plus */

@media(max-width:430px) {

    .tabs-container[b-ww6a4cx2k8] {
        gap: 8px;
        padding: 8px;
    }

    .tab-button[b-ww6a4cx2k8] {
        padding: 10px 10px;
        font-size: .88rem;
        border-radius: 15px;
    }

    .faq-header[b-ww6a4cx2k8] {
        font-size: .95rem;
    }
}

/* iPhone Pro */

@media(max-width:390px) {

    .tab-button[b-ww6a4cx2k8] {
        padding: 9px 8px;
        font-size: .84rem;
        border-radius: 14px;
    }
}

/* iPhone X / 11 Pro */

@media(max-width:375px) {

    .tab-button[b-ww6a4cx2k8] {
        padding: 8px 8px;
        font-size: .80rem;
        border-radius: 13px;
    }

    .tabs-container[b-ww6a4cx2k8] {
        gap: 6px;
    }

    .faq-header[b-ww6a4cx2k8] {
        padding: 20px;
        font-size: .92rem;
    }

    .faq-body[b-ww6a4cx2k8] {
        padding: 0 20px 20px;
        font-size: .9rem;
    }
}

/* Android pequeños / iPhone SE */

@media(max-width:360px) {

    .tab-button[b-ww6a4cx2k8] {
        padding: 7px 9px;
        font-size: .76rem;
        border-radius: 12px;
    }

    .tabs-container[b-ww6a4cx2k8] {
        gap: 5px;
        padding: 6px;
    }

    .faq-header[b-ww6a4cx2k8] {
        padding: 18px;
        font-size: .9rem;
    }
}

/* Muy pequeños */

@media(max-width:320px) {

    .tab-button[b-ww6a4cx2k8] {
        padding: 6px 6px;
        font-size: .72rem;
    }

    .tabs-container[b-ww6a4cx2k8] {
        gap: 4px;
        padding: 4px;
    }

    .faq-header[b-ww6a4cx2k8] {
        padding: 16px;
        font-size: .85rem;
    }

    .faq-body[b-ww6a4cx2k8] {
        padding: 0 16px 16px;
        font-size: .85rem;
    }
}
/* /Components/Home/DemoSection.razor.rz.scp.css */
/* ========================================================= */
/* DEMO SECTION                                               */
/* ========================================================= */

.demo-section[b-j7hxr10fvr] {
    position: relative;
    padding: 90px 20px;
    background: #f8fafc;
    overflow: hidden;
}


    .demo-section[b-j7hxr10fvr]::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -220px;
        right: -180px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .05);
        pointer-events: none;
    }


    .demo-section[b-j7hxr10fvr]::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        bottom: -200px;
        left: -180px;
        border-radius: 50%;
        background: rgba(14, 165, 233, .04);
        pointer-events: none;
    }


/* ========================================================= */
/* CONTAINER                                                   */
/* ========================================================= */

.demo-container[b-j7hxr10fvr] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}


/* ========================================================= */
/* HEADER                                                      */
/* ========================================================= */

.demo-header[b-j7hxr10fvr] {
    max-width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}


.demo-badge[b-j7hxr10fvr] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: .75rem;
    font-weight: 700;
}


    .demo-badge i[b-j7hxr10fvr] {
        font-size: .85rem;
    }


.demo-header h2[b-j7hxr10fvr] {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp( 2rem, 4vw, 3rem );
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.04em;
}


.demo-header p[b-j7hxr10fvr] {
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}


/* ========================================================= */
/* CARD                                                        */
/* ========================================================= */

.demo-card[b-j7hxr10fvr] {
    padding: 38px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba( 15, 23, 42, .06 );
}


/* ========================================================= */
/* FORM                                                        */
/* ========================================================= */

.demo-form[b-j7hxr10fvr] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


.demo-field[b-j7hxr10fvr] {
    min-width: 0;
}


.demo-field-full[b-j7hxr10fvr] {
    grid-column: 1 / -1;
}


.demo-field label[b-j7hxr10fvr] {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: .82rem;
    font-weight: 650;
}


/* ========================================================= */
/* INPUTS                                                      */
/* ========================================================= */

.demo-input-wrapper[b-j7hxr10fvr],
.demo-textarea-wrapper[b-j7hxr10fvr] {
    position: relative;
}


    .demo-input-wrapper > i[b-j7hxr10fvr],
    .demo-textarea-wrapper > i[b-j7hxr10fvr] {
        position: absolute;
        top: 50%;
        left: 15px;
        z-index: 2;
        color: #94a3b8;
        font-size: .95rem;
        pointer-events: none;
        transform: translateY(-50%);
    }


    .demo-textarea-wrapper > i[b-j7hxr10fvr] {
        top: 17px;
        transform: none;
    }


    .demo-input-wrapper .form-control[b-j7hxr10fvr] {
        height: 48px;
        padding-left: 43px;
        border: 1px solid #e2e8f0;
        border-radius: 11px;
        background: #ffffff;
        color: #0f172a;
        font-size: .88rem;
        box-shadow: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }


    .demo-textarea-wrapper .form-control[b-j7hxr10fvr] {
        min-height: 125px;
        padding-top: 13px;
        padding-left: 43px;
        border: 1px solid #e2e8f0;
        border-radius: 11px;
        background: #ffffff;
        color: #0f172a;
        font-size: .88rem;
        resize: vertical;
        box-shadow: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }


        .demo-input-wrapper .form-control[b-j7hxr10fvr]::placeholder,
        .demo-textarea-wrapper .form-control[b-j7hxr10fvr]::placeholder {
            color: #b0bac7;
        }


        .demo-input-wrapper .form-control:focus[b-j7hxr10fvr],
        .demo-textarea-wrapper .form-control:focus[b-j7hxr10fvr] {
            border-color: #93c5fd;
            box-shadow: 0 0 0 4px rgba( 37, 99, 235, .08 );
        }


    .demo-input-wrapper:focus-within > i[b-j7hxr10fvr],
    .demo-textarea-wrapper:focus-within > i[b-j7hxr10fvr] {
        color: #2563eb;
    }


/* ========================================================= */
/* VALIDATION                                                  */
/* ========================================================= */

[b-j7hxr10fvr] .validation-message {
    display: block;
    margin-top: 6px;
    color: #dc2626;
    font-size: .75rem;
}


/* ========================================================= */
/* BUTTON                                                      */
/* ========================================================= */

.demo-button[b-j7hxr10fvr] {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 4px;
    padding: 12px 20px;
    border: 1px solid #2563eb;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba( 37, 99, 235, .15 );
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}


    .demo-button:hover:not(:disabled)[b-j7hxr10fvr] {
        background: #1d4ed8;
        border-color: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba( 37, 99, 235, .22 );
    }


    .demo-button:disabled[b-j7hxr10fvr] {
        opacity: .75;
        cursor: not-allowed;
    }


/* ========================================================= */
/* SECURITY                                                    */
/* ========================================================= */

.demo-security[b-j7hxr10fvr] {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #94a3b8;
    font-size: .7rem;
    text-align: center;
}


    .demo-security i[b-j7hxr10fvr] {
        color: #16a34a;
        font-size: .85rem;
    }


/* ========================================================= */
/* SUCCESS                                                     */
/* ========================================================= */

.demo-success-container[b-j7hxr10fvr] {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
}


.demo-success-icon[b-j7hxr10fvr] {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba( 22, 163, 74, .12 );
}


.demo-success-container h2[b-j7hxr10fvr] {
    margin-bottom: 10px;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
}


.demo-success-container p[b-j7hxr10fvr] {
    max-width: 500px;
    margin: 0 auto;
    color: #64748b;
    font-size: .95rem;
    line-height: 1.7;
}


/* ========================================================= */
/* TABLET                                                      */
/* ========================================================= */

@media (max-width: 767px) {

    .demo-section[b-j7hxr10fvr] {
        padding: 70px 18px;
    }


    .demo-card[b-j7hxr10fvr] {
        padding: 28px 22px;
        border-radius: 20px;
    }


    .demo-form[b-j7hxr10fvr] {
        grid-template-columns: 1fr;
        gap: 18px;
    }


    .demo-field-full[b-j7hxr10fvr] {
        grid-column: auto;
    }


    .demo-button[b-j7hxr10fvr] {
        grid-column: auto;
    }


    .demo-security[b-j7hxr10fvr] {
        grid-column: auto;
    }
}


/* ========================================================= */
/* MOBILE                                                      */
/* ========================================================= */

@media (max-width: 430px) {

    .demo-section[b-j7hxr10fvr] {
        padding: 60px 14px;
    }


    .demo-header[b-j7hxr10fvr] {
        margin-bottom: 30px;
    }


        .demo-header h2[b-j7hxr10fvr] {
            font-size: 1.9rem;
        }


        .demo-header p[b-j7hxr10fvr] {
            font-size: .9rem;
        }


    .demo-card[b-j7hxr10fvr] {
        padding: 24px 18px;
        border-radius: 18px;
    }


    .demo-success-container[b-j7hxr10fvr] {
        padding: 35px 10px;
    }


        .demo-success-container h2[b-j7hxr10fvr] {
            font-size: 1.7rem;
        }
}
/* /Components/Home/FAQ2.razor.rz.scp.css */
.faq-section-label[b-frwfsne08s] {
    display: inline-block;
    margin-bottom: 10px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-section-title[b-frwfsne08s] {
    max-width: 750px;
    margin: 0 auto 12px;
    color: #1f2933;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.faq-section-description[b-frwfsne08s] {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}
.faq-section[b-frwfsne08s] {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

    .faq-section .container[b-frwfsne08s] {
        width: 100%;
    }

/* ========================= */
/* TABS */
/* ========================= */

.tabs-container[b-frwfsne08s] {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(3,1fr);
    width: fit-content;
    background: #ffffff;
    border-radius: 22px;
    padding: 6px;
    margin-inline: auto;
}

.slider[b-frwfsne08s] {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #8eb8f5;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.tab-button[b-frwfsne08s] {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 600;
    color: #64748b;
    transition: .25s;
    white-space: nowrap;
}

    .tab-button i[b-frwfsne08s] {
        margin-right: 8px;
    }

    .tab-button:hover[b-frwfsne08s] {
        color: #0f172a;
    }

    .tab-button.active[b-frwfsne08s] {
        color: #0f172a;
    }

/* ========================= */
/* FAQ */
.faq-list[b-frwfsne08s] {
    max-width: 900px;
    margin: 40px auto 0;
    animation: aparecer-b-frwfsne08s .45s ease;
}

.faq-card[b-frwfsne08s] {
    background: white;
    border-radius: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    overflow: hidden;
    transition: .35s;
}

    .faq-card:hover[b-frwfsne08s] {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.faq-header[b-frwfsne08s] {
    width: 100%;
    border: none;
    background: transparent;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

    .faq-header i[b-frwfsne08s] {
        font-size: 1.2rem;
        color: #2563eb;
        transition: .25s;
    }

.faq-body[b-frwfsne08s] {
    padding: 0 30px 30px;
    color: #64748b;
    line-height: 1.8;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes aparecer-b-frwfsne08s {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.97);
        filter: blur(8px);
    }

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

/* ========================= */
/* TABLETS */
/* ========================= */

@media(max-width:991px) {

    .faq-section[b-frwfsne08s] {
        min-height: auto;
        display: block;
        padding: 80px 0;
    }

    .tabs-container[b-frwfsne08s] {
        display: flex;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px;
        margin-inline: 0;
        scrollbar-width: none;
    }

        .tabs-container[b-frwfsne08s]::-webkit-scrollbar {
            display: none;
        }

    .slider[b-frwfsne08s] {
        display: none;
    }

    .tab-button[b-frwfsne08s] {
        flex-shrink: 0;
        min-width: max-content;
        padding: 12px 43px;
        font-size: .95rem;
    }

        .tab-button.active[b-frwfsne08s] {
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,.06);
        }

    .faq-list[b-frwfsne08s] {
        margin-top: 40px;
    }

    .faq-header[b-frwfsne08s] {
        padding: 22px;
        font-size: 1rem;
    }

    .faq-body[b-frwfsne08s] {
        padding: 0 22px 22px;
    }
}

/* iPhone XR / 14 Plus */

@media(max-width:430px) {

    .tabs-container[b-frwfsne08s] {
        gap: 8px;
        padding: 8px;
    }

    .tab-button[b-frwfsne08s] {
        padding: 10px 10px;
        font-size: .88rem;
        border-radius: 15px;
    }

    .faq-header[b-frwfsne08s] {
        font-size: .95rem;
    }
}

/* iPhone Pro */

@media(max-width:390px) {

    .tab-button[b-frwfsne08s] {
        padding: 9px 8px;
        font-size: .84rem;
        border-radius: 14px;
    }
}

/* iPhone X / 11 Pro */

@media(max-width:375px) {

    .tab-button[b-frwfsne08s] {
        padding: 8px 8px;
        font-size: .80rem;
        border-radius: 13px;
    }

    .tabs-container[b-frwfsne08s] {
        gap: 6px;
    }

    .faq-header[b-frwfsne08s] {
        padding: 20px;
        font-size: .92rem;
    }

    .faq-body[b-frwfsne08s] {
        padding: 0 20px 20px;
        font-size: .9rem;
    }
}

/* Android pequeños / iPhone SE */

@media(max-width:360px) {

    .tab-button[b-frwfsne08s] {
        padding: 7px 9px;
        font-size: .76rem;
        border-radius: 12px;
    }

    .tabs-container[b-frwfsne08s] {
        gap: 5px;
        padding: 6px;
    }

    .faq-header[b-frwfsne08s] {
        padding: 18px;
        font-size: .9rem;
    }
}

/* Muy pequeños */

@media(max-width:320px) {

    .tab-button[b-frwfsne08s] {
        padding: 6px 6px;
        font-size: .72rem;
    }

    .tabs-container[b-frwfsne08s] {
        gap: 4px;
        padding: 4px;
    }

    .faq-header[b-frwfsne08s] {
        padding: 16px;
        font-size: .85rem;
    }

    .faq-body[b-frwfsne08s] {
        padding: 0 16px 16px;
        font-size: .85rem;
    }
}
/* /Components/Home/FaqSection.razor.rz.scp.css */
/* ===================================================== */
/* RESET */
/* ===================================================== */

*[b-urododz62n],
*[b-urododz62n]::before,
*[b-urododz62n]::after {
    box-sizing: border-box;
}

html[b-urododz62n],
body[b-urododz62n] {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}


/* ===================================================== */
/* WHATSAPP */
/* ===================================================== */

.whatsapp-button[b-urododz62n] {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    z-index: 3000;
    transition: .3s;
    animation: whatsappPulse-b-urododz62n 2.5s infinite;
}

    .whatsapp-button:hover[b-urododz62n] {
        transform: scale(1.08);
        color: white;
        box-shadow: 0 20px 45px rgba(37, 211, 102, .45);
    }

    .whatsapp-button:active[b-urododz62n] {
        transform: scale(.95);
    }

@keyframes whatsappPulse-b-urododz62n {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* ===================================================== */
/* FAQ PAGE */
/* ===================================================== */

.faq-page[b-urododz62n] {
    width: 100%;
    min-height: 100vh;
    padding: 90px 0 100px;
    background: #f8fafb;
    box-sizing: border-box;
}

    .faq-page .container[b-urododz62n] {
        width: 100%;
    }


/* ===================================================== */
/* HEADER */
/* ===================================================== */

.faq-page-header[b-urododz62n] {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.faq-section-label[b-urododz62n] {
    display: inline-block;
    margin-bottom: 12px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.faq-section-title[b-urododz62n] {
    margin: 0 auto 16px;
    color: #1f2933;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
}

.faq-section-description[b-urododz62n] {
    max-width: 680px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ===================================================== */
/* CATEGORÍAS */
/* ===================================================== */

.faq-categories[b-urododz62n] {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 45px;
}

    .faq-categories .tabs-container[b-urododz62n] {
        position: relative;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        width: min(100%, 850px);
        padding: 6px;
        background: #eef3f5;
        border-radius: 22px;
    }

    .faq-categories .slider[b-urododz62n] {
        position: absolute;
        top: 6px;
        left: 6px;
        height: calc(100% - 12px);
        background: #4d8799 !important;
        border-radius: 17px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
        transition: transform .35s cubic-bezier(.22, 1, .36, 1);
    }

    .faq-categories .tab-button[b-urododz62n] {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-width: 0;
        min-height: 48px;
        padding: 10px 14px;
        border: 0;
        background: transparent;
        border-radius: 17px;
        color: #000000;
        font-size: .85rem;
        font-weight: 600;
        white-space: nowrap;
        transition: color .25s ease, background .25s ease;
    }

        .faq-categories .tab-button i[b-urododz62n] {
            flex-shrink: 0;
            font-size: 1rem;
        }

        .faq-categories .tab-button.active[b-urododz62n] {
            color: #000000;
        }


/* ===================================================== */
/* FAQ LIST */
/* ===================================================== */

.faq-list[b-urododz62n] {
    width: min(100%, 850px);
    margin: 0 auto;
}

.faq-card[b-urododz62n] {
    overflow: hidden;
    width: 100%;
    margin-bottom: 14px;
    background: white;
    border: 1px solid #e7edef;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(31, 41, 51, .04);
}

.faq-header[b-urododz62n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #26343b;
    text-align: left;
    font-size: .98rem;
    font-weight: 700;
}

    .faq-header:hover[b-urododz62n] {
        background: #fafcfd;
    }

    .faq-header i[b-urododz62n] {
        flex-shrink: 0;
        margin-left: 20px;
        color: #4d8799;
        font-size: 1.1rem;
    }

.faq-body[b-urododz62n] {
    padding: 0 24px 23px;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.7;
}


/* ===================================================== */
/* AYUDA */
/* ===================================================== */

.faq-help[b-urododz62n] {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(100%, 850px);
    margin: 55px auto 0;
    padding: 25px 28px;
    background: white;
    border: 1px solid #e7edef;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(31, 41, 51, .05);
}

.faq-help-icon[b-urododz62n] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #edf6f8;
    color: #4d8799;
    font-size: 1.4rem;
}

.faq-help-content[b-urododz62n] {
    flex: 1;
    min-width: 0;
}

    .faq-help-content h3[b-urododz62n] {
        margin: 0 0 4px;
        color: #26343b;
        font-size: 1rem;
        font-weight: 700;
    }

    .faq-help-content p[b-urododz62n] {
        margin: 0;
        color: #718087;
        font-size: .88rem;
    }

.faq-help-button[b-urododz62n] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 11px 18px;
    border-radius: 12px;
    background: #4d8799;
    color: white;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

    .faq-help-button:hover[b-urododz62n] {
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 7px 18px rgba(77, 135, 153, .2);
    }


/* ===================================================== */
/* TABLET */
/* ===================================================== */

@media (max-width: 992px) {

    .faq-categories .tabs-container[b-urododz62n] {
        width: 100%;
    }

    .faq-categories .tab-button[b-urododz62n] {
        padding: 10px 8px;
        font-size: .78rem;
    }
}


/* ===================================================== */
/* MOBILE */
/* ===================================================== */

@media (max-width: 768px) {

    /* ============================================== */
    /* PAGE */
    /* ============================================== */

    .faq-page[b-urododz62n] {
        width: 100%;
        min-height: 100vh;
        padding: 60px 0 70px;
        overflow-x: hidden;
    }

        .faq-page .container[b-urododz62n] {
            width: 100%;
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }


    /* ============================================== */
    /* WHATSAPP */
    /* ============================================== */

    .whatsapp-button[b-urododz62n] {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
        font-size: 1.8rem;
    }


    /* ============================================== */
    /* HEADER */
    /* ============================================== */

    .faq-page-header[b-urododz62n] {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .faq-section-label[b-urododz62n] {
        font-size: .72rem;
        letter-spacing: 1.2px;
    }

    .faq-section-title[b-urododz62n] {
        max-width: 100%;
        font-size: 2rem;
        line-height: 1.2;
    }

    .faq-section-description[b-urododz62n] {
        max-width: 100%;
        font-size: .95rem;
        line-height: 1.6;
    }


    /* ============================================== */
    /* CATEGORÍAS MOBILE */
    /* ============================================== */

    .faq-categories[b-urododz62n] {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 35px;
    }

        .faq-categories .tabs-container[b-urododz62n] {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            width: 100%;
            max-width: 100%;
            gap: 10px;
            padding: 0;
            background: transparent;
        }

        /* Ocultamos el slider en móvil */

        .faq-categories .slider[b-urododz62n] {
            display: none;
        }

        /* Cada categoría es un botón independiente */

        .faq-categories .tab-button[b-urododz62n] {
            width: 100%;
            min-width: 0;
            min-height: 52px;
            padding: 10px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: white;
            border: 1px solid #dfe8eb;
            border-radius: 14px;
            color: #52636a;
            font-size: .78rem;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            box-shadow: 0 3px 10px rgba(31, 41, 51, .05);
            transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
        }

            /* Iconos */

            .faq-categories .tab-button i[b-urododz62n] {
                flex-shrink: 0;
                font-size: .95rem;
            }

            /* Al tocar */

            .faq-categories .tab-button:active[b-urododz62n] {
                transform: scale(.96);
            }

            /* Categoría seleccionada */

            .faq-categories .tab-button.active[b-urododz62n] {
                background: #4d8799;
                border-color: #4d8799;
                color: white;
                box-shadow: 0 6px 16px rgba(77, 135, 153, .25);
            }

            /* Quinta categoría ocupa toda la fila */

            .faq-categories .tab-button:last-child[b-urododz62n] {
                grid-column: 1 / -1;
            }
    

    /* ============================================== */
    /* FAQ */
    /* ============================================== */

    .faq-list[b-urododz62n] {
        width: 100%;
        max-width: 100%;
    }

    .faq-card[b-urododz62n] {
        width: 100%;
        margin-bottom: 12px;
        border-radius: 16px;
    }

    .faq-header[b-urododz62n] {
        min-width: 0;
        padding: 19px;
        font-size: .9rem;
    }

        .faq-header span[b-urododz62n] {
            min-width: 0;
            padding-right: 5px;
            line-height: 1.4;
        }

        .faq-header i[b-urododz62n] {
            margin-left: 12px;
            font-size: 1rem;
        }

    .faq-body[b-urododz62n] {
        padding: 0 19px 20px;
        font-size: .88rem;
        line-height: 1.65;
    }


    /* ============================================== */
    /* AYUDA */
    /* ============================================== */

    .faq-help[b-urododz62n] {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        gap: 14px;
        margin-top: 40px;
        padding: 22px;
    }

    .faq-help-icon[b-urododz62n] {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1.2rem;
    }

    .faq-help-content[b-urododz62n] {
        flex: 1;
        min-width: 0;
    }

        .faq-help-content h3[b-urododz62n] {
            font-size: .95rem;
        }

        .faq-help-content p[b-urododz62n] {
            font-size: .82rem;
            line-height: 1.5;
        }

    .faq-help-button[b-urododz62n] {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }
}


/* ===================================================== */
/* MOBILE PEQUEÑO */
/* ===================================================== */

@media (max-width: 400px) {

    .faq-page[b-urododz62n] {
        padding-top: 50px;
    }

    .faq-section-title[b-urododz62n] {
        font-size: 1.75rem;
    }

    .faq-section-description[b-urododz62n] {
        font-size: .9rem;
    }

    .faq-categories .tab-button[b-urododz62n] {
        padding: 8px 5px;
        font-size: .72rem;
    }

        .faq-categories .tab-button i[b-urododz62n] {
            font-size: .82rem;
        }

    .faq-header[b-urododz62n] {
        padding: 17px;
        font-size: .86rem;
    }

    .faq-body[b-urododz62n] {
        padding: 0 17px 18px;
        font-size: .84rem;
    }

    .faq-help[b-urododz62n] {
        padding: 18px;
    }

    .whatsapp-button[b-urododz62n] {
        width: 54px;
        height: 54px;
        right: 15px;
        bottom: 15px;
        font-size: 1.6rem;
    }
}
/* /Components/Home/FeaturesSection.razor.rz.scp.css */
.features-section-label[b-nwxctmgwcv] {
    display: inline-block;
    margin-bottom: 10px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.features-section-title[b-nwxctmgwcv] {
    max-width: 800px;
    margin: 0 auto 12px;
    color: #1f2933;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.features-section-description[b-nwxctmgwcv] {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}
.container h2[b-nwxctmgwcv]{
    color: #20343b;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
}

.features-section[b-nwxctmgwcv] {
    min-height: 30vh;
    display: flex;
    align-items: center;
    padding: 0px;
}
    .features-section .container[b-nwxctmgwcv] {
        width: 100%;
    }

.tabs-container[b-nwxctmgwcv] {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(4,1fr);
    width: fit-content;
    background: #e4edf8;
    border-radius: 22px;
    padding: 6px;
    margin-inline: auto;
}

.slider[b-nwxctmgwcv] {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #4d8799 !important;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.tab[b-nwxctmgwcv] {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 14px 44px;
    border-radius: 18px;
    font-weight: 600;
    color: #64748b;
    transition: .25s;
    white-space: nowrap;
}

    .tab:hover[b-nwxctmgwcv] {
        color: #0f172a;
    }

    .tab.active[b-nwxctmgwcv] {
        color: #0f172a;
    }

.features-wrapper[b-nwxctmgwcv] {
    margin-top: 50px;
    animation: aparecer-b-nwxctmgwcv .45s ease;
}

.feature-card[b-nwxctmgwcv] {
    background: #7cb9c4;
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    transition: .35s;
}

    .feature-card:hover[b-nwxctmgwcv] {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0,0,0,.08);
    }

.icon-wrapper[b-nwxctmgwcv] {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

    .icon-wrapper i[b-nwxctmgwcv] {
        font-size: 1.6rem;
    }

.feature-card h5[b-nwxctmgwcv] {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p[b-nwxctmgwcv] {
    text-align: center;
    color: #1e1c1cc0;
    margin-bottom: 0;
    margin-top: 30px
}

@keyframes aparecer-b-nwxctmgwcv {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.97);
        filter: blur(8px);
    }

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

/* Tablets */
@media(max-width:991px) {

    .features-section[b-nwxctmgwcv] {
        min-height: auto;
        padding: 80px 0;
        display: block;
    }

    .tabs-container[b-nwxctmgwcv] {
        display: flex;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 12px;
        padding: 10px;
        margin-inline: 0;
        scrollbar-width: none;
    }

        .tabs-container[b-nwxctmgwcv]::-webkit-scrollbar {
            display: none;
        }

    .slider[b-nwxctmgwcv] {
        display: none;
    }

    .tab[b-nwxctmgwcv] {
        flex-shrink: 0;
        min-width: max-content;
        padding: 12px 43px;
        font-size: .95rem;
    }

        .tab.active[b-nwxctmgwcv] {
            background: #4d8799;
            box-shadow: 0 5px 20px rgba(0,0,0,.06);
        }

    .features-wrapper[b-nwxctmgwcv] {
        margin-top: 40px !important;
    }

        .features-wrapper .row[b-nwxctmgwcv] {
            flex-wrap: nowrap;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding-inline: 20px;
            margin-left: 0;
            margin-right: 0;
        }

            .features-wrapper .row[b-nwxctmgwcv]::-webkit-scrollbar {
                display: none;
            }

        .features-wrapper .col-md-6[b-nwxctmgwcv],
        .features-wrapper .col-lg-3[b-nwxctmgwcv] {
            flex: 0 0 85%;
            max-width: 85%;
            scroll-snap-align: center;
        }

    .feature-card[b-nwxctmgwcv] {
        padding: 28px;
        border-radius: 24px;
        height: 100%;
    }

    .icon-wrapper[b-nwxctmgwcv] {
        width: 60px;
        height: 60px;
    }

        .icon-wrapper i[b-nwxctmgwcv] {
            font-size: 1.4rem;
        }
}

/* iPhone XR / 14 Plus */
@media(max-width:430px) {

    .tabs-container[b-nwxctmgwcv] {
        gap: 8px;
        padding: 8px;
    }

    .tab[b-nwxctmgwcv] {
        padding: 10px 10px;
        font-size: .88rem;
        border-radius: 15px;
    }
}

/* iPhone Pro */
@media(max-width:390px) {

    .tab[b-nwxctmgwcv] {
        padding: 9px 8px;
        font-size: .84rem;
        border-radius: 14px;
    }
}

/* iPhone X / 11 Pro */
@media(max-width:375px) {

    .tab[b-nwxctmgwcv] {
        padding: 8px 8px;
        font-size: .80rem;
        border-radius: 13px;
    }

    .tabs-container[b-nwxctmgwcv] {
        gap: 6px;
    }
}

/* Android pequeños / iPhone SE */
@media(max-width:360px) {

    .tab[b-nwxctmgwcv] {
        padding: 7px 9px;
        font-size: .76rem;
        border-radius: 12px;
    }

    .tabs-container[b-nwxctmgwcv] {
        gap: 5px;
        padding: 6px;
    }

    .feature-card[b-nwxctmgwcv] {
        padding: 24px;
    }
}

/* Muy pequeños */
@media(max-width:320px) {

    .tab[b-nwxctmgwcv] {
        padding: 6px 6px;
        font-size: .72rem;
    }

    .tabs-container[b-nwxctmgwcv] {
        gap: 4px;
        padding: 4px;
    }

    .feature-card[b-nwxctmgwcv] {
        padding: 22px;
    }

    .icon-wrapper[b-nwxctmgwcv] {
        width: 55px;
        height: 55px;
    }

        .icon-wrapper i[b-nwxctmgwcv] {
            font-size: 1.2rem;
        }
}
/* /Components/Home/FooterSection.razor.rz.scp.css */
.footer[b-rkkincthgq] {
    background: #003f4b;
    color: white;
}

.footer-link[b-rkkincthgq] {
    color: #94a3b8;
    text-decoration: none;
    transition: .2s;
}

.footer-link:hover[b-rkkincthgq] {
    color: white;
}

.footer-social[b-rkkincthgq] {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .25s;
}

.footer-social:hover[b-rkkincthgq] {
    background: #2563eb;
    transform: translateY(-3px);
    color: white;
}
.footer p[b-rkkincthgq],
.footer .text-muted[b-rkkincthgq] {
    color: white !important;
}
/* /Components/Home/HeroSection.razor.rz.scp.css */
.hero-content-column[b-6fsbfq6js7] {
    padding-right: 35px;
}

.hero-image-column[b-6fsbfq6js7] {
    padding-left: 35px;
}
.hero-image video[b-6fsbfq6js7] {
    width: 100%;
    height: auto;
    display: block;
}
.hero-businesses[b-6fsbfq6js7] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 28px;
}

.business-pill[b-6fsbfq6js7] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    background: #f4f8fa;
    border: 1px solid #e1ebef;
    border-radius: 999px;
    color: #49616a;
    font-size: .82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: .25s ease;
}

    .business-pill i[b-6fsbfq6js7] {
        color: #4d8799;
        font-size: .9rem;
    }

    .business-pill:hover[b-6fsbfq6js7] {
        transform: translateY(-2px);
        background: #eaf3f5;
        border-color: #c9dfe5;
        box-shadow: 0 6px 18px rgba(32, 52, 59, .07);
    }
/* ======================== */
/* HERO */
/* ======================== */
.hero-content-column[b-6fsbfq6js7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-section[b-6fsbfq6js7] {
    position: relative;
    overflow: hidden;
    padding: 105px 20px 35px;
}
/* ======================== */
/* LUCES */
/* ======================== */
.hero-section[b-6fsbfq6js7]::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    top: -250px;
    right: -220px;
}

    .hero-section[b-6fsbfq6js7]::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        bottom: -180px;
        left: -150px;

    }


/* ======================== */
/* CONTENIDO */
/* ======================== */

.hero-container[b-6fsbfq6js7] {
    position: relative;
    z-index: 2;
}


/* ======================== */
/* BADGE */
/* ======================== */

.hero-badge[b-6fsbfq6js7] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #4d8799;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #232a2f;
    font-size: .85rem;
    margin-bottom: 22px;
    box-shadow: 0 8px 25px rgba(15,23,42,.05);
}


/* ======================== */
/* TITULO */
/* ======================== */

.hero-title[b-6fsbfq6js7] {
    font-size: clamp(2.5rem,4vw,1.2rem);
    line-height: 1.08;
    font-weight: 550;
    color: #0f172a;
    margin-bottom: 22px;
    font-family: 'Manrope', sans-serif;
}


/* ======================== */
/* DESCRIPCION */
/* ======================== */

.hero-description[b-6fsbfq6js7] {
    font-size: 1.08rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}


/* ======================== */
/* BOTONES */
/* ======================== */

.hero-buttons[b-6fsbfq6js7] {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

    .hero-buttons .btn[b-6fsbfq6js7] {
        padding: 14px 26px;
        border-radius: 16px;
        font-weight: 600;
    }
    .btn-light[b-6fsbfq6js7]{
        background: rgba(37,99,235,.20)
    }

    .hero-buttons .btn-primary[b-6fsbfq6js7] {
        box-shadow: 0 10px 25px rgba(37,99,235,.20);
        background: #4d8799;
        border: none;
        transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    }
        .hero-buttons .btn-primary:hover[b-6fsbfq6js7] {
            background-color: #003f4b;
            border-color: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(37, 99, 235, 0.28);
        }


/* ======================== */
/* STATS */
/* ======================== */

.hero-stats[b-6fsbfq6js7] {
    display: flex;
    gap: 35px;
}

    .hero-stats h4[b-6fsbfq6js7] {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 2px;
        color: #4e8799;
    }

    .hero-stats span[b-6fsbfq6js7] {
        color: #64748b;
        font-size: .95rem;
    }


/* ======================== */
/* IMAGEN */
/* ======================== */
.hero-image[b-6fsbfq6js7] {
    width: 115%;
    margin-left: -7.5%;
    padding: 5px;
    position: relative;
    background: #4d8799;
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 20px 60px rgba(15,23,42,.08);
}



/* ======================== */
/* EFECTO HOVER */
/* ======================== */

.hero-image[b-6fsbfq6js7] {
    transition: .35s;
}

    .hero-image:hover[b-6fsbfq6js7] {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(15,23,42,.12);
    }


/* ======================== */
/* MOBILE */
/* ======================== */
@media (max-width: 576px) {

    .hero-businesses[b-6fsbfq6js7] {
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        margin-bottom: 24px;
    }

    .business-pill[b-6fsbfq6js7] {
        padding: 8px 11px;
        font-size: .76rem;
    }
}
@media(max-width:991px) {

    .hero-section[b-6fsbfq6js7] {
        padding: 55px 0;
        text-align: center;
    }


    .hero-container[b-6fsbfq6js7] {
        display: flex;
        justify-content: center;
    }


    .hero-badge[b-6fsbfq6js7] {
        display: flex;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }


    .hero-title[b-6fsbfq6js7] {
        font-size: 2.4rem;
        text-align: center;
    }


    .hero-description[b-6fsbfq6js7] {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        text-align: center;
    }


    .hero-buttons[b-6fsbfq6js7] {
        justify-content: center;
        margin-bottom: 30px;
    }


    .hero-stats[b-6fsbfq6js7] {
        justify-content: center;
        gap: 20px;
    }


    .hero-image-column[b-6fsbfq6js7] {
        display: none;
    }


    .hero-image[b-6fsbfq6js7] {
        margin-top: 25px;
    }


    .hero-section[b-6fsbfq6js7]::before {
        width: 400px;
        height: 400px;
        top: -180px;
        right: -180px;
    }


    .hero-section[b-6fsbfq6js7]::after {
        width: 300px;
        height: 300px;
        left: -150px;
        bottom: -150px;
    }
}
@media(max-width:430px) {

    .hero-title[b-6fsbfq6js7] {
        font-size: 2rem;
    }

    .hero-description[b-6fsbfq6js7] {
        font-size: .98rem;
    }

    .hero-buttons .btn[b-6fsbfq6js7] {
        width: 100%;
    }

    .hero-stats[b-6fsbfq6js7] {
        flex-wrap: wrap;
        gap: 25px;
    }

        .hero-stats h4[b-6fsbfq6js7] {
            font-size: 1.35rem;
        }

    .hero-image[b-6fsbfq6js7] {
        padding: 14px;
        border-radius: 24px;
    }

        .hero-image img[b-6fsbfq6js7] {
            border-radius: 14px;
        }
}
/* /Components/Home/PlanCard.razor.rz.scp.css */
.bi-x[b-2anyqymw10] {
    stroke: red;
}
.card-plan[b-2anyqymw10] {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 34px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}


    .card-plan:hover[b-2anyqymw10] {
        transform: translateY(-5px);
        border-color: #dbe5f0;
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    }


/* ================================================= */
/* BADGE */
/* ================================================= */

.plan-badge[b-2anyqymw10] {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #FFD700;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}


/* ================================================= */
/* ICONO */
/* ================================================= */

.plan-icon[b-2anyqymw10] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.15rem;
}


/* ================================================= */
/* TITULO */
/* ================================================= */

.plan-title[b-2anyqymw10] {
    margin: 0;
    color: #0f172a;
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -.025em;
}


/* ================================================= */
/* TIPO */
/* ================================================= */

.plan-type[b-2anyqymw10] {
    margin-top: 6px;
    margin-bottom: 24px;
    color: #64748b;
    font-size: .85rem;
}


/* ================================================= */
/* PRECIO */
/* ================================================= */

.plan-price[b-2anyqymw10] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.old-price[b-2anyqymw10] {
    margin-bottom: 2px;
    color: #94a3b8;
    font-size: .85rem;
    text-decoration: line-through;
}


.price-main[b-2anyqymw10] {
    display: flex;
    align-items: baseline;
    color: #0f172a;
}


.currency[b-2anyqymw10] {
    font-size: .85rem;
    font-weight: 600;
    color: #64748b;
}


.amount[b-2anyqymw10] {
    margin: 0 5px;
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.045em;
}


.period[b-2anyqymw10] {
    margin-top: 6px;
    color: #64748b;
    font-size: .8rem;
}


/* ================================================= */
/* AHORRO */
/* ================================================= */

.saving-badge[b-2anyqymw10] {
    margin-top: 12px;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f0fdf4;
    color: #15803d;
    font-size: .72rem;
}


    .saving-badge strong[b-2anyqymw10] {
        font-weight: 700;
    }


/* ================================================= */
/* MERCADO PAGO */
/* ================================================= */

.payment-info[b-2anyqymw10] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    color: #64748b;
    font-size: .72rem;
}


.mercado-pago-logo[b-2anyqymw10] {
    width: 102px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}


/* ================================================= */
/* DIVISOR */
/* ================================================= */

.plan-divider[b-2anyqymw10] {
    width: 100%;
    height: 1px;
    margin: 24px 0;
    background: #eef2f7;
}


/* ================================================= */
/* CARACTERÍSTICAS */
/* ================================================= */

.plan-features[b-2anyqymw10] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}


    .plan-features li[b-2anyqymw10] {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        color: #475569;
        font-size: .84rem;
        line-height: 1.45;
    }


        .plan-features li i[b-2anyqymw10] {
            flex-shrink: 0;
            margin-top: 2px;
            color: #2563eb;
            font-size: .9rem;
        }


/* ================================================= */
/* BOTÓN */
/* ================================================= */

.plan-button[b-2anyqymw10] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 13px 16px;
    border: 1px solid #2563eb;
    border-radius: 12px;
    background: #2563eb;
    color: #ffffff;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .plan-button:hover[b-2anyqymw10] {
        background: #1d4ed8;
        border-color: #1d4ed8;
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, .20);
    }

    .plan-button i[b-2anyqymw10] {
        font-size: .8rem;
        transition: transform .2s ease;
    }

    .plan-button:hover i[b-2anyqymw10] {
        transform: translateX(3px);
    }
/* /Components/Home/PlansSection.razor.rz.scp.css */
.plans-section-label[b-l4qxwzwv7k] {
    display: inline-block;
    margin-bottom: 10px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.plans-section-title[b-l4qxwzwv7k] {
    margin-bottom: 10px;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1f2933;
}

.plans-section-description[b-l4qxwzwv7k] {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}
.plans-section[b-l4qxwzwv7k] {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 0;
}

    .plans-section .container[b-l4qxwzwv7k] {
        width: 100%;
    }

.plans-tabs-container[b-l4qxwzwv7k] {
    position: relative;
    display: inline-grid;
    grid-template-columns: repeat(2,1fr);
    background: #e4edf8;
    border-radius: 22px;
    padding: 6px;
}

.plans-slider[b-l4qxwzwv7k] {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: #4d8799 !important;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.plan-tab[b-l4qxwzwv7k] {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 14px 35px;
    border-radius: 18px;
    font-weight: 600;
    color: #64748b;
    transition: .25s;
}

    .plan-tab.active[b-l4qxwzwv7k] {
        color: #0f172a;
    }

.plans-row[b-l4qxwzwv7k] {
    animation: aparecer-b-l4qxwzwv7k .45s ease;
}

@keyframes aparecer-b-l4qxwzwv7k {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.97);
        filter: blur(8px);
    }

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

/* ========================= */
/* TABLETS */
/* ========================= */

@media(max-width:991px) {

    .plans-section[b-l4qxwzwv7k] {
        min-height: auto;
        display: block;
        padding: 80px 0;
    }

    .plans-row[b-l4qxwzwv7k] {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start !important;
        padding-inline: 20px;
        gap: 0;
        scrollbar-width: none;
    }

        .plans-row[b-l4qxwzwv7k]::-webkit-scrollbar {
            display: none;
        }

        .plans-row > div[b-l4qxwzwv7k] {
            flex: 0 0 88%;
            max-width: 88%;
            scroll-snap-align: center;
        }

    .plan-tab[b-l4qxwzwv7k] {
        padding: 12px 20px;
        font-size: .9rem;
    }
}
/* /Components/Home/TutorialPreviewSection.razor.rz.scp.css */
/* ========================================= */
/* TUTORIAL PREVIEW */
/* ========================================= */

.tutorial-preview-section[b-cjl993v1d6] {
    padding: 90px 20px;
}

.tutorial-preview[b-cjl993v1d6] {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    padding: 65px;
    border-radius: 35px;
    background: #e4edf8;
}


/* ========================================= */
/* CONTENIDO */
/* ========================================= */

.tutorial-preview-content[b-cjl993v1d6] {
    position: relative;
    z-index: 2;
}

.tutorial-preview-badge[b-cjl993v1d6] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #ffffff;
    color: #4d8799;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .05);
}

.tutorial-preview-content h2[b-cjl993v1d6] {
    max-width: 600px;
    margin: 0 0 18px;
    color: #20343b;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
}

.tutorial-preview-content p[b-cjl993v1d6] {
    max-width: 570px;
    margin: 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}


/* ========================================= */
/* BOTONES */
/* ========================================= */

.tutorial-preview-buttons[b-cjl993v1d6] {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tutorial-primary-button[b-cjl993v1d6],
.tutorial-secondary-button[b-cjl993v1d6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 700;
    transition: .3s ease;
}

.tutorial-primary-button[b-cjl993v1d6] {
    background: #4d8799;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(77, 135, 153, .2);
}

    .tutorial-primary-button:hover[b-cjl993v1d6] {
        color: #ffffff;
        transform: translateY(-3px);
        background: #3f7485;
        box-shadow: 0 15px 30px rgba(77, 135, 153, .25);
    }

.tutorial-secondary-button[b-cjl993v1d6] {
    background: #ffffff;
    color: #20343b;
    border: 1px solid rgba(255, 255, 255, .8);
}

    .tutorial-secondary-button:hover[b-cjl993v1d6] {
        color: #20343b;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    }


/* ========================================= */
/* VISUAL */
/* ========================================= */

.tutorial-preview-visual[b-cjl993v1d6] {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.tutorial-visual-card[b-cjl993v1d6] {
    width: 100%;
    max-width: 390px;
    padding: 22px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, .1);
    transform: rotate(2deg);
    transition: .35s ease;
}

    .tutorial-visual-card:hover[b-cjl993v1d6] {
        transform: rotate(0deg) translateY(-5px);
    }


/* ========================================= */
/* VISUAL HEADER */
/* ========================================= */

.visual-top[b-cjl993v1d6] {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1f5;
}

.visual-icon[b-cjl993v1d6] {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #e4edf8;
    color: #4d8799;
    font-size: 1.15rem;
}

.visual-top strong[b-cjl993v1d6] {
    display: block;
    color: #20343b;
    font-size: .95rem;
    font-weight: 800;
}

.visual-top span[b-cjl993v1d6] {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: .75rem;
}


/* ========================================= */
/* ITEMS */
/* ========================================= */

.visual-items[b-cjl993v1d6] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
}

.visual-item[b-cjl993v1d6] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border-radius: 13px;
    color: #475569;
    font-size: .85rem;
    font-weight: 600;
    transition: .25s ease;
}

    .visual-item:hover[b-cjl993v1d6] {
        background: #f7fafc;
        transform: translateX(3px);
    }

.visual-item-icon[b-cjl993v1d6] {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: #f1f7f8;
    color: #4d8799;
}

.visual-item > i[b-cjl993v1d6] {
    margin-left: auto;
    color: #cbd5e1;
    font-size: .7rem;
}


/* ========================================= */
/* FOOTER VISUAL */
/* ========================================= */

.visual-footer[b-cjl993v1d6] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px;
    border-radius: 13px;
    background: #f7fafc;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
}

    .visual-footer i[b-cjl993v1d6] {
        font-size: 1rem;
    }


/* ========================================= */
/* DECORACIÓN */
/* ========================================= */

.tutorial-preview[b-cjl993v1d6]::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -200px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.tutorial-preview[b-cjl993v1d6]::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -190px;
    left: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}


/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 991px) {

    .tutorial-preview[b-cjl993v1d6] {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 50px 40px;
    }

    .tutorial-preview-content[b-cjl993v1d6] {
        text-align: center;
    }

        .tutorial-preview-content h2[b-cjl993v1d6],
        .tutorial-preview-content p[b-cjl993v1d6] {
            margin-left: auto;
            margin-right: auto;
        }

    .tutorial-preview-buttons[b-cjl993v1d6] {
        justify-content: center;
    }

    .tutorial-preview-visual[b-cjl993v1d6] {
        padding-bottom: 10px;
    }
}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 576px) {

    .tutorial-preview-section[b-cjl993v1d6] {
        padding: 65px 15px;
    }

    .tutorial-preview[b-cjl993v1d6] {
        padding: 38px 22px;
        border-radius: 28px;
        gap: 35px;
    }

    .tutorial-preview-content h2[b-cjl993v1d6] {
        font-size: 2rem;
    }

    .tutorial-preview-content p[b-cjl993v1d6] {
        font-size: .95rem;
    }

    .tutorial-preview-buttons[b-cjl993v1d6] {
        flex-direction: column;
    }

    .tutorial-primary-button[b-cjl993v1d6],
    .tutorial-secondary-button[b-cjl993v1d6] {
        width: 100%;
    }

    .tutorial-visual-card[b-cjl993v1d6] {
        padding: 17px;
        transform: none;
    }
}
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
.admin-layout[b-qkmu4656hg] {
    display: flex;
    min-height: 100vh;
    background: #f4f7fc;
}


/* ========================= */
/* SIDEBAR */
/* ========================= */

.sidebar[b-qkmu4656hg] {
    width: 290px;
    min-width: 290px;
    background: linear-gradient( 180deg, #0f172a, #111827, #020617 );
    padding: 28px 22px;
    color: white;
    box-shadow: 20px 0 60px rgba(0, 0, 0, .18);
    transition: .3s;
    display: flex;
    flex-direction: column;
}


/* ========================= */
/* LOGO */
/* ========================= */

.logo[b-qkmu4656hg] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 8px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo-icon[b-qkmu4656hg] {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 25px rgba(59,130,246,.25);
}

.logo-text h3[b-qkmu4656hg] {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

.logo-text span[b-qkmu4656hg] {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* ========================= */
/* TITULO MENU */
/* ========================= */

.menu-title[b-qkmu4656hg] {
    margin-top: 30px;
    padding: 0 10px;
    color: #64748b;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ========================= */
/* MENU */
/* ========================= */

.menu[b-qkmu4656hg] {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[b-qkmu4656hg] .menu-item {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    text-decoration: none !important;
    padding: 13px 14px;
    border-radius: 15px;
    color: #cbd5e1 !important;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

    [b-qkmu4656hg] .menu-item .menu-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.06);
        color: #94a3b8;
        transition: .2s ease;
    }

    [b-qkmu4656hg] .menu-item i {
        font-size: 1rem;
    }

    [b-qkmu4656hg] .menu-item:hover {
        background: rgba(255,255,255,.07);
        color: white !important;
        transform: translateX(4px);
    }

        [b-qkmu4656hg] .menu-item:hover .menu-icon {
            background: rgba(255,255,255,.1);
            color: white;
        }

    [b-qkmu4656hg] .menu-item.active {
        background: linear-gradient( 135deg, #3b82f6, #6366f1 );
        color: white !important;
        box-shadow: 0 12px 28px rgba(99,102,241,.28);
        transform: translateX(0);
    }

        [b-qkmu4656hg] .menu-item.active .menu-icon {
            background: rgba(255,255,255,.15);
            color: white;
        }


/* ========================= */
/* PARTE INFERIOR */
/* ========================= */

.sidebar-bottom[b-qkmu4656hg] {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}


/* ========================= */
/* ADMIN INFO */
/* ========================= */

.admin-info[b-qkmu4656hg] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 6px 14px;
}

.admin-avatar[b-qkmu4656hg] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.admin-text[b-qkmu4656hg] {
    display: flex;
    flex-direction: column;
}

    .admin-text strong[b-qkmu4656hg] {
        color: white;
        font-size: .82rem;
        font-weight: 700;
    }

    .admin-text span[b-qkmu4656hg] {
        margin-top: 2px;
        color: #64748b;
        font-size: .68rem;
    }


/* ========================= */
/* LOGOUT */
/* ========================= */

.logout-button[b-qkmu4656hg] {
    width: 100%;
    border: 1px solid rgba(239,68,68,.2);
    background: rgba(239,68,68,.06);
    color: #f87171;
    border-radius: 13px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

    .logout-button:hover[b-qkmu4656hg] {
        background: rgba(239,68,68,.13);
        border-color: rgba(239,68,68,.35);
        color: #fca5a5;
        transform: translateY(-1px);
    }

    .logout-button i[b-qkmu4656hg] {
        font-size: 1rem;
    }


/* ========================= */
/* CONTENT */
/* ========================= */

.content[b-qkmu4656hg] {
    flex: 1;
    min-width: 0;
    padding: 35px;
}


/* ========================= */
/* TOPBAR */
/* ========================= */

.topbar[b-qkmu4656hg] {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    margin-bottom: 35px;
}

    .topbar h2[b-qkmu4656hg] {
        margin: 0;
        font-weight: 700;
    }

    .topbar p[b-qkmu4656hg] {
        margin-top: 6px;
        color: #64748b;
    }


/* ========================= */
/* HAMBURGUESA */
/* ========================= */

.hamburger[b-qkmu4656hg] {
    position: fixed;
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 15px;
    background: white;
    color: #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    transition: .2s ease;
}

    .hamburger:hover[b-qkmu4656hg] {
        transform: translateY(-1px);
        box-shadow: 0 13px 35px rgba(0,0,0,.16);
    }

    .hamburger i[b-qkmu4656hg] {
        font-size: 1.4rem;
    }


/* ========================= */
/* OVERLAY */
/* ========================= */

.overlay[b-qkmu4656hg] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 999;
}

    .overlay.show[b-qkmu4656hg] {
        opacity: 1;
        pointer-events: auto;
    }


/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px) {

    .hamburger[b-qkmu4656hg] {
        display: flex;
    }

    .sidebar[b-qkmu4656hg] {
        position: fixed;
        left: -1020px;
        top: 0;
        height: 100vh;
        z-index: 1000;
        transition: left .3s cubic-bezier(.22,1,.36,1);
        box-shadow: 20px 0 60px rgba(0,0,0,.25);
    }

        .sidebar.show[b-qkmu4656hg] {
            left: 0;
        }

    .content[b-qkmu4656hg] {
        width: 100%;
        padding: 90px 20px 20px;
    }
}


/* ========================= */
/* MOBILE PEQUEÑO */
/* ========================= */

@media(max-width:480px) {

    .sidebar[b-qkmu4656hg] {
        width: 85vw;
        min-width: 0;
    }

    .content[b-qkmu4656hg] {
        padding: 85px 15px 15px;
    }
}
/* ========================= */
/* VOLVER AL SITIO */
/* ========================= */

.back-button[b-qkmu4656hg] {
    width: 100%;
    margin-top: 10px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    color: #94a3b8;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

    .back-button:hover[b-qkmu4656hg] {
        background: rgba(255,255,255,.09);
        color: white;
        border-color: rgba(255,255,255,.15);
        transform: translateY(-1px);
    }

    .back-button i[b-qkmu4656hg] {
        font-size: 1rem;
        transition: transform .2s ease;
    }

    .back-button:hover i[b-qkmu4656hg] {
        transform: translateX(-3px);
    }
/* /Components/Layout/ClientLayout.razor.rz.scp.css */
.admin-layout[b-pjvew0sksl] {
    display: flex;
    min-height: 100vh;
    background: #f4f7fc;
}


/* ========================= */
/* SIDEBAR */
/* ========================= */

.sidebar[b-pjvew0sksl] {
    width: 290px;
    min-width: 290px;
    background: linear-gradient( 180deg, #0f172a, #111827, #020617 );
    padding: 28px 22px;
    color: white;
    box-shadow: 20px 0 60px rgba(0, 0, 0, .18);
    transition: .3s;
    display: flex;
    flex-direction: column;
}


/* ========================= */
/* LOGO */
/* ========================= */

.logo[b-pjvew0sksl] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 4px 8px 28px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.logo-icon[b-pjvew0sksl] {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 25px rgba(59,130,246,.25);
}

.logo-text h3[b-pjvew0sksl] {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.5px;
}

.logo-text span[b-pjvew0sksl] {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* ========================= */
/* TITULO MENU */
/* ========================= */

.menu-title[b-pjvew0sksl] {
    margin-top: 30px;
    padding: 0 10px;
    color: #64748b;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1px;
}


/* ========================= */
/* MENU */
/* ========================= */

.menu[b-pjvew0sksl] {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

[b-pjvew0sksl] .menu-item {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    text-decoration: none !important;
    padding: 13px 14px;
    border-radius: 15px;
    color: #cbd5e1 !important;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

    [b-pjvew0sksl] .menu-item .menu-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.06);
        color: #94a3b8;
        transition: .2s ease;
    }

    [b-pjvew0sksl] .menu-item i {
        font-size: 1rem;
    }

    [b-pjvew0sksl] .menu-item:hover {
        background: rgba(255,255,255,.07);
        color: white !important;
        transform: translateX(4px);
    }

        [b-pjvew0sksl] .menu-item:hover .menu-icon {
            background: rgba(255,255,255,.1);
            color: white;
        }

    [b-pjvew0sksl] .menu-item.active {
        background: linear-gradient( 135deg, #3b82f6, #6366f1 );
        color: white !important;
        box-shadow: 0 12px 28px rgba(99,102,241,.28);
    }

        [b-pjvew0sksl] .menu-item.active .menu-icon {
            background: rgba(255,255,255,.15);
            color: white;
        }


/* ========================= */
/* PARTE INFERIOR */
/* ========================= */

.sidebar-bottom[b-pjvew0sksl] {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}


/* ========================= */
/* INFORMACIÓN USUARIO */
/* ========================= */

.admin-info[b-pjvew0sksl] {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 6px 14px;
}

.admin-avatar[b-pjvew0sksl] {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.admin-text[b-pjvew0sksl] {
    display: flex;
    flex-direction: column;
}

    .admin-text strong[b-pjvew0sksl] {
        color: white;
        font-size: .82rem;
        font-weight: 700;
    }

    .admin-text span[b-pjvew0sksl] {
        margin-top: 2px;
        color: #64748b;
        font-size: .68rem;
    }


/* ========================= */
/* CERRAR SESIÓN */
/* ========================= */

.logout-button[b-pjvew0sksl] {
    width: 100%;
    border: 1px solid rgba(239,68,68,.2);
    background: rgba(239,68,68,.06);
    color: #f87171;
    border-radius: 13px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

    .logout-button:hover[b-pjvew0sksl] {
        background: rgba(239,68,68,.13);
        border-color: rgba(239,68,68,.35);
        color: #fca5a5;
        transform: translateY(-1px);
    }

    .logout-button i[b-pjvew0sksl] {
        font-size: 1rem;
    }


/* ========================= */
/* VOLVER A POSCITO */
/* ========================= */

.back-button[b-pjvew0sksl] {
    width: 100%;
    margin-top: 10px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    color: #94a3b8;
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

    .back-button:hover[b-pjvew0sksl] {
        background: rgba(255,255,255,.09);
        color: white;
        border-color: rgba(255,255,255,.15);
        transform: translateY(-1px);
    }

    .back-button i[b-pjvew0sksl] {
        font-size: 1rem;
        transition: transform .2s ease;
    }

    .back-button:hover i[b-pjvew0sksl] {
        transform: translateX(-3px);
    }


/* ========================= */
/* CONTENT */
/* ========================= */

.content[b-pjvew0sksl] {
    flex: 1;
    min-width: 0;
    padding: 35px;
}


/* ========================= */
/* HAMBURGUESA */
/* ========================= */

.hamburger[b-pjvew0sksl] {
    position: fixed;
    top: 18px;
    left: 18px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 15px;
    background: white;
    color: #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    transition: .2s ease;
}

    .hamburger:hover[b-pjvew0sksl] {
        transform: translateY(-1px);
        box-shadow: 0 13px 35px rgba(0,0,0,.16);
    }

    .hamburger i[b-pjvew0sksl] {
        font-size: 1.4rem;
    }


/* ========================= */
/* OVERLAY */
/* ========================= */

.overlay[b-pjvew0sksl] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 999;
}

    .overlay.show[b-pjvew0sksl] {
        opacity: 1;
        pointer-events: auto;
    }


/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px) {

    .hamburger[b-pjvew0sksl] {
        display: flex;
    }

    .sidebar[b-pjvew0sksl] {
        position: fixed;
        left: -1320px;
        top: 0;
        height: 100vh;
        z-index: 1000;
        transition: left .3s cubic-bezier(.22,1,.36,1);
        box-shadow: 20px 0 60px rgba(0,0,0,.25);
    }

        .sidebar.show[b-pjvew0sksl] {
            left: 0;
        }

    .content[b-pjvew0sksl] {
        width: 100%;
        padding: 90px 20px 20px;
    }
}


/* ========================= */
/* MOBILE PEQUEÑO */
/* ========================= */

@media(max-width:480px) {

    .sidebar[b-pjvew0sksl] {
        width: 85vw;
        min-width: 0;
    }

    .content[b-pjvew0sksl] {
        padding: 85px 15px 15px;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
/* ========================================================= */
/* NAVBAR                                                      */
/* ========================================================= */
.navbar[b-qc2wleqbld] {
    min-height: 72px;
    border-bottom: 1px solid #eef2f7;
    background: #003f4b !important;
    backdrop-filter: blur(12px);
    z-index: 1000;
}
.logo[b-qc2wleqbld] {
    width: 120px;
    height: auto;
    display: block;
    border-radius: 10px
}


.lista[b-qc2wleqbld] {
    align-items: center;
}


/* ========================================================= */
/* NAV LINKS DESKTOP                                           */
/* ========================================================= */

.nav-pill[b-qc2wleqbld] {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    padding: 9px 14px !important;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}


    .nav-pill i[b-qc2wleqbld] {
        color: #fff;
        font-size: 0.95rem;
        transition: color 0.2s ease, transform 0.2s ease;
    }


    .nav-pill:hover[b-qc2wleqbld] {
        color: #003f4b !important;
        background: #eff6ff;
        transform: translateY(-1px);
    }


        .nav-pill:hover i[b-qc2wleqbld] {
            color: #003f4b !important;
            transform: translateY(-1px);
        }


/* ========================================================= */
/* LOGIN BUTTON                                                */
/* ========================================================= */

.login-button[b-qc2wleqbld] {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid #2563eb;
    border-radius: 11px;
    background: #2563eb;
    color: #ffffff !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.16);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}


    .login-button:hover[b-qc2wleqbld] {
        background: #1d4ed8;
        color: #ffffff !important;
        transform: translateY(-1px);
        box-shadow: 0 9px 24px rgba(37, 99, 235, 0.23);
    }


    .login-button > i:first-child[b-qc2wleqbld] {
        font-size: 1rem;
    }


.login-arrow[b-qc2wleqbld] {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}


.login-button:hover .login-arrow[b-qc2wleqbld] {
    transform: translateX(3px);
}

/*tutorial button*/

.tutoriales-button[b-qc2wleqbld] {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 11px;
    background: #003f4b;
    color: #ffffff !important;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}


    .tutoriales-button:hover[b-qc2wleqbld] {
        background: #ffff;
        color: #003f4b !important;
        transform: translateY(-1px);
    }


    .tutoriales-button > i:first-child[b-qc2wleqbld] {
        font-size: 1rem;
    }


.login-arrow[b-qc2wleqbld] {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}


.tutoriales-button:hover .login-arrow[b-qc2wleqbld] {
    transform: translateX(3px);
}


/* ========================================================= */
/* HAMBURGER                                                   */
/* ========================================================= */

.hamburger[b-qc2wleqbld] {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    background: #ffffff;
    color: #334155;
    font-size: 1.35rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}


    .hamburger:hover[b-qc2wleqbld] {
        background: #eff6ff;
        border-color: #bfdbfe;
        color: #2563eb;
    }


/* ========================================================= */
/* OVERLAY                                                     */
/* ========================================================= */

.overlay[b-qc2wleqbld] {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


    .overlay.show[b-qc2wleqbld] {
        opacity: 1;
        visibility: visible;
    }


/* ========================================================= */
/* MOBILE MENU                                                 */
/* ========================================================= */

.mobile-menu[b-qc2wleqbld] {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    width: min(390px, 88vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #ffffff;
    box-shadow: -15px 0 50px rgba(15, 23, 42, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier( 0.22, 1, 0.36, 1 );
}


    .mobile-menu.show[b-qc2wleqbld] {
        transform: translateX(0);
    }


/* ========================================================= */
/* MOBILE HEADER                                               */
/* ========================================================= */

.mobile-header[b-qc2wleqbld] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #eef2f7;
}


.mobile-logo img[b-qc2wleqbld] {
    width: 125px;
    height: auto;
    display: block;
}


.mobile-close[b-qc2wleqbld] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}


    .mobile-close:hover[b-qc2wleqbld] {
        background: #fef2f2;
        border-color: #fecaca;
        color: #dc2626;
    }


/* ========================================================= */
/* MOBILE LINKS                                                */
/* ========================================================= */

.mobile-links[b-qc2wleqbld] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 25px;
}


.mobile-nav-link[b-qc2wleqbld] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid transparent;
    border-radius: 15px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


    .mobile-nav-link:hover[b-qc2wleqbld] {
        background: #f8fafc;
        border-color: #e2e8f0;
        transform: translateX(2px);
    }


.mobile-nav-icon[b-qc2wleqbld] {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.05rem;
}


.mobile-nav-content[b-qc2wleqbld] {
    flex: 1;
}


    .mobile-nav-content strong[b-qc2wleqbld] {
        display: block;
        margin-bottom: 2px;
        color: #1e293b;
        font-size: 0.9rem;
        font-weight: 700;
    }


    .mobile-nav-content span[b-qc2wleqbld] {
        display: block;
        color: #94a3b8;
        font-size: 0.72rem;
    }


.mobile-arrow[b-qc2wleqbld] {
    color: #cbd5e1;
    font-size: 0.8rem;
    transition: color 0.2s ease, transform 0.2s ease;
}


.mobile-nav-link:hover .mobile-arrow[b-qc2wleqbld] {
    color: #2563eb;
    transform: translateX(3px);
}


/* ========================================================= */
/* MOBILE LOGIN                                                */
/* ========================================================= */

.mobile-login[b-qc2wleqbld] {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eef2f7;
}


    .mobile-login .login-button[b-qc2wleqbld] {
        min-height: 52px;
    }


/* ========================================================= */
/* MOBILE FOOTER                                               */
/* ========================================================= */

.mobile-footer[b-qc2wleqbld] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 18px;
    color: #94a3b8;
    font-size: 0.67rem;
    text-align: center;
}


    .mobile-footer i[b-qc2wleqbld] {
        color: #16a34a;
    }


/* ========================================================= */
/* MOBILE                                                      */
/* ========================================================= */

@media (max-width: 991.98px) {

    .navbar[b-qc2wleqbld] {
        min-height: 66px;
    }


    .logo[b-qc2wleqbld] {
        width: 100px;
    }
}


/* ========================================================= */
/* SMALL MOBILE                                                */
/* ========================================================= */

@media (max-width: 400px) {

    .mobile-menu[b-qc2wleqbld] {
        width: 100vw;
    }


    .logo[b-qc2wleqbld] {
        width: 120px;
    }
}

.mobile-links a.mobile-nav-link[b-qc2wleqbld] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: none;
    border-radius: 16px;
    background: transparent;
    color: #20343b;
    text-decoration: none;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease, color .25s ease;
}


    .mobile-links a.mobile-nav-link:hover[b-qc2wleqbld] {
        background: #f1f7f8;
        color: #20343b;
        text-decoration: none;
        transform: translateX(3px);
    }


    .mobile-links a.mobile-nav-link:focus[b-qc2wleqbld],
    .mobile-links a.mobile-nav-link:active[b-qc2wleqbld] {
        color: #20343b;
        text-decoration: none;
        outline: none;
    }


    /* ICONO */

    .mobile-links a.mobile-nav-link .mobile-nav-icon[b-qc2wleqbld] {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        border-radius: 13px;
        background: #e4edf8;
        color: #2764eb;
        font-size: 1.05rem;
    }


    /* TEXTO */

    .mobile-links a.mobile-nav-link .mobile-nav-content[b-qc2wleqbld] {
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 1;
    }


        .mobile-links a.mobile-nav-link .mobile-nav-content strong[b-qc2wleqbld] {
            color: #20343b;
            font-size: .95rem;
            font-weight: 700;
        }


        .mobile-links a.mobile-nav-link .mobile-nav-content span[b-qc2wleqbld] {
            color: #94a3b8;
            font-size: .78rem;
        }


    /* FLECHA */

    .mobile-links a.mobile-nav-link .mobile-arrow[b-qc2wleqbld] {
        color: #2764eb;
        font-size: .75rem;
        transition: transform .25s ease;
    }


    .mobile-links a.mobile-nav-link:hover .mobile-arrow[b-qc2wleqbld] {
        transform: translateX(3px);
        color: #2764eb;
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-qph7pw8g96] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-qph7pw8g96] {
    flex: 1;
}

.sidebar[b-qph7pw8g96] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-qph7pw8g96] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-qph7pw8g96]  a, .top-row[b-qph7pw8g96]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-qph7pw8g96]  a:hover, .top-row[b-qph7pw8g96]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-qph7pw8g96]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-qph7pw8g96] {
        justify-content: space-between;
    }

    .top-row[b-qph7pw8g96]  a, .top-row[b-qph7pw8g96]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-qph7pw8g96] {
        flex-direction: column;
    }

    .sidebar[b-qph7pw8g96] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-qph7pw8g96] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-qph7pw8g96]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-qph7pw8g96] {
        padding-left: 2rem;
        padding-right: 1.5rem;
    }
}

#blazor-error-ui[b-qph7pw8g96] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-qph7pw8g96] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-r6g28p8l2v] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-r6g28p8l2v] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-r6g28p8l2v] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-r6g28p8l2v] {
    font-size: 1.1rem;
}

.bi[b-r6g28p8l2v] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-r6g28p8l2v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-r6g28p8l2v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-r6g28p8l2v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-r6g28p8l2v] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-r6g28p8l2v] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-r6g28p8l2v] {
        padding-bottom: 1rem;
    }

    .nav-item[b-r6g28p8l2v]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-r6g28p8l2v]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-r6g28p8l2v]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-r6g28p8l2v] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-r6g28p8l2v] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-r6g28p8l2v] {
        display: none;
    }

    .nav-scrollable[b-r6g28p8l2v] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bhudy014tf],
.components-reconnect-repeated-attempt-visible[b-bhudy014tf],
.components-reconnect-failed-visible[b-bhudy014tf],
.components-pause-visible[b-bhudy014tf],
.components-resume-failed-visible[b-bhudy014tf],
.components-rejoining-animation[b-bhudy014tf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-retrying[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-failed[b-bhudy014tf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bhudy014tf] {
    display: block;
}


#components-reconnect-modal[b-bhudy014tf] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bhudy014tf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bhudy014tf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bhudy014tf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bhudy014tf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bhudy014tf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bhudy014tf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bhudy014tf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bhudy014tf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bhudy014tf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bhudy014tf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bhudy014tf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bhudy014tf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bhudy014tf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bhudy014tf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bhudy014tf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bhudy014tf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bhudy014tf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bhudy014tf {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Admin/Dashboard.razor.rz.scp.css */
.admin-dashboard[b-9te1qlsd65] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 25px 70px;
}


/* =========================
   HEADER
========================= */

.admin-header[b-9te1qlsd65] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.admin-eyebrow[b-9te1qlsd65],
.section-eyebrow[b-9te1qlsd65] {
    display: block;
    color: #8b949e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-header h1[b-9te1qlsd65] {
    margin: 5px 0 6px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

.admin-header p[b-9te1qlsd65] {
    margin: 0;
    color: #7d8791;
    font-size: 14px;
}


/* =========================
   STATUS
========================= */

.admin-status[b-9te1qlsd65] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #ecfdf3;
    color: #16834b;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.status-dot[b-9te1qlsd65] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20b26b;
}


/* =========================
   METRICS
========================= */

.metrics-grid[b-9te1qlsd65] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.metric-card[b-9te1qlsd65] {
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-radius: 23px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(20, 30, 45, .055);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .metric-card:hover[b-9te1qlsd65] {
        transform: translateY(-2px);
        box-shadow: 0 17px 40px rgba(20, 30, 45, .08);
    }

.metric-top[b-9te1qlsd65] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.metric-icon[b-9te1qlsd65] {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 20px;
}

.sales-icon[b-9te1qlsd65] {
    background: #eef4ff;
    color: #2864d7;
}

.money-icon[b-9te1qlsd65] {
    background: #ecfbf3;
    color: #15945b;
}

.metric-label[b-9te1qlsd65] {
    color: #939ba4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.metric-value[b-9te1qlsd65] {
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #171d25;
}

    .metric-value.money[b-9te1qlsd65] {
        color: #15945b;
    }

.metric-description[b-9te1qlsd65] {
    margin-top: 8px;
    color: #8b949e;
    font-size: 12px;
}


/* =========================
   SALES CARD
========================= */

.sales-card[b-9te1qlsd65] {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(20, 30, 45, .055);
}

.sales-header[b-9te1qlsd65] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 27px 30px;
    border-bottom: 1px solid #f0f2f4;
}

    .sales-header h2[b-9te1qlsd65] {
        margin: 4px 0 4px;
        font-size: 20px;
        font-weight: 800;
    }

    .sales-header p[b-9te1qlsd65] {
        margin: 0;
        color: #89919a;
        font-size: 12px;
    }


/* =========================
   COUNT
========================= */

.sales-count[b-9te1qlsd65] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 30px;
    background: #ecfdf3;
    color: #16834b;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

    .sales-count i[b-9te1qlsd65] {
        font-size: 12px;
    }


/* =========================
   TABLE
========================= */

.sales-table-wrapper[b-9te1qlsd65] {
    overflow-x: auto;
}

.sales-table[b-9te1qlsd65] {
    width: 100%;
    border-collapse: collapse;
}

    .sales-table th[b-9te1qlsd65] {
        padding: 15px 30px;
        background: #fafbfc;
        color: #8c959e;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .8px;
        text-transform: uppercase;
        border-bottom: 1px solid #edf0f3;
    }

    .sales-table td[b-9te1qlsd65] {
        padding: 17px 30px;
        border-bottom: 1px solid #f1f3f5;
        font-size: 13px;
    }

    .sales-table tbody tr[b-9te1qlsd65] {
        transition: background .15s ease;
    }

        .sales-table tbody tr:hover[b-9te1qlsd65] {
            background: #fafbfc;
        }

        .sales-table tbody tr:last-child td[b-9te1qlsd65] {
            border-bottom: 0;
        }


/* =========================
   SALE ID
========================= */

.sale-id[b-9te1qlsd65] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sale-icon[b-9te1qlsd65] {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #f3f5f7;
    color: #5e6873;
    font-size: 15px;
}

.sale-id span[b-9te1qlsd65] {
    display: block;
    color: #929aa3;
    font-size: 10px;
}

.sale-id strong[b-9te1qlsd65] {
    display: block;
    margin-top: 2px;
    font-size: 13px;
}


/* =========================
   SUBSCRIPTION
========================= */

.subscription-id[b-9te1qlsd65] {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 8px;
    background: #f5f6f8;
    color: #626b75;
    font-size: 11px;
    font-weight: 700;
}


/* =========================
   DATE
========================= */

.sale-date[b-9te1qlsd65] {
    color: #68727d;
    font-size: 12px;
}


/* =========================
   AMOUNT
========================= */

.sale-amount[b-9te1qlsd65] {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 9px;
    background: #ecfbf3;
    color: #15945b;
    font-size: 12px;
    font-weight: 800;
}


/* =========================
   EMPTY
========================= */

.empty-state[b-9te1qlsd65] {
    padding: 70px 20px;
    text-align: center;
}

.empty-icon[b-9te1qlsd65] {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 18px;
    background: #f4f6f8;
    color: #89929c;
    font-size: 23px;
}

.empty-state h4[b-9te1qlsd65] {
    margin: 0;
    font-size: 16px;
    font-weight: 750;
}

.empty-state p[b-9te1qlsd65] {
    margin: 6px 0 0;
    color: #8c959e;
    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media(max-width: 750px) {

    .admin-dashboard[b-9te1qlsd65] {
        padding: 25px 15px 50px;
    }

    .admin-header[b-9te1qlsd65] {
        flex-direction: column;
        gap: 15px;
    }

        .admin-header h1[b-9te1qlsd65] {
            font-size: 28px;
        }

    .metrics-grid[b-9te1qlsd65] {
        grid-template-columns: 1fr;
    }

    .metric-card[b-9te1qlsd65] {
        padding: 21px;
    }

    .sales-header[b-9te1qlsd65] {
        align-items: flex-start;
        flex-direction: column;
        padding: 23px 20px;
    }

    .sales-count[b-9te1qlsd65] {
        align-self: flex-start;
    }

    .sales-table th[b-9te1qlsd65],
    .sales-table td[b-9te1qlsd65] {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media(max-width: 500px) {

    .metric-value[b-9te1qlsd65] {
        font-size: 27px;
    }

    .sales-table[b-9te1qlsd65] {
        min-width: 650px;
    }

        .sales-table th[b-9te1qlsd65],
        .sales-table td[b-9te1qlsd65] {
            padding-top: 14px;
            padding-bottom: 14px;
        }
}
/* /Components/Pages/Admin/Login.razor.rz.scp.css */
.auth-page[b-95lm8sn9zq] {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    background-image: linear-gradient( rgba(100, 116, 139, 0.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px );
    background-size: 50px 50px;
}


/* ============================= */
/* CARD */
/* ============================= */

.auth-card[b-95lm8sn9zq] {
    width: 100%;
    max-width: 470px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
}


/* ============================= */
/* HEADER */
/* ============================= */

.auth-header[b-95lm8sn9zq] {
    text-align: center;
    margin-bottom: 34px;
}


.auth-logo[b-95lm8sn9zq] {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 18px;
    padding: 10px;
}


    .auth-logo img[b-95lm8sn9zq] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.auth-header h2[b-95lm8sn9zq] {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}


.auth-header p[b-95lm8sn9zq] {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ============================= */
/* FORM */
/* ============================= */

.auth-form[b-95lm8sn9zq] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ============================= */
/* FIELD */
/* ============================= */

.auth-field[b-95lm8sn9zq] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .auth-field label[b-95lm8sn9zq] {
        color: #334155;
        font-size: 0.9rem;
        font-weight: 600;
    }


/* ============================= */
/* INPUT */
/* ============================= */

.input-wrapper[b-95lm8sn9zq] {
    position: relative;
    display: flex;
    align-items: center;
}


    .input-wrapper > i[b-95lm8sn9zq] {
        position: absolute;
        left: 16px;
        z-index: 2;
        color: #94a3b8;
        font-size: 1.05rem;
        pointer-events: none;
    }


    .input-wrapper .form-control[b-95lm8sn9zq] {
        width: 100%;
        height: 52px;
        padding: 0 16px 0 46px;
        border: 1px solid #dbe3ed;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 0.95rem;
        box-shadow: none;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }


        .input-wrapper .form-control[b-95lm8sn9zq]::placeholder {
            color: #94a3b8;
        }


        .input-wrapper .form-control:focus[b-95lm8sn9zq] {
            background: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
            outline: none;
        }


/* ============================= */
/* BUTTON */
/* ============================= */

.auth-button[b-95lm8sn9zq] {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 15px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


    .auth-button:hover:not(:disabled)[b-95lm8sn9zq] {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    }


    .auth-button:active:not(:disabled)[b-95lm8sn9zq] {
        transform: translateY(0);
    }


    .auth-button:disabled[b-95lm8sn9zq] {
        opacity: 0.7;
        cursor: not-allowed;
    }


/* ============================= */
/* ERROR */
/* ============================= */

.auth-error[b-95lm8sn9zq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.88rem;
}


    .auth-error i[b-95lm8sn9zq] {
        font-size: 1rem;
        flex-shrink: 0;
    }


/* ============================= */
/* VALIDATION */
/* ============================= */

.validation-message[b-95lm8sn9zq] {
    margin-top: 3px;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 500;
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 576px) {

    .auth-page[b-95lm8sn9zq] {
        min-height: 90vh;
        padding: 30px 16px;
    }


    .auth-card[b-95lm8sn9zq] {
        padding: 32px 24px;
        border-radius: 22px;
    }


    .auth-header[b-95lm8sn9zq] {
        margin-bottom: 28px;
    }


        .auth-header h1[b-95lm8sn9zq] {
            font-size: 1.7rem;
        }


        .auth-header p[b-95lm8sn9zq] {
            font-size: 0.9rem;
        }


    .auth-logo[b-95lm8sn9zq] {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }


    .auth-form[b-95lm8sn9zq] {
        gap: 17px;
    }


    .input-wrapper .form-control[b-95lm8sn9zq] {
        height: 50px;
    }


    .auth-button[b-95lm8sn9zq] {
        height: 52px;
    }
}
.forgot-password[b-95lm8sn9zq] {
    display: flex;
    justify-content: center;
    margin-top: -8px;
}


    .forgot-password button[b-95lm8sn9zq] {
        padding: 0;
        border: none;
        background: transparent;
        color: #2563eb;
        font-size: 0.88rem;
        font-weight: 600;
        cursor: pointer;
        transition: color 0.2s ease;
    }


        .forgot-password button:hover[b-95lm8sn9zq] {
            color: #1d4ed8;
            text-decoration: underline;
        }
/* /Components/Pages/Admin/Reembolsos.razor.rz.scp.css */
/* =========================================================
   ADMIN - REEMBOLSOS
   ========================================================= */

.admin-refunds-page[b-m122v2n18m] {
    min-height: 100vh;
    padding: 35px 35px 60px;
    background: #f4f7fc;
}


/* =========================================================
   HEADER
   ========================================================= */

.refunds-page-header[b-m122v2n18m] {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.refunds-page-badge[b-m122v2n18m] {
    display: inline-flex;
    align-items: center;
    margin-bottom: 9px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #dce8ff;
    color: #2864d7;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.refunds-page-header h1[b-m122v2n18m] {
    margin: 0;
    color: #111827;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.7px;
}

.refunds-page-header p[b-m122v2n18m] {
    max-width: 650px;
    margin: 8px 0 0;
    color: #89919a;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   CONTADOR
   ========================================================= */

.refunds-counter[b-m122v2n18m] {
    min-width: 155px;
    padding: 15px 18px;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, .04);
}

    .refunds-counter span[b-m122v2n18m] {
        display: block;
        margin-bottom: 3px;
        color: #9299a3;
        font-size: 10px;
        font-weight: 650;
    }

    .refunds-counter strong[b-m122v2n18m] {
        color: #111827;
        font-size: 23px;
        font-weight: 800;
    }


/* =========================================================
   LISTA
   ========================================================= */

.refunds-list[b-m122v2n18m] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   TARJETA
   ========================================================= */

.refund-request-card[b-m122v2n18m] {
    overflow: hidden;
    background: white;
    border: 1px solid #e7ebf0;
    border-radius: 21px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .045);
    transition: box-shadow .2s ease, transform .2s ease;
}

    .refund-request-card:hover[b-m122v2n18m] {
        transform: translateY(-1px);
        box-shadow: 0 15px 40px rgba(15, 23, 42, .07);
    }


/* =========================================================
   HEADER DE TARJETA
   ========================================================= */

.refund-request-header[b-m122v2n18m] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 23px;
    background: #fbfcfe;
    border-bottom: 1px solid #edf0f4;
}

.refund-request-number[b-m122v2n18m] {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .refund-request-number span[b-m122v2n18m] {
        color: #9299a3;
        font-size: 11px;
        font-weight: 600;
    }

    .refund-request-number strong[b-m122v2n18m] {
        color: #1f2937;
        font-size: 13px;
        font-weight: 800;
    }


/* =========================================================
   ESTADOS
   ========================================================= */

.refund-status[b-m122v2n18m] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 750;
}

    .refund-status span[b-m122v2n18m] {
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }

    .refund-status.pending[b-m122v2n18m] {
        background: #fff8e8;
        color: #b7791f;
        border: 1px solid #f8e7b9;
    }

        .refund-status.pending span[b-m122v2n18m] {
            background: #e5a52b;
        }


/* =========================================================
   SECCIONES
   ========================================================= */

.refund-section[b-m122v2n18m] {
    padding: 22px 23px;
    border-bottom: 1px solid #f0f2f5;
}

.refund-section-title[b-m122v2n18m] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
}

    .refund-section-title i[b-m122v2n18m] {
        width: 29px;
        height: 29px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 9px;
        background: #eef4ff;
        color: #3975df;
        font-size: 13px;
    }

    .refund-section-title span[b-m122v2n18m] {
        color: #252b35;
        font-size: 12px;
        font-weight: 750;
    }


/* =========================================================
   DATOS
   ========================================================= */

.refund-data-grid[b-m122v2n18m] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.refund-data span[b-m122v2n18m] {
    display: block;
    margin-bottom: 5px;
    color: #9aa1aa;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.refund-data strong[b-m122v2n18m] {
    display: block;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
}


/* =========================================================
   SUSCRIPCIÓN
   ========================================================= */

.refund-subscription[b-m122v2n18m] {
    padding: 22px 23px;
    background: #fafcff;
    border-bottom: 1px solid #edf1f6;
}

.refund-subscription-grid[b-m122v2n18m] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.refund-subscription-item[b-m122v2n18m] {
    min-width: 0;
}

    .refund-subscription-item span[b-m122v2n18m] {
        display: block;
        margin-bottom: 5px;
        color: #9aa1aa;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .35px;
    }

    .refund-subscription-item strong[b-m122v2n18m] {
        display: block;
        color: #374151;
        font-size: 12px;
        font-weight: 700;
        
    }


    /* =========================================================
   MP ID
   ========================================================= */

    .refund-subscription-item.mp-id[b-m122v2n18m] {
        grid-column: span 2;
    }

        .refund-subscription-item.mp-id strong[b-m122v2n18m] {
            padding: 8px 10px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            color: #2864d7;
            font-family: monospace;
            font-size: 11px;
        }


/* =========================================================
   ESTADO SUSCRIPCIÓN
   ========================================================= */

.subscription-status[b-m122v2n18m] {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

    .subscription-status span[b-m122v2n18m] {
        width: 7px;
        height: 7px;
        margin: 0;
        border-radius: 50%;
        background: #2fb36f;
    }


/* =========================================================
   PLAZO DE REEMBOLSO
   ========================================================= */

.refund-deadline[b-m122v2n18m] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 13px;
}

    .refund-deadline > i[b-m122v2n18m] {
        margin-top: 2px;
        font-size: 16px;
    }

    .refund-deadline div[b-m122v2n18m] {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .refund-deadline strong[b-m122v2n18m] {
        font-size: 11px;
        font-weight: 750;
    }

    .refund-deadline span[b-m122v2n18m] {
        font-size: 10px;
        line-height: 1.5;
    }


    /* DENTRO DEL PLAZO */

    .refund-deadline.valid[b-m122v2n18m] {
        background: #f0fbf5;
        border: 1px solid #d8f1e2;
        color: #238052;
    }

        .refund-deadline.valid > i[b-m122v2n18m] {
            color: #2eae6d;
        }


    /* VENCIDO */

    .refund-deadline.expired[b-m122v2n18m] {
        background: #fff5f5;
        border: 1px solid #f5dede;
        color: #b94b4b;
    }

        .refund-deadline.expired > i[b-m122v2n18m] {
            color: #d85d5d;
        }


/* =========================================================
   FECHA LÍMITE
   ========================================================= */

.refund-deadline-date[b-m122v2n18m] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #9299a3;
    font-size: 10px;
}

    .refund-deadline-date i[b-m122v2n18m] {
        color: #6d8fd0;
    }

    .refund-deadline-date strong[b-m122v2n18m] {
        color: #596273;
        font-weight: 750;
    }


/* =========================================================
   WARNING
   ========================================================= */

.refund-warning[b-m122v2n18m] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    border-radius: 13px;
    background: #fff9ed;
    border: 1px solid #f5e5bc;
    color: #986d21;
}

    .refund-warning > i[b-m122v2n18m] {
        margin-top: 2px;
        color: #d49a28;
        font-size: 16px;
    }

    .refund-warning div[b-m122v2n18m] {
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .refund-warning strong[b-m122v2n18m] {
        font-size: 11px;
        font-weight: 750;
    }

    .refund-warning span[b-m122v2n18m] {
        font-size: 10px;
        line-height: 1.5;
    }


/* =========================================================
   MOTIVO
   ========================================================= */

.refund-reason[b-m122v2n18m] {
    padding: 15px 17px;
    background: #f8fafc;
    border: 1px solid #edf0f3;
    border-radius: 12px;
    color: #596273;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
}


/* =========================================================
   AVISO ADMINISTRADOR
   ========================================================= */

.refund-admin-warning[b-m122v2n18m] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 23px;
    padding: 13px 15px;
    background: #f7faff;
    border: 1px solid #e0ebff;
    border-radius: 12px;
    color: #687385;
    font-size: 10px;
    line-height: 1.6;
}

    .refund-admin-warning i[b-m122v2n18m] {
        flex-shrink: 0;
        margin-top: 1px;
        color: #4e82e6;
        font-size: 15px;
    }


/* =========================================================
   ACCIONES
   ========================================================= */

.refund-actions[b-m122v2n18m] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 17px 23px;
    background: #fbfcfe;
    border-top: 1px solid #edf0f4;
}

    .refund-actions button[b-m122v2n18m] {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 9px 15px;
        border-radius: 10px;
        font-size: 11px;
        font-weight: 750;
        cursor: pointer;
        transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }


/* RECHAZAR */

.refund-reject-button[b-m122v2n18m] {
    background: white;
    border: 1px solid #f0d5d5;
    color: #c25353;
}

    .refund-reject-button:hover[b-m122v2n18m] {
        background: #fff7f7;
        border-color: #e9bcbc;
        transform: translateY(-1px);
    }


/* APROBAR */

.refund-approve-button[b-m122v2n18m] {
    border: 1px solid #2f70df;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    color: white;
    box-shadow: 0 7px 18px rgba(59, 130, 246, .16);
}

    .refund-approve-button:hover[b-m122v2n18m] {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(59, 130, 246, .23);
    }


/* =========================================================
   LOADING
   ========================================================= */

.refunds-loading[b-m122v2n18m] {
    min-height: 300px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #89919a;
    font-size: 11px;
}

    .refunds-loading .spinner-border[b-m122v2n18m] {
        width: 27px;
        height: 27px;
        border-width: 2px;
        color: #4d82e7;
    }


/* =========================================================
   SIN SOLICITUDES
   ========================================================= */

.refunds-empty[b-m122v2n18m] {
    max-width: 600px;
    margin: 80px auto;
    padding: 45px 30px;
    text-align: center;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
}

.refunds-empty-icon[b-m122v2n18m] {
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #ecfdf3;
    color: #2eaa6a;
    font-size: 25px;
}

.refunds-empty h2[b-m122v2n18m] {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
}

.refunds-empty p[b-m122v2n18m] {
    margin: 8px 0 0;
    color: #9299a3;
    font-size: 11px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width: 950px) {

    .admin-refunds-page[b-m122v2n18m] {
        padding: 30px 22px 50px;
    }

    .refunds-page-header[b-m122v2n18m] {
        align-items: flex-start;
    }

    .refund-data-grid[b-m122v2n18m] {
        grid-template-columns: repeat(2, 1fr);
    }

    .refund-subscription-grid[b-m122v2n18m] {
        grid-template-columns: repeat(2, 1fr);
    }

    .refund-subscription-item.mp-id[b-m122v2n18m] {
        grid-column: span 2;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width: 650px) {

    .admin-refunds-page[b-m122v2n18m] {
        padding: 22px 12px 40px;
    }

    .refunds-page-header[b-m122v2n18m] {
        flex-direction: column;
        gap: 17px;
        margin-bottom: 22px;
    }

        .refunds-page-header h1[b-m122v2n18m] {
            font-size: 23px;
        }

        .refunds-page-header p[b-m122v2n18m] {
            font-size: 11px;
        }

    .refunds-counter[b-m122v2n18m] {
        width: 100%;
    }

    .refund-request-card[b-m122v2n18m] {
        border-radius: 17px;
    }

    .refund-request-header[b-m122v2n18m] {
        padding: 15px 17px;
    }

    .refund-section[b-m122v2n18m] {
        padding: 19px 17px;
    }

    .refund-subscription[b-m122v2n18m] {
        padding: 19px 17px;
    }

    .refund-data-grid[b-m122v2n18m] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .refund-subscription-grid[b-m122v2n18m] {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .refund-subscription-item.mp-id[b-m122v2n18m] {
        grid-column: auto;
    }

    .refund-admin-warning[b-m122v2n18m] {
        margin: 17px;
        padding: 12px 13px;
    }

    .refund-actions[b-m122v2n18m] {
        flex-direction: column;
        padding: 15px 17px;
    }

        .refund-actions button[b-m122v2n18m] {
            width: 100%;
        }

    .refund-status[b-m122v2n18m] {
        font-size: 9px;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media(max-width: 400px) {

    .refund-request-number span[b-m122v2n18m] {
        display: none;
    }

    .refund-request-header[b-m122v2n18m] {
        align-items: center;
    }

    .refund-section-title span[b-m122v2n18m] {
        font-size: 11px;
    }

    .refund-data strong[b-m122v2n18m],
    .refund-subscription-item strong[b-m122v2n18m] {
        font-size: 11px;
    }

    .refund-reason[b-m122v2n18m] {
        font-size: 11px;
    }
}
/* /Components/Pages/Admin/Suscripciones.razor.rz.scp.css */
/* ========================================================= */
/* DASHBOARD SUSCRIPCIONES */
/* ========================================================= */

.subscriptions-dashboard[b-qkmkygqpea] {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* ========================================================= */
/* HEADER */
/* ========================================================= */

.subscriptions-header[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 30px;
}

.page-eyebrow[b-qkmkygqpea] {
    display: block;
    margin-bottom: 7px;
    color: #6366f1;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.subscriptions-header h1[b-qkmkygqpea] {
    margin: 0;
    color: #111827;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.7px;
}

.subscriptions-header p[b-qkmkygqpea] {
    margin: 7px 0 0;
    color: #64748b;
    font-size: .9rem;
}


/* ========================================================= */
/* ESTADO DEL SISTEMA */
/* ========================================================= */

.system-status[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 50px;
    color: #64748b;
    font-size: .75rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(15,23,42,.04);
}

.status-dot[b-qkmkygqpea] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}


/* ========================================================= */
/* MÉTRICAS */
/* ========================================================= */

.subscription-metrics[b-qkmkygqpea] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 25px;
}

.subscription-metric[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 22px;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(15,23,42,.045);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .subscription-metric:hover[b-qkmkygqpea] {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(15,23,42,.08);
    }


/* ========================================================= */
/* ICONOS MÉTRICAS */
/* ========================================================= */

.metric-icon[b-qkmkygqpea] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.25rem;
}

.active-icon[b-qkmkygqpea] {
    background: #ecfdf5;
    color: #059669;
}

.billing-icon[b-qkmkygqpea] {
    background: #eff6ff;
    color: #2563eb;
}

    .billing-icon.annual[b-qkmkygqpea] {
        background: #fef3c7;
        color: #d97706;
    }


/* ========================================================= */
/* TEXTO MÉTRICAS */
/* ========================================================= */

.subscription-metric > div:last-child[b-qkmkygqpea] {
    min-width: 0;
}

.subscription-metric span[b-qkmkygqpea] {
    display: block;
    color: #94a3b8;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .8px;
}

.subscription-metric strong[b-qkmkygqpea] {
    display: block;
    margin-top: 3px;
    color: #111827;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.subscription-metric small[b-qkmkygqpea] {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: .7rem;
}

.billing-value[b-qkmkygqpea] {
    white-space: nowrap;
}


/* ========================================================= */
/* CARD PRINCIPAL */
/* ========================================================= */

.subscriptions-card[b-qkmkygqpea] {
    overflow: hidden;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 26px;
    box-shadow: 0 10px 35px rgba(15,23,42,.05);
}


/* ========================================================= */
/* HEADER CARD */
/* ========================================================= */

.subscriptions-card-header[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    border-bottom: 1px solid #edf0f4;
}

.section-eyebrow[b-qkmkygqpea] {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.subscriptions-card-header h2[b-qkmkygqpea] {
    margin: 0;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.3px;
}

.subscriptions-counter[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: .72rem;
    font-weight: 700;
}

    .subscriptions-counter i[b-qkmkygqpea] {
        font-size: .8rem;
    }


/* ========================================================= */
/* TABLA */
/* ========================================================= */

.subscriptions-table-wrapper[b-qkmkygqpea] {
    width: 100%;
    overflow-x: auto;
}

.subscriptions-table[b-qkmkygqpea] {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}

    .subscriptions-table thead[b-qkmkygqpea] {
        background: #fafbfc;
    }

    .subscriptions-table th[b-qkmkygqpea] {
        padding: 14px 25px;
        color: #94a3b8;
        font-size: .65rem;
        font-weight: 800;
        text-align: left;
        letter-spacing: .8px;
        text-transform: uppercase;
        white-space: nowrap;
        border-bottom: 1px solid #edf0f4;
    }

    .subscriptions-table td[b-qkmkygqpea] {
        padding: 18px 25px;
        border-bottom: 1px solid #f0f2f5;
        vertical-align: middle;
    }

    .subscriptions-table tbody tr[b-qkmkygqpea] {
        transition: background .2s ease;
    }

        .subscriptions-table tbody tr:hover[b-qkmkygqpea] {
            background: #fafbfc;
        }

        .subscriptions-table tbody tr:last-child td[b-qkmkygqpea] {
            border-bottom: none;
        }


/* ========================================================= */
/* CLIENTE / ID */
/* ========================================================= */

.subscription-client[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 11px;
}

.subscription-avatar[b-qkmkygqpea] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f1f5f9;
    color: #64748b;
    font-size: .9rem;
}

.subscription-client span[b-qkmkygqpea] {
    display: block;
    color: #94a3b8;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.subscription-client strong[b-qkmkygqpea] {
    display: block;
    margin-top: 2px;
    color: #111827;
    font-size: .82rem;
    font-weight: 800;
}


/* ========================================================= */
/* PRODUCTO */
/* ========================================================= */

.product-name[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 11px;
}

.product-icon[b-qkmkygqpea] {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #eef2ff;
    color: #6366f1;
    font-size: .95rem;
}

.product-name strong[b-qkmkygqpea] {
    display: block;
    color: #1e293b;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-name span[b-qkmkygqpea] {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: .67rem;
}


/* ========================================================= */
/* TIPO DE PLAN */
/* ========================================================= */

.plan-type[b-qkmkygqpea] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
}

    .plan-type i[b-qkmkygqpea] {
        font-size: .75rem;
    }

    .plan-type.annual[b-qkmkygqpea] {
        background: #fef3c7;
        color: #b45309;
    }


/* ========================================================= */
/* FECHA */
/* ========================================================= */

.expiration-date[b-qkmkygqpea] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

    .expiration-date i[b-qkmkygqpea] {
        color: #94a3b8;
        font-size: .9rem;
    }


/* ========================================================= */
/* ESTADO */
/* ========================================================= */

.active-status[b-qkmkygqpea] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 50px;
    background: #ecfdf5;
    color: #059669;
    font-size: .68rem;
    font-weight: 800;
}

.active-status-dot[b-qkmkygqpea] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}


/* ========================================================= */
/* EMPTY STATE */
/* ========================================================= */

.empty-subscriptions[b-qkmkygqpea] {
    padding: 75px 30px;
    text-align: center;
}

.empty-subscriptions-icon[b-qkmkygqpea] {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 1.5rem;
}

.empty-subscriptions h4[b-qkmkygqpea] {
    margin: 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 800;
}

.empty-subscriptions p[b-qkmkygqpea] {
    margin: 7px auto 0;
    max-width: 400px;
    color: #94a3b8;
    font-size: .8rem;
    line-height: 1.6;
}


/* ========================================================= */
/* TABLET */
/* ========================================================= */

@media(max-width:1100px) {

    .subscription-metrics[b-qkmkygqpea] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .subscription-metric:first-child[b-qkmkygqpea] {
        grid-column: span 2;
    }
}


/* ========================================================= */
/* MOBILE */
/* ========================================================= */

@media(max-width:991px) {

    .subscriptions-dashboard[b-qkmkygqpea] {
        width: 100%;
    }

    .subscriptions-header[b-qkmkygqpea] {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .system-status[b-qkmkygqpea] {
        align-self: flex-start;
    }

    .subscription-metrics[b-qkmkygqpea] {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .subscription-metric:first-child[b-qkmkygqpea] {
        grid-column: auto;
    }

    .subscription-metric[b-qkmkygqpea] {
        padding: 18px;
        border-radius: 18px;
    }

    .subscriptions-card[b-qkmkygqpea] {
        border-radius: 20px;
    }

    .subscriptions-card-header[b-qkmkygqpea] {
        padding: 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .subscriptions-counter[b-qkmkygqpea] {
        align-self: flex-start;
    }
}


/* ========================================================= */
/* MOBILE PEQUEÑO */
/* ========================================================= */

@media(max-width:600px) {

    .subscriptions-header h1[b-qkmkygqpea] {
        font-size: 1.65rem;
    }

    .subscriptions-header p[b-qkmkygqpea] {
        font-size: .82rem;
    }

    .metric-icon[b-qkmkygqpea] {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 14px;
        font-size: 1.05rem;
    }

    .subscription-metric strong[b-qkmkygqpea] {
        font-size: 1.3rem;
    }

    .subscriptions-card-header h2[b-qkmkygqpea] {
        font-size: 1.1rem;
    }

    .empty-subscriptions[b-qkmkygqpea] {
        padding: 55px 20px;
    }
}


/* ========================================================= */
/* PANTALLAS MUY PEQUEÑAS */
/* ========================================================= */

@media(max-width:400px) {

    .subscription-metric[b-qkmkygqpea] {
        gap: 12px;
        padding: 16px;
    }

    .metric-icon[b-qkmkygqpea] {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .subscription-metric strong[b-qkmkygqpea] {
        font-size: 1.15rem;
    }

    .subscription-metric small[b-qkmkygqpea] {
        font-size: .65rem;
    }
}
/* /Components/Pages/Checkout.razor.rz.scp.css */
/* ========================================================= */
/* CHECKOUT PAGE                                             */
/* ========================================================= */

.checkout-page[b-bkssebwk07] {
    min-height: 100vh;
    padding: 30px 20px;
    background-color: #f8fafc;
    background-image: linear-gradient( rgba(100, 116, 139, 0.07) 1px, transparent 1px ), linear-gradient( 90deg, rgba(100, 116, 139, 0.07) 1px, transparent 1px );
    background-size: 50px 50px;
}


.checkout-container[b-bkssebwk07] {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* ========================================================= */
/* HEADER                                                    */
/* ========================================================= */

.checkout-header[b-bkssebwk07] {
    margin-bottom: 45px;
    text-align: center;
}


.checkout-badge[b-bkssebwk07] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    margin-bottom: 16px;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 700;
}


.checkout-header h2[b-bkssebwk07] {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.8px;
}


.checkout-header p[b-bkssebwk07] {
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1rem;
}


/* ========================================================= */
/* GRID                                                      */
/* ========================================================= */

.checkout-grid[b-bkssebwk07] {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}


.checkout-left[b-bkssebwk07] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ========================================================= */
/* SUMMARY                                                   */
/* ========================================================= */

.checkout-summary[b-bkssebwk07] {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}


.summary-header[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 16px;
}


.product-icon[b-bkssebwk07] {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.4rem;
}


.summary-label[b-bkssebwk07] {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.7px;
}


.summary-header h2[b-bkssebwk07] {
    margin: 0;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 800;
}


/* ========================================================= */
/* DESCRIPTION                                               */
/* ========================================================= */

.summary-description[b-bkssebwk07] {
    margin-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}


    .summary-description p[b-bkssebwk07] {
        margin: 0;
    }


/* ========================================================= */
/* FEATURES                                                  */
/* ========================================================= */

.summary-features[b-bkssebwk07] {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}


.summary-feature[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 0.88rem;
}


    .summary-feature i[b-bkssebwk07] {
        color: #16a34a;
        font-size: 0.95rem;
    }


/* ========================================================= */
/* PRICE                                                     */
/* ========================================================= */

.summary-price[b-bkssebwk07] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    color: #64748b;
    font-size: 0.9rem;
}


    .summary-price strong[b-bkssebwk07] {
        color: #0f172a;
        font-size: 1.8rem;
        font-weight: 800;
    }


/* ========================================================= */
/* DELIVERY CARD                                             */
/* ========================================================= */

.delivery-card[b-bkssebwk07] {
    padding: 25px;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
}


.delivery-card-header[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 13px;
}


.delivery-card-icon[b-bkssebwk07] {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 1.2rem;
}


.delivery-card-label[b-bkssebwk07] {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.7px;
}


.delivery-card-header h3[b-bkssebwk07] {
    margin: 0;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 750;
}


.delivery-card-description[b-bkssebwk07] {
    margin: 18px 0;
    color: #64748b;
    font-size: 0.84rem;
    line-height: 1.55;
}


/* ========================================================= */
/* EMAIL DESTINO                                             */
/* ========================================================= */

.delivery-email[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: #f8fbff;
    color: #1e40af;
    font-size: 0.85rem;
    font-weight: 600;
}


    .delivery-email i[b-bkssebwk07] {
        color: #2563eb;
        font-size: 1rem;
    }


/* ========================================================= */
/* DELIVERY NOTE                                             */
/* ========================================================= */

.delivery-card-note[b-bkssebwk07] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.73rem;
    line-height: 1.45;
}


    .delivery-card-note i[b-bkssebwk07] {
        flex-shrink: 0;
        margin-top: 2px;
        color: #64748b;
    }


/* ========================================================= */
/* PAYMENT                                                   */
/* ========================================================= */

.checkout-payment[b-bkssebwk07] {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}


.payment-header[b-bkssebwk07] {
    margin-bottom: 25px;
}


    .payment-header h2[b-bkssebwk07] {
        margin: 0 0 6px;
        color: #0f172a;
        font-size: 1.4rem;
        font-weight: 800;
    }


    .payment-header p[b-bkssebwk07] {
        margin: 0;
        color: #64748b;
        font-size: 0.88rem;
    }


/* ========================================================= */
/* BUYER                                                     */
/* ========================================================= */

.buyer-card[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dbeafe;
    border-radius: 15px;
    background: #f8fbff;
}


.buyer-icon[b-bkssebwk07] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dbeafe;
    color: #2563eb;
}


.buyer-label[b-bkssebwk07] {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.7px;
}


.buyer-card strong[b-bkssebwk07] {
    display: block;
    margin-bottom: 2px;
    color: #0f172a;
    font-size: 0.9rem;
}


.buyer-card span:last-child[b-bkssebwk07] {
    color: #64748b;
    font-size: 0.8rem;
}


/* ========================================================= */
/* PAYMENT METHOD                                            */
/* ========================================================= */

.payment-method[b-bkssebwk07] {
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #fafcff;
}


.payment-method-header[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}


.payment-method-icon[b-bkssebwk07] {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 1.2rem;
}


.payment-method-header h3[b-bkssebwk07] {
    margin: 0 0 3px;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
}


.payment-method-header span[b-bkssebwk07] {
    color: #64748b;
    font-size: 0.78rem;
}


/* ========================================================= */
/* PAYMENT INFO                                              */
/* ========================================================= */

.payment-info[b-bkssebwk07] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    margin-bottom: 22px;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    background: #eff6ff;
}


.payment-info-icon[b-bkssebwk07] {
    flex-shrink: 0;
    color: #2563eb;
    font-size: 1rem;
}


.payment-info strong[b-bkssebwk07] {
    display: block;
    margin-bottom: 5px;
    color: #1e3a8a;
    font-size: 0.82rem;
}


.payment-info p[b-bkssebwk07] {
    margin: 0 0 5px;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.5;
}


.payment-info small[b-bkssebwk07] {
    color: #64748b;
    font-size: 0.73rem;
}


/* ========================================================= */
/* INPUT                                                     */
/* ========================================================= */

.checkout-field[b-bkssebwk07] {
    margin-bottom: 20px;
}


    .checkout-field label[b-bkssebwk07] {
        display: block;
        margin-bottom: 8px;
        color: #334155;
        font-size: 0.85rem;
        font-weight: 700;
    }


.checkout-input-wrapper[b-bkssebwk07] {
    position: relative;
}


    .checkout-input-wrapper i[b-bkssebwk07] {
        position: absolute;
        top: 50%;
        left: 15px;
        z-index: 2;
        color: #94a3b8;
        font-size: 1rem;
        transform: translateY(-50%);
        pointer-events: none;
    }


    .checkout-input-wrapper .form-control[b-bkssebwk07] {
        height: 52px;
        padding-left: 44px;
        border: 1px solid #dbe3ed;
        border-radius: 13px;
        background: #ffffff;
        color: #0f172a;
        box-shadow: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }


        .checkout-input-wrapper .form-control[b-bkssebwk07]::placeholder {
            color: #94a3b8;
        }


        .checkout-input-wrapper .form-control:focus[b-bkssebwk07] {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }


/* ========================================================= */
/* EMAIL DELIVERY NOTE                                       */
/* ========================================================= */

.email-delivery-note[b-bkssebwk07] {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: -8px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.5;
}


    .email-delivery-note > i[b-bkssebwk07] {
        flex-shrink: 0;
        margin-top: 2px;
        color: #2563eb;
        font-size: 0.9rem;
    }


    .email-delivery-note strong[b-bkssebwk07] {
        color: #475569;
        font-weight: 700;
    }


/* ========================================================= */
/* TERMS AND CONDITIONS                                      */
/* ========================================================= */

.terms-check[b-bkssebwk07] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}


    .terms-check input[b-bkssebwk07] {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        margin-top: 2px;
        cursor: pointer;
        accent-color: #2563eb;
    }


    .terms-check label[b-bkssebwk07] {
        cursor: pointer;
    }


    .terms-check a[b-bkssebwk07] {
        color: #2563eb;
        font-weight: 600;
        text-decoration: none;
    }


        .terms-check a:hover[b-bkssebwk07] {
            text-decoration: underline;
        }


/* ========================================================= */
/* ERROR                                                     */
/* ========================================================= */

.checkout-error-message[b-bkssebwk07] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.82rem;
}


/* ========================================================= */
/* PRIMARY BUTTON                                            */
/* ========================================================= */

.checkout-primary-button[b-bkssebwk07] {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 14px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}


    .checkout-primary-button:hover:not(:disabled)[b-bkssebwk07] {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    }


    .checkout-primary-button:active:not(:disabled)[b-bkssebwk07] {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
    }


    .checkout-primary-button:disabled[b-bkssebwk07] {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }


/* ========================================================= */
/* PAYMENT SECURITY                                          */
/* ========================================================= */

.payment-security[b-bkssebwk07] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: center;
}


    .payment-security i[b-bkssebwk07] {
        flex-shrink: 0;
    }


/* ========================================================= */
/* FOOTER                                                    */
/* ========================================================= */

.checkout-footer[b-bkssebwk07] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    color: #94a3b8;
    font-size: 0.75rem;
    text-align: center;
}


    .checkout-footer i[b-bkssebwk07] {
        color: #16a34a;
    }


/* ========================================================= */
/* PRODUCT NOT FOUND                                         */
/* ========================================================= */

.checkout-error[b-bkssebwk07] {
    width: 100%;
    max-width: 500px;
    margin: 100px auto;
    padding: 45px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}


    .checkout-error > i[b-bkssebwk07] {
        display: block;
        margin-bottom: 15px;
        color: #dc2626;
        font-size: 2.5rem;
    }


    .checkout-error h3[b-bkssebwk07] {
        margin-bottom: 8px;
        color: #0f172a;
        font-weight: 800;
    }


    .checkout-error p[b-bkssebwk07] {
        margin-bottom: 25px;
        color: #64748b;
    }


.checkout-secondary-button[b-bkssebwk07] {
    padding: 11px 20px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #ffffff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}


    .checkout-secondary-button:hover[b-bkssebwk07] {
        background: #f8fafc;
        border-color: #94a3b8;
    }


/* ========================================================= */
/* TABLET                                                    */
/* ========================================================= */

@media (max-width: 850px) {

    .checkout-page[b-bkssebwk07] {
        padding: 45px 16px;
    }


    .checkout-grid[b-bkssebwk07] {
        grid-template-columns: 1fr;
    }


    .checkout-header h1[b-bkssebwk07] {
        font-size: 2rem;
    }
}


/* ========================================================= */
/* MOBILE                                                    */
/* ========================================================= */

@media (max-width: 576px) {

    .checkout-page[b-bkssebwk07] {
        padding: 30px 14px;
    }


    .checkout-header[b-bkssebwk07] {
        margin-bottom: 30px;
    }


        .checkout-header h1[b-bkssebwk07] {
            font-size: 1.7rem;
        }


        .checkout-header p[b-bkssebwk07] {
            font-size: 0.9rem;
        }


    .checkout-summary[b-bkssebwk07],
    .checkout-payment[b-bkssebwk07] {
        padding: 22px;
        border-radius: 21px;
    }


    .delivery-card[b-bkssebwk07] {
        padding: 21px;
        border-radius: 20px;
    }


    .summary-header h2[b-bkssebwk07] {
        font-size: 1.15rem;
    }


    .summary-price strong[b-bkssebwk07] {
        font-size: 1.5rem;
    }


    .payment-method[b-bkssebwk07] {
        padding: 17px;
    }


    .payment-info[b-bkssebwk07] {
        padding: 13px;
    }


    .delivery-card-header h3[b-bkssebwk07] {
        font-size: 0.95rem;
    }


    .delivery-card-description[b-bkssebwk07] {
        font-size: 0.8rem;
    }


    .delivery-email[b-bkssebwk07] {
        font-size: 0.8rem;
        word-break: break-word;
    }


    .terms-check[b-bkssebwk07] {
        font-size: 0.76rem;
    }


    .checkout-primary-button[b-bkssebwk07] {
        min-height: 52px;
    }


    .checkout-footer[b-bkssebwk07] {
        padding: 0 10px;
        font-size: 0.7rem;
    }
}


/* ========================================================= */
/* SMALL MOBILE                                              */
/* ========================================================= */

@media (max-width: 380px) {

    .checkout-page[b-bkssebwk07] {
        padding: 25px 10px;
    }


    .checkout-summary[b-bkssebwk07],
    .checkout-payment[b-bkssebwk07] {
        padding: 19px;
    }


    .delivery-card[b-bkssebwk07] {
        padding: 18px;
    }


    .checkout-header h1[b-bkssebwk07] {
        font-size: 1.55rem;
    }


    .checkout-header p[b-bkssebwk07] {
        font-size: 0.85rem;
    }


    .summary-header[b-bkssebwk07] {
        gap: 12px;
    }


    .product-icon[b-bkssebwk07] {
        width: 48px;
        height: 48px;
        border-radius: 13px;
    }


    .summary-header h2[b-bkssebwk07] {
        font-size: 1.05rem;
    }
}
/* /Components/Pages/Clients/DashboardClient.razor.rz.scp.css */
.client-dashboard[b-7loroxocsr] {
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 25px 70px;
}


/* ========================= */
/* HEADER */
/* ========================= */

.dashboard-header[b-7loroxocsr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.dashboard-eyebrow[b-7loroxocsr] {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #6c757d;
}

.dashboard-header h1[b-7loroxocsr] {
    margin: 5px 0 5px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

.dashboard-header p[b-7loroxocsr] {
    margin: 0;
    color: #7a8490;
    font-size: 15px;
}


/* ========================= */
/* ACCOUNT */
/* ========================= */

.account-pill[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 9px 16px 9px 9px;
    border: 1px solid #edf0f3;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
}

.account-avatar[b-7loroxocsr] {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    color: white;
    font-weight: 700;
    font-size: 17px;
}

.account-pill strong[b-7loroxocsr],
.account-pill span[b-7loroxocsr] {
    display: block;
}

.account-pill strong[b-7loroxocsr] {
    font-size: 13px;
}

.account-pill span[b-7loroxocsr] {
    font-size: 11px;
    color: #89919a;
    margin-top: 2px;
}


/* ========================= */
/* SUBSCRIPTION CARD */
/* ========================= */

.subscription-card[b-7loroxocsr] {
    background: #ffffff;
    border: 1px solid #edf0f3;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(20, 30, 45, .07);
    overflow: hidden;
}


/* ========================= */
/* TOP */
/* ========================= */

.subscription-top[b-7loroxocsr] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 32px;
    border-bottom: 1px solid #f0f2f4;
}

.plan-information[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 17px;
}

.plan-icon[b-7loroxocsr] {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.plan-label[b-7loroxocsr] {
    display: block;
    color: #8b949e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 3px;
}

.plan-information h2[b-7loroxocsr] {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.plan-description[b-7loroxocsr] {
    display: block;
    margin-top: 4px;
    color: #89919a;
    font-size: 13px;
}


/* ========================= */
/* ACTIVE */
/* ========================= */

.active-badge[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 30px;
    background: #ecfdf3;
    color: #16834b;
    font-size: 13px;
    font-weight: 700;
}

.active-dot[b-7loroxocsr] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #20b26b;
}


/* ========================= */
/* STATS */
/* ========================= */

.subscription-stats[b-7loroxocsr] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 25px 32px;
}

.stat-box[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border-radius: 18px;
    background: #f8f9fb;
}

.stat-icon[b-7loroxocsr] {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 13px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-content span[b-7loroxocsr] {
    display: block;
    color: #89919a;
    font-size: 11px;
    margin-bottom: 3px;
}

.stat-content strong[b-7loroxocsr] {
    display: block;
    font-size: 15px;
    font-weight: 750;
}


/* ========================= */
/* SECTIONS */
/* ========================= */

.dashboard-section[b-7loroxocsr] {
    padding: 8px 32px 30px;
}

.section-heading[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
}

.section-heading-icon[b-7loroxocsr] {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.device-icon[b-7loroxocsr] {
    background: #eef4ff;
    color: #2864d7;
}

.section-heading h3[b-7loroxocsr] {
    margin: 0;
    font-size: 15px;
    font-weight: 750;
}

.section-heading p[b-7loroxocsr] {
    margin: 3px 0 0;
    color: #8b949e;
    font-size: 12px;
}


/* ========================= */
/* DEVICE */
/* ========================= */

.device-card[b-7loroxocsr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px;
    border: 1px solid #edf0f3;
    border-radius: 19px;
}

.device-info[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 13px;
}

.device-status-icon[b-7loroxocsr] {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eefbf4;
    color: #15945b;
    font-size: 19px;
}

.device-info strong[b-7loroxocsr],
.device-info span[b-7loroxocsr] {
    display: block;
}

.device-info strong[b-7loroxocsr] {
    font-size: 13px;
}

.device-info span[b-7loroxocsr] {
    margin-top: 3px;
    color: #8a939d;
    font-size: 11px;
}


/* ========================= */
/* DEVICE BUTTON */
/* ========================= */

.btn-device-delete[b-7loroxocsr] {
    border: 0;
    border-radius: 12px;
    padding: 11px 16px;
    background: #111827;
    color: white;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

    .btn-device-delete:hover[b-7loroxocsr] {
        transform: translateY(-1px);
        background: #242c39;
    }

    .btn-device-delete:disabled[b-7loroxocsr] {
        opacity: .65;
        cursor: not-allowed;
    }


/* ========================= */
/* WAIT */
/* ========================= */

.device-wait[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a939d;
    font-size: 11px;
}

    .device-wait > i[b-7loroxocsr] {
        font-size: 18px;
    }

    .device-wait strong[b-7loroxocsr],
    .device-wait span[b-7loroxocsr] {
        display: block;
    }

    .device-wait strong[b-7loroxocsr] {
        color: #555e68;
        margin-bottom: 2px;
    }


/* ========================= */
/* DOWNLOAD */
/* ========================= */

.download-section[b-7loroxocsr] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: 0 32px 20px;
    padding: 20px;
    border-radius: 19px;
    background: #f8f9fb;
    border: 1px solid #edf0f3;
}

.download-title[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: 13px;
    font-weight: 750;
}

    .download-title i[b-7loroxocsr] {
        color: #2864d7;
        font-size: 16px;
    }

.download-section p[b-7loroxocsr] {
    margin: 5px 0 0;
    max-width: 650px;
    color: #89919a;
    font-size: 11px;
    line-height: 1.5;
}


/* ========================= */
/* DOWNLOAD BUTTON */
/* ========================= */

.btn-new-download[b-7loroxocsr] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #d7e2f4;
    background: white;
    color: #2864d7;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s ease;
}

    .btn-new-download:hover[b-7loroxocsr] {
        background: #eef4ff;
        color: #2058c2;
        border-color: #bfd2ef;
        transform: translateY(-1px);
    }

    .btn-new-download:disabled[b-7loroxocsr] {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
    }


/* ========================= */
/* DANGER */
/* ========================= */

.danger-section[b-7loroxocsr] {
    margin: 0 32px 32px;
    padding: 20px;
    border-radius: 19px;
    background: #fff8f8;
    border: 1px solid #f8dddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.danger-title[b-7loroxocsr] {
    color: #c73535;
    font-size: 13px;
    font-weight: 750;
}

    .danger-title i[b-7loroxocsr] {
        margin-right: 7px;
    }

.danger-section p[b-7loroxocsr] {
    margin: 5px 0 0;
    max-width: 650px;
    color: #9a7777;
    font-size: 11px;
}

.btn-cancel-subscription[b-7loroxocsr] {
    border: 1px solid #e6bcbc;
    background: white;
    color: #c73535;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: .2s ease;
}

    .btn-cancel-subscription:hover[b-7loroxocsr] {
        background: #c73535;
        color: white;
        border-color: #c73535;
    }


/* ========================= */
/* LOADING */
/* ========================= */

.client-loading[b-7loroxocsr] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-box[b-7loroxocsr] {
    text-align: center;
}

.loading-spinner[b-7loroxocsr] {
    width: 43px;
    height: 43px;
    margin: 0 auto 18px;
    border: 4px solid #e9ecef;
    border-top-color: #111827;
    border-radius: 50%;
    animation: dashboard-spin-b-7loroxocsr .8s linear infinite;
}

.loading-box h5[b-7loroxocsr] {
    margin: 0;
    font-weight: 750;
}

.loading-box p[b-7loroxocsr] {
    margin-top: 5px;
    color: #89919a;
    font-size: 13px;
}

@keyframes dashboard-spin-b-7loroxocsr {
    to {
        transform: rotate(360deg);
    }
}


/* ========================= */
/* MODAL */
/* ========================= */

.modal-overlay[b-7loroxocsr] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, .48);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cancel-modal[b-7loroxocsr] {
    width: 100%;
    max-width: 470px;
    background: white;
    border-radius: 25px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
    animation: modal-show-b-7loroxocsr .2s ease;
}

@keyframes modal-show-b-7loroxocsr {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
    }

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

.cancel-modal-icon[b-7loroxocsr] {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1f1;
    color: #cf3636;
    font-size: 20px;
    margin-bottom: 17px;
}

.cancel-modal-header[b-7loroxocsr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .cancel-modal-header h3[b-7loroxocsr] {
        margin: 0;
        font-size: 21px;
        font-weight: 800;
    }

.modal-close[b-7loroxocsr] {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: #f5f6f7;
    color: #68717b;
    font-size: 20px;
}

.cancel-modal-text[b-7loroxocsr] {
    margin: 20px 0 8px;
    color: #7e8790;
    font-size: 13px;
}

.cancel-plan[b-7loroxocsr] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: #f7f8fa;
    font-size: 13px;
}

    .cancel-plan i[b-7loroxocsr] {
        font-size: 18px;
    }

.warning-box[b-7loroxocsr] {
    display: flex;
    gap: 12px;
    margin-top: 17px;
    padding: 15px;
    border-radius: 14px;
    background: #fff9e9;
    color: #87691e;
}

    .warning-box > i[b-7loroxocsr] {
        font-size: 18px;
    }

    .warning-box strong[b-7loroxocsr],
    .warning-box span[b-7loroxocsr] {
        display: block;
    }

    .warning-box strong[b-7loroxocsr] {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .warning-box span[b-7loroxocsr] {
        font-size: 11px;
        line-height: 1.5;
    }

.cancel-modal-actions[b-7loroxocsr] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}

.btn-back[b-7loroxocsr],
.btn-confirm-cancel[b-7loroxocsr] {
    border: 0;
    border-radius: 11px;
    padding: 11px 17px;
    font-size: 12px;
    font-weight: 700;
}

.btn-back[b-7loroxocsr] {
    background: #f2f4f6;
    color: #59616a;
}

.btn-confirm-cancel[b-7loroxocsr] {
    background: #c73535;
    color: white;
}

    .btn-confirm-cancel:disabled[b-7loroxocsr],
    .btn-back:disabled[b-7loroxocsr] {
        opacity: .6;
    }


/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width: 850px) {

    .client-dashboard[b-7loroxocsr] {
        padding: 25px 15px 50px;
    }

    .dashboard-header[b-7loroxocsr] {
        align-items: flex-start;
        flex-direction: column;
    }

        .dashboard-header h1[b-7loroxocsr] {
            font-size: 28px;
        }

    .account-pill[b-7loroxocsr] {
        width: 100%;
    }

    .subscription-top[b-7loroxocsr] {
        padding: 24px 20px;
    }

    .subscription-stats[b-7loroxocsr] {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .dashboard-section[b-7loroxocsr] {
        padding: 5px 20px 25px;
    }

    .download-section[b-7loroxocsr] {
        margin-left: 20px;
        margin-right: 20px;
    }

    .danger-section[b-7loroxocsr] {
        margin: 0 20px 20px;
    }
}


@media(max-width: 600px) {

    .download-section[b-7loroxocsr] {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }

    .btn-new-download[b-7loroxocsr] {
        width: 100%;
    }

    .subscription-top[b-7loroxocsr] {
        flex-direction: column;
        gap: 18px;
    }

    .plan-information[b-7loroxocsr] {
        align-items: flex-start;
    }

    .plan-icon[b-7loroxocsr] {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 19px;
    }

    .plan-information h2[b-7loroxocsr] {
        font-size: 18px;
    }

    .subscription-stats[b-7loroxocsr] {
        grid-template-columns: 1fr;
    }

    .device-card[b-7loroxocsr] {
        align-items: flex-start;
        flex-direction: column;
    }

    .device-action[b-7loroxocsr] {
        width: 100%;
    }

    .btn-device-delete[b-7loroxocsr] {
        width: 100%;
    }

    .device-wait[b-7loroxocsr] {
        align-items: flex-start;
    }

    .danger-section[b-7loroxocsr] {
        align-items: flex-start;
        flex-direction: column;
    }

    .btn-cancel-subscription[b-7loroxocsr] {
        width: 100%;
    }

    .cancel-modal[b-7loroxocsr] {
        padding: 22px;
        border-radius: 20px;
    }

    .cancel-modal-actions[b-7loroxocsr] {
        flex-direction: column-reverse;
    }

    .btn-back[b-7loroxocsr],
    .btn-confirm-cancel[b-7loroxocsr] {
        width: 100%;
    }
}


/* ========================= */
/* SIN SUSCRIPCIÓN */
/* ========================= */

.no-subscription-card[b-7loroxocsr] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    background: white;
    border: 1px solid #e8edf3;
    border-radius: 28px;
    padding: 30px 32px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(15, 23, 42, .05);
}

    .no-subscription-card[b-7loroxocsr]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #3b82f6, #6366f1);
    }

.no-subscription-icon[b-7loroxocsr] {
    width: 64px;
    height: 64px;
    min-width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    color: #4f46e5;
    font-size: 1.5rem;
}

.no-subscription-content[b-7loroxocsr] {
    flex: 1;
}

.no-subscription-label[b-7loroxocsr] {
    display: block;
    margin-bottom: 5px;
    color: #94a3b8;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.no-subscription-content h2[b-7loroxocsr] {
    margin: 0;
    color: #111827;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.4px;
}

.no-subscription-content p[b-7loroxocsr] {
    margin: 7px 0 18px;
    max-width: 650px;
    color: #64748b;
    font-size: .9rem;
    line-height: 1.6;
}

.subscribe-button[b-7loroxocsr] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    border: none;
    border-radius: 13px;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: white;
    font-family: inherit;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(99, 102, 241, .22);
    transition: all .2s ease;
}

    .subscribe-button:hover[b-7loroxocsr] {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(99, 102, 241, .30);
    }

    .subscribe-button i:last-child[b-7loroxocsr] {
        transition: transform .2s ease;
    }

    .subscribe-button:hover i:last-child[b-7loroxocsr] {
        transform: translateX(3px);
    }


/* ========================= */
/* SIN SUSCRIPCIÓN - MOBILE */
/* ========================= */

@media(max-width: 600px) {

    .no-subscription-card[b-7loroxocsr] {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px 22px;
        gap: 18px;
        border-radius: 22px;
    }

    .no-subscription-icon[b-7loroxocsr] {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        font-size: 1.25rem;
    }

    .no-subscription-content h2[b-7loroxocsr] {
        font-size: 1.15rem;
    }

    .no-subscription-content p[b-7loroxocsr] {
        font-size: .84rem;
    }

    .subscribe-button[b-7loroxocsr] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/Cuenta.razor.rz.scp.css */
/* =========================================================
   CUENTA
   ========================================================= */

.auth-page[b-01yyurhi8u] {
    min-height: calc(100vh - 76px);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #f5f8fb;
}


/* =========================================================
   TARJETA
   ========================================================= */

.auth-card[b-01yyurhi8u] {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(32, 52, 59, .08);
    border: 1px solid rgba(32, 52, 59, .05);
}


/* =========================================================
   HEADER
   ========================================================= */

.auth-header[b-01yyurhi8u] {
    text-align: center;
    margin-bottom: 35px;
}

    .auth-header h1[b-01yyurhi8u],
    .auth-header h2[b-01yyurhi8u] {
        color: #20343b;
        font-family: 'Manrope', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .auth-header p[b-01yyurhi8u] {
        color: #64748b;
        font-size: .95rem;
        line-height: 1.6;
        margin: 0;
    }


/* =========================================================
   FORMULARIO
   ========================================================= */

.auth-form[b-01yyurhi8u] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field[b-01yyurhi8u] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .auth-field label[b-01yyurhi8u] {
        color: #20343b;
        font-size: .9rem;
        font-weight: 600;
    }


/* =========================================================
   INPUT
   ========================================================= */

.input-wrapper[b-01yyurhi8u] {
    position: relative;
    width: 100%;
}

    .input-wrapper .form-control[b-01yyurhi8u] {
        width: 100%;
        height: 52px;
        border: 1px solid #dce5eb;
        border-radius: 14px;
        padding: 0 16px;
        font-size: .95rem;
        color: #20343b;
        background: #fbfcfd;
        box-shadow: none;
        transition: .25s ease;
    }

        .input-wrapper .form-control[b-01yyurhi8u]::placeholder {
            color: #9aa8b1;
        }

        .input-wrapper .form-control:hover[b-01yyurhi8u] {
            border-color: #b8c9d2;
        }

        .input-wrapper .form-control:focus[b-01yyurhi8u] {
            border-color: #4d8799;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(77, 135, 153, .10);
            outline: none;
        }


/* =========================================================
   PASSWORD LABEL
   ========================================================= */

.password-label[b-01yyurhi8u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =========================================================
   BOTÓN PRINCIPAL
   ========================================================= */

.auth-button[b-01yyurhi8u] {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 15px;
    background: #4d8799;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 8px 20px rgba(77, 135, 153, .18);
}

    .auth-button:hover[b-01yyurhi8u] {
        background: #3f7485;
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(77, 135, 153, .25);
    }

    .auth-button:active[b-01yyurhi8u] {
        transform: translateY(0);
    }

    .auth-button:disabled[b-01yyurhi8u] {
        opacity: .7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

.login-arrow[b-01yyurhi8u],
.register-arrow[b-01yyurhi8u] {
    transition: transform .25s ease;
}

.auth-button:hover .login-arrow[b-01yyurhi8u],
.auth-button:hover .register-arrow[b-01yyurhi8u] {
    transform: translateX(4px);
}


/* =========================================================
   ERROR
   ========================================================= */

.auth-error[b-01yyurhi8u] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border-radius: 12px;
    background: #fff1f1;
    border: 1px solid #ffd4d4;
    color: #c0392b;
    font-size: .88rem;
    line-height: 1.4;
}

    .auth-error i[b-01yyurhi8u] {
        font-size: 1.1rem;
        flex-shrink: 0;
    }


/* =========================================================
   DIVISOR
   ========================================================= */

.auth-divider[b-01yyurhi8u] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #a0adb5;
    font-size: .85rem;
}

    .auth-divider[b-01yyurhi8u]::before,
    .auth-divider[b-01yyurhi8u]::after {
        content: "";
        height: 1px;
        flex: 1;
        background: #e6edf1;
    }

    .auth-divider span[b-01yyurhi8u] {
        flex-shrink: 0;
    }


/* =========================================================
   CAMBIAR LOGIN / REGISTRO
   ========================================================= */

.auth-switch[b-01yyurhi8u] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    text-align: center;
    font-size: .88rem;
    color: #71808a;
}

    .auth-switch button[b-01yyurhi8u] {
        padding: 0;
        border: none;
        background: transparent;
        color: #4d8799;
        font-weight: 700;
        cursor: pointer;
        transition: .2s ease;
    }

        .auth-switch button:hover[b-01yyurhi8u] {
            color: #315f6d;
            text-decoration: underline;
        }


/* =========================================================
   SPINNER
   ========================================================= */

.auth-button .spinner-border[b-01yyurhi8u] {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 576px) {

    .auth-page[b-01yyurhi8u] {
        min-height: calc(100vh - 70px);
        padding: 30px 15px;
        align-items: flex-start;
    }

    .auth-card[b-01yyurhi8u] {
        padding: 32px 24px;
        border-radius: 22px;
        margin-top: 20px;
    }

    .auth-header[b-01yyurhi8u] {
        margin-bottom: 28px;
    }

        .auth-header h1[b-01yyurhi8u],
        .auth-header h2[b-01yyurhi8u] {
            font-size: 1.7rem;
        }

        .auth-header p[b-01yyurhi8u] {
            font-size: .9rem;
        }

    .auth-form[b-01yyurhi8u] {
        gap: 17px;
    }

    .input-wrapper .form-control[b-01yyurhi8u] {
        height: 50px;
    }

    .auth-button[b-01yyurhi8u] {
        min-height: 52px;
    }
}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 375px) {

    .auth-page[b-01yyurhi8u] {
        padding: 20px 12px;
    }

    .auth-card[b-01yyurhi8u] {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .auth-header h1[b-01yyurhi8u],
    .auth-header h2[b-01yyurhi8u] {
        font-size: 1.55rem;
    }

    .auth-header p[b-01yyurhi8u] {
        font-size: .85rem;
    }

    .auth-switch[b-01yyurhi8u] {
        font-size: .82rem;
    }
}
.auth-field label[b-01yyurhi8u] {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.field-hint[b-01yyurhi8u] {
    font-size: 11px;
    font-weight: 600;
    color: #8b95a5;
}
/* /Components/Pages/Home.razor.rz.scp.css */


.modern-home[b-gkur13q7ed] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(15,23,42,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.055) 1px, transparent 1px), linear-gradient(180deg,#ffffff 0%,#f8fafc 35%,#f1f5f9 100%);
    background-size: 90px 90px, 90px 90px, auto;
}

    .modern-home[b-gkur13q7ed]::before {
        content: "";
        position: absolute;
        width: 900px;
        height: 900px;
        top: -450px;
        right: -250px;
        pointer-events: none;
    }

    .modern-home[b-gkur13q7ed]::after {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        bottom: -350px;
        left: -250px;
        pointer-events: none;
    }

    .modern-home section[b-gkur13q7ed] {
        position: relative;
        z-index: 2;
    }

        .modern-home section:not(:last-child)[b-gkur13q7ed]::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: min(1100px,90%);
            height: 1px;
            background: linear-gradient( 90deg, transparent, rgba(148,163,184,.35), transparent );
        }

.whatsapp-button[b-gkur13q7ed] {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37,211,102,.35);
    z-index: 3000;
    transition: .3s;
}

    .whatsapp-button:hover[b-gkur13q7ed] {
        transform: scale(1.08);
        color: white;
        box-shadow: 0 20px 45px rgba(37,211,102,.45);
    }

    .whatsapp-button:active[b-gkur13q7ed] {
        transform: scale(.95);
    }


@media(max-width:768px) {

    .whatsapp-button[b-gkur13q7ed] {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
        font-size: 1.8rem;
    }
}

.whatsapp-button[b-gkur13q7ed] {
    animation: whatsappPulse-b-gkur13q7ed 2.5s infinite;
}

@keyframes whatsappPulse-b-gkur13q7ed {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
/* /Components/Pages/ProductoDetalle.razor.rz.scp.css */
/* ========================================================= */
/* PRODUCT PAGE                                               */
/* ========================================================= */

.product-page[b-8v9aanc3px] {
    min-height: 100vh;
    background-color: #f8fafc;
    background-image: linear-gradient( rgba(100, 116, 139, 0.06) 1px, transparent 1px ), linear-gradient( 90deg, rgba(100, 116, 139, 0.06) 1px, transparent 1px );
    background-size: 50px 50px;
    color: #0f172a;
}


.product-container[b-8v9aanc3px] {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ========================================================= */
/* HERO                                                       */
/* ========================================================= */

.product-hero[b-8v9aanc3px] {
    position: relative;
    padding: 45px 0 90px;
    overflow: hidden;
}


    .product-hero[b-8v9aanc3px]::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -250px;
        right: -150px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.07);
        filter: blur(20px);
        pointer-events: none;
    }


/* ========================================================= */
/* VOLVER                                                      */
/* ========================================================= */

.product-back-link[b-8v9aanc3px] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 55px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}


    .product-back-link:hover[b-8v9aanc3px] {
        color: #2563eb;
    }


    .product-back-link i[b-8v9aanc3px] {
        transition: transform 0.2s ease;
    }


    .product-back-link:hover i[b-8v9aanc3px] {
        transform: translateX(-3px);
    }


/* ========================================================= */
/* HERO GRID                                                   */
/* ========================================================= */

.product-hero-grid[b-8v9aanc3px] {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: center;
}


/* ========================================================= */
/* HERO CONTENT                                                */
/* ========================================================= */

.product-hero-content[b-8v9aanc3px] {
    position: relative;
    z-index: 2;
}


.product-badge[b-8v9aanc3px] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 750;
}


.product-title[b-8v9aanc3px] {
    max-width: 650px;
    margin: 0 0 20px;
    color: #0f172a;
    font-size: clamp( 2.6rem, 5vw, 4.2rem );
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -2px;
}


.product-description[b-8v9aanc3px] {
    max-width: 570px;
    margin: 0 0 28px;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.7;
}


/* ========================================================= */
/* PRICE                                                       */
/* ========================================================= */

.product-price-box[b-8v9aanc3px] {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    padding: 20px 22px;
    margin-bottom: 28px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
}


.product-old-price[b-8v9aanc3px] {
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: line-through;
}


.product-current-price[b-8v9aanc3px] {
    display: flex;
    align-items: baseline;
    gap: 6px;
}


    .product-current-price span[b-8v9aanc3px] {
        color: #0f172a;
        font-size: 2.25rem;
        font-weight: 850;
        letter-spacing: -1px;
    }


    .product-current-price small[b-8v9aanc3px] {
        color: #64748b;
        font-size: 0.8rem;
        font-weight: 700;
    }


.product-price-period[b-8v9aanc3px] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    color: #64748b;
    font-size: 0.78rem;
}


    .product-price-period i[b-8v9aanc3px] {
        color: #2563eb;
    }


.product-saving[b-8v9aanc3px] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    margin-top: 12px;
    border-radius: 8px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 750;
}


/* ========================================================= */
/* HIGHLIGHTS                                                  */
/* ========================================================= */

.product-highlights[b-8v9aanc3px] {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 30px;
}


.product-highlight[b-8v9aanc3px] {
    display: flex;
    align-items: center;
    gap: 12px;
}


.highlight-icon[b-8v9aanc3px] {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.95rem;
}


.product-highlight strong[b-8v9aanc3px] {
    display: block;
    margin-bottom: 1px;
    color: #334155;
    font-size: 0.83rem;
}


.product-highlight span[b-8v9aanc3px] {
    display: block;
    color: #94a3b8;
    font-size: 0.74rem;
}


/* ========================================================= */
/* BUTTONS                                                     */
/* ========================================================= */

.product-buttons[b-8v9aanc3px] {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}


.product-primary-button[b-8v9aanc3px] {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: none;
    border-radius: 13px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}


    .product-primary-button:hover[b-8v9aanc3px] {
        background: #1d4ed8;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
    }


    .product-primary-button i[b-8v9aanc3px] {
        transition: transform 0.2s ease;
    }


    .product-primary-button:hover i[b-8v9aanc3px] {
        transform: translateX(3px);
    }


.product-secondary-button[b-8v9aanc3px] {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 21px;
    border: 1px solid #dbe3ed;
    border-radius: 13px;
    background: #ffffff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}


    .product-secondary-button:hover[b-8v9aanc3px] {
        background: #f8fafc;
        border-color: #cbd5e1;
        color: #0f172a;
        transform: translateY(-1px);
    }


/* ========================================================= */
/* SECURITY                                                    */
/* ========================================================= */

.product-security[b-8v9aanc3px] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    color: #94a3b8;
    font-size: 0.72rem;
}


    .product-security i[b-8v9aanc3px] {
        color: #16a34a;
    }


/* ========================================================= */
/* PRODUCT PREVIEW                                              */
/* ========================================================= */

.product-preview[b-8v9aanc3px] {
    position: relative;
    width: 100%;
}


/* ========================================================= */
/* GALLERY TITLE                                                */
/* ========================================================= */

.preview-gallery-title[b-8v9aanc3px] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 4px 4px 2px;
}


    .preview-gallery-title > i[b-8v9aanc3px] {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: #e8f1f4;
        color: #4d8799;
        font-size: 1.15rem;
    }


    .preview-gallery-title div[b-8v9aanc3px] {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }


    .preview-gallery-title strong[b-8v9aanc3px] {
        color: #26343b;
        font-size: 1rem;
        font-weight: 700;
    }


    .preview-gallery-title span[b-8v9aanc3px] {
        color: #71828a;
        font-size: 0.78rem;
    }


/* ========================================================= */
/* IMAGE CONTAINER                                              */
/* ========================================================= */

.preview-image-container[b-8v9aanc3px] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: #f1f5f7;
    border: 1px solid #dce7eb;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 8px 25px rgba(31, 41, 51, 0.08);
}


/* ========================================================= */
/* IMAGES                                                      */
/* ========================================================= */

.preview-image[b-8v9aanc3px] {
    position: relative;
    width: 100%;
    height: 180px;
    min-width: 0;
    padding: 4px;
    border: 1px solid #d9e4e8;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(31, 41, 51, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


    .preview-image img[b-8v9aanc3px] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }


    .preview-image:hover[b-8v9aanc3px] {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(31, 41, 51, 0.12);
    }


        .preview-image:hover img[b-8v9aanc3px] {
            transform: scale(1.05);
        }


    /* ========================================================= */
    /* HOVER OSCURO                                                */
    /* ========================================================= */

    .preview-image[b-8v9aanc3px]::after {
        content: "";
        position: absolute;
        inset: 4px;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0);
        transition: background 0.25s ease;
        pointer-events: none;
    }


    .preview-image:hover[b-8v9aanc3px]::after {
        background: rgba(0, 0, 0, 0.08);
    }


/* ========================================================= */
/* MODAL                                                       */
/* ========================================================= */

.image-modal[b-8v9aanc3px] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    animation: imageModalFade-b-8v9aanc3px 0.2s ease;
}


.image-modal-content[b-8v9aanc3px] {
    position: relative;
    max-width: 1000px;
    max-height: 90vh;
    animation: imageModalZoom-b-8v9aanc3px 0.25s ease;
}


    .image-modal-content img[b-8v9aanc3px] {
        display: block;
        max-width: 90vw;
        max-height: 85vh;
        width: auto;
        height: auto;
        border-radius: 16px;
        object-fit: contain;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    }


/* ========================================================= */
/* MODAL CLOSE                                                 */
/* ========================================================= */

.image-modal-close[b-8v9aanc3px] {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #26343b;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: 0.2s ease;
}


    .image-modal-close:hover[b-8v9aanc3px] {
        transform: scale(1.08);
        background: #f4f8fa;
    }


/* ========================================================= */
/* ANIMATIONS                                                  */
/* ========================================================= */

@keyframes imageModalFade-b-8v9aanc3px {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes imageModalZoom-b-8v9aanc3px {

    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* ========================================================= */
/* TABLET                                                      */
/* ========================================================= */

@media (max-width: 950px) {

    .product-hero-grid[b-8v9aanc3px] {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .product-hero-content[b-8v9aanc3px] {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }


    .product-description[b-8v9aanc3px] {
        margin-left: auto;
        margin-right: auto;
    }


    .product-price-box[b-8v9aanc3px] {
        align-items: center;
    }


    .product-highlights[b-8v9aanc3px] {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }


    .product-buttons[b-8v9aanc3px] {
        justify-content: center;
    }


    .product-security[b-8v9aanc3px] {
        justify-content: center;
    }


    .product-preview[b-8v9aanc3px] {
        max-width: 720px;
        margin: 0 auto;
    }


    .preview-image[b-8v9aanc3px] {
        height: 190px;
    }
}


/* ========================================================= */
/* MOBILE                                                      */
/* ========================================================= */

@media (max-width: 650px) {

    .product-container[b-8v9aanc3px] {
        padding-left: 15px;
        padding-right: 15px;
    }


    .product-hero[b-8v9aanc3px] {
        padding-top: 30px;
        padding-bottom: 65px;
    }


    .product-back-link[b-8v9aanc3px] {
        margin-bottom: 35px;
    }


    .product-title[b-8v9aanc3px] {
        font-size: 2.55rem;
        letter-spacing: -1.5px;
    }


    .product-description[b-8v9aanc3px] {
        font-size: 0.9rem;
    }


    .product-price-box[b-8v9aanc3px] {
        width: 100%;
        min-width: 0;
    }


    .product-current-price span[b-8v9aanc3px] {
        font-size: 2rem;
    }


    .product-preview[b-8v9aanc3px] {
        width: 100%;
    }


    .preview-gallery-title[b-8v9aanc3px] {
        gap: 10px;
    }


        .preview-gallery-title > i[b-8v9aanc3px] {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            font-size: 1rem;
        }


        .preview-gallery-title strong[b-8v9aanc3px] {
            font-size: 0.9rem;
        }


        .preview-gallery-title span[b-8v9aanc3px] {
            font-size: 0.7rem;
        }


    .preview-image-container[b-8v9aanc3px] {
        gap: 8px;
        padding: 10px;
        border-radius: 16px;
    }


    .preview-image[b-8v9aanc3px] {
        height: 120px;
        padding: 3px;
        border-radius: 12px;
    }


        .preview-image img[b-8v9aanc3px] {
            border-radius: 9px;
        }


        .preview-image[b-8v9aanc3px]::after {
            inset: 3px;
            border-radius: 9px;
        }


    .image-modal[b-8v9aanc3px] {
        padding: 15px;
    }


    .image-modal-content img[b-8v9aanc3px] {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 12px;
    }


    .image-modal-close[b-8v9aanc3px] {
        top: -12px;
        right: -8px;
        width: 38px;
        height: 38px;
    }


    .product-buttons[b-8v9aanc3px] {
        width: 100%;
    }


    .product-primary-button[b-8v9aanc3px],
    .product-secondary-button[b-8v9aanc3px] {
        flex: 1;
    }
}


/* ========================================================= */
/* SMALL MOBILE                                                */
/* ========================================================= */

@media (max-width: 400px) {

    .product-title[b-8v9aanc3px] {
        font-size: 2.2rem;
    }


    .product-buttons[b-8v9aanc3px] {
        flex-direction: column;
    }


    .product-primary-button[b-8v9aanc3px],
    .product-secondary-button[b-8v9aanc3px] {
        width: 100%;
        flex: none;
    }


    .product-highlights[b-8v9aanc3px] {
        gap: 15px;
    }


    .product-highlight span[b-8v9aanc3px] {
        font-size: 0.7rem;
    }


    .preview-image[b-8v9aanc3px] {
        height: 105px;
    }
}
/* ========================================================= */
/* PRODUCT CTA                                                 */
/* ========================================================= */

.product-cta-section[b-8v9aanc3px] {
    padding: 80px 0 100px;
}


.product-cta[b-8v9aanc3px] {
    position: relative;
    overflow: hidden;
    padding: 65px 30px;
    border: 1px solid #bfdbfe;
    border-radius: 30px;
    background: linear-gradient( 135deg, #eff6ff, #ffffff );
    text-align: center;
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.08);
}


    /* ========================================================= */
    /* DECORACIONES                                                */
    /* ========================================================= */

    .product-cta[b-8v9aanc3px]::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        top: -150px;
        left: -100px;
        border-radius: 50%;
        background: rgba(37, 99, 235, 0.08);
        pointer-events: none;
    }


    .product-cta[b-8v9aanc3px]::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        right: -100px;
        bottom: -140px;
        border-radius: 50%;
        background: rgba(59, 130, 246, 0.08);
        pointer-events: none;
    }


/* ========================================================= */
/* ICONO                                                       */
/* ========================================================= */

.cta-icon[b-8v9aanc3px] {
    position: relative;
    z-index: 1;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: #ffffff;
    color: #2563eb;
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}


/* ========================================================= */
/* BADGE                                                        */
/* ========================================================= */

.product-cta .section-badge[b-8v9aanc3px] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    margin-bottom: 14px;
    border: 1px solid #bfdbfe;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.8);
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 700;
}


/* ========================================================= */
/* TITULO                                                       */
/* ========================================================= */

.product-cta h2[b-8v9aanc3px] {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto 12px;
    color: #0f172a;
    font-size: 2.1rem;
    font-weight: 850;
    letter-spacing: -0.8px;
}


/* ========================================================= */
/* DESCRIPCIÓN                                                  */
/* ========================================================= */

.product-cta p[b-8v9aanc3px] {
    position: relative;
    z-index: 1;
    max-width: 580px;
    margin: 0 auto 28px;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* ========================================================= */
/* BOTONES                                                      */
/* ========================================================= */

.cta-buttons[b-8v9aanc3px] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ========================================================= */
/* LINK DEMO                                                    */
/* ========================================================= */

.cta-link[b-8v9aanc3px] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}


    .cta-link:hover[b-8v9aanc3px] {
        color: #1d4ed8;
        text-decoration: underline;
        transform: translateY(-1px);
    }


    .cta-link i[b-8v9aanc3px] {
        transition: transform 0.2s ease;
    }


    .cta-link:hover i[b-8v9aanc3px] {
        transform: translate(2px, -2px);
    }


/* ========================================================= */
/* TABLET                                                       */
/* ========================================================= */

@media (max-width: 650px) {

    .product-cta-section[b-8v9aanc3px] {
        padding: 55px 0 70px;
    }


    .product-cta[b-8v9aanc3px] {
        padding: 45px 20px;
        border-radius: 24px;
    }


        .product-cta h2[b-8v9aanc3px] {
            font-size: 1.7rem;
        }


        .product-cta p[b-8v9aanc3px] {
            font-size: 0.85rem;
        }


    .cta-buttons[b-8v9aanc3px] {
        flex-direction: column;
        gap: 16px;
    }


        .cta-buttons .product-primary-button[b-8v9aanc3px] {
            width: 100%;
        }


    .cta-link[b-8v9aanc3px] {
        justify-content: center;
    }
}


/* ========================================================= */
/* SMALL MOBILE                                                */
/* ========================================================= */

@media (max-width: 400px) {

    .product-cta[b-8v9aanc3px] {
        padding: 40px 18px;
        border-radius: 22px;
    }


    .cta-icon[b-8v9aanc3px] {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
        font-size: 1.2rem;
    }


    .product-cta h2[b-8v9aanc3px] {
        font-size: 1.5rem;
    }


    .product-cta p[b-8v9aanc3px] {
        font-size: 0.82rem;
        margin-bottom: 24px;
    }
}

.subscription-warning-overlay[b-8v9aanc3px] {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: subscriptionOverlayIn-b-8v9aanc3px .2s ease;
}


.subscription-warning-modal[b-8v9aanc3px] {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 34px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .22);
    animation: subscriptionModalIn-b-8v9aanc3px .25s ease;
}


.subscription-warning-close[b-8v9aanc3px] {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: #f5f7fa;
    color: #7b8492;
    font-size: 13px;
    cursor: pointer;
    transition: .2s ease;
}


    .subscription-warning-close:hover[b-8v9aanc3px] {
        background: #e9edf2;
        color: #111827;
    }


.subscription-warning-icon[b-8v9aanc3px] {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 17px;
    background: #eef4ff;
    color: #2864d7;
    font-size: 25px;
}


.subscription-warning-badge[b-8v9aanc3px] {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 9px;
    border-radius: 8px;
    background: #eef4ff;
    color: #2864d7;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}


.subscription-warning-content h2[b-8v9aanc3px] {
    margin: 0 0 12px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.4px;
}


.subscription-warning-content p[b-8v9aanc3px] {
    margin: 0 0 9px;
    color: #727c8b;
    font-size: 13px;
    line-height: 1.6;
}


.subscription-warning-actions[b-8v9aanc3px] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
}


.subscription-warning-secondary[b-8v9aanc3px] {
    padding: 11px 16px;
    border: 1px solid #e3e7ed;
    border-radius: 11px;
    background: white;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}


    .subscription-warning-secondary:hover[b-8v9aanc3px] {
        background: #f7f8fa;
        color: #111827;
    }


.subscription-warning-primary[b-8v9aanc3px] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 17px;
    border: 0;
    border-radius: 11px;
    background: #2864d7;
    color: white;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(40, 100, 215, .20);
    transition: .2s ease;
}


    .subscription-warning-primary:hover[b-8v9aanc3px] {
        background: #2058c2;
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(40, 100, 215, .25);
    }


@keyframes subscriptionOverlayIn-b-8v9aanc3px {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes subscriptionModalIn-b-8v9aanc3px {

    from {
        opacity: 0;
        transform: translateY(12px) scale(.97);
    }

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


@media(max-width: 600px) {

    .subscription-warning-modal[b-8v9aanc3px] {
        padding: 27px 22px;
        border-radius: 20px;
    }

    .subscription-warning-content h2[b-8v9aanc3px] {
        font-size: 19px;
    }

    .subscription-warning-actions[b-8v9aanc3px] {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .subscription-warning-secondary[b-8v9aanc3px],
    .subscription-warning-primary[b-8v9aanc3px] {
        width: 100%;
    }
}
/* /Components/Pages/RecuperarPassword.razor.rz.scp.css */
.auth-page[b-ls7kb8txkp] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f8fafc;
    background-image: linear-gradient( rgba(100, 116, 139, 0.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px );
    background-size: 50px 50px;
}


/* ============================= */
/* CARD */
/* ============================= */

.auth-card[b-ls7kb8txkp] {
    width: 100%;
    max-width: 470px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
}


/* ============================= */
/* HEADER */
/* ============================= */

.auth-header[b-ls7kb8txkp] {
    text-align: center;
    margin-bottom: 34px;
}


    .auth-header h2[b-ls7kb8txkp] {
        margin: 0 0 10px;
        color: #0f172a;
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.5px;
    }


    .auth-header p[b-ls7kb8txkp] {
        max-width: 380px;
        margin: 0 auto;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }


/* ============================= */
/* FORM */
/* ============================= */

.auth-form[b-ls7kb8txkp] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ============================= */
/* FIELD */
/* ============================= */

.auth-field[b-ls7kb8txkp] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .auth-field label[b-ls7kb8txkp] {
        color: #334155;
        font-size: 0.9rem;
        font-weight: 600;
    }


/* ============================= */
/* INPUT */
/* ============================= */

.input-wrapper[b-ls7kb8txkp] {
    position: relative;
    display: flex;
    align-items: center;
}


    .input-wrapper > i[b-ls7kb8txkp] {
        position: absolute;
        left: 16px;
        z-index: 2;
        color: #94a3b8;
        font-size: 1.05rem;
        pointer-events: none;
    }


    .input-wrapper .form-control[b-ls7kb8txkp] {
        width: 100%;
        height: 52px;
        padding: 0 16px 0 46px;
        border: 1px solid #dbe3ed;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 0.95rem;
        box-shadow: none;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }


        .input-wrapper .form-control[b-ls7kb8txkp]::placeholder {
            color: #94a3b8;
        }


        .input-wrapper .form-control:focus[b-ls7kb8txkp] {
            background: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
            outline: none;
        }


/* ============================= */
/* BUTTON */
/* ============================= */

.auth-button[b-ls7kb8txkp] {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 15px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


    .auth-button:hover:not(:disabled)[b-ls7kb8txkp] {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    }


    .auth-button:active:not(:disabled)[b-ls7kb8txkp] {
        transform: translateY(0);
    }


    .auth-button:disabled[b-ls7kb8txkp] {
        opacity: 0.7;
        cursor: not-allowed;
    }


/* ============================= */
/* ERROR */
/* ============================= */

.auth-error[b-ls7kb8txkp] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.88rem;
}


    .auth-error i[b-ls7kb8txkp] {
        font-size: 1rem;
        flex-shrink: 0;
    }


/* ============================= */
/* VALIDATION */
/* ============================= */

.validation-message[b-ls7kb8txkp] {
    margin-top: 3px;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 500;
}


/* ============================= */
/* SUCCESS */
/* ============================= */

.auth-success[b-ls7kb8txkp] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    background: #f0fdf4;
    color: #166534;
}


    .auth-success > i[b-ls7kb8txkp] {
        flex-shrink: 0;
        font-size: 1.8rem;
        margin-top: 2px;
    }


    .auth-success strong[b-ls7kb8txkp] {
        display: block;
        margin-bottom: 5px;
        font-size: 0.95rem;
    }


    .auth-success p[b-ls7kb8txkp] {
        margin: 0;
        color: #4d7c5b;
        font-size: 0.85rem;
        line-height: 1.5;
    }


/* ============================= */
/* SWITCH / VOLVER */
/* ============================= */

.auth-switch[b-ls7kb8txkp] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


    .auth-switch button[b-ls7kb8txkp] {
        padding: 0;
        border: none;
        background: transparent;
        color: #2563eb;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: color 0.2s ease;
    }


        .auth-switch button:hover[b-ls7kb8txkp] {
            color: #1d4ed8;
            text-decoration: underline;
        }


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 576px) {

    .auth-page[b-ls7kb8txkp] {
        min-height: 100vh;
        padding: 30px 16px;
    }


    .auth-card[b-ls7kb8txkp] {
        padding: 32px 24px;
        border-radius: 22px;
    }


    .auth-header[b-ls7kb8txkp] {
        margin-bottom: 28px;
    }


        .auth-header h2[b-ls7kb8txkp] {
            font-size: 1.7rem;
        }


        .auth-header p[b-ls7kb8txkp] {
            font-size: 0.9rem;
        }


    .auth-form[b-ls7kb8txkp] {
        gap: 17px;
    }


    .input-wrapper .form-control[b-ls7kb8txkp] {
        height: 50px;
    }


    .auth-button[b-ls7kb8txkp] {
        height: 52px;
    }
}
/* /Components/Pages/Reembolsos.razor.rz.scp.css */
/* =========================================================
   REEMBOLSOS
   ========================================================= */

.refund-page[b-ctobjftld8] {
    min-height: 100vh;
    padding: 30px 20px 100px;
    background: #f4f7fc;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.refund-container[b-ctobjftld8] {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.refund-header[b-ctobjftld8] {
    text-align: center;
    margin-bottom: 38px;
}

.refund-icon[b-ctobjftld8] {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    color: white;
    font-size: 25px;
    box-shadow: 0 14px 35px rgba(59, 130, 246, .18);
}

.refund-badge[b-ctobjftld8] {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: #eef4ff;
    border: 1px solid #dce8ff;
    color: #2864d7;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.refund-header h1[b-ctobjftld8] {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

.refund-header p[b-ctobjftld8] {
    max-width: 600px;
    margin: 14px auto 0;
    color: #89919a;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CARD
   ========================================================= */

.refund-card[b-ctobjftld8] {
    padding: 38px;
    background: white;
    border: 1px solid #e9edf3;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.refund-card-header[b-ctobjftld8] {
    margin-bottom: 30px;
    padding-bottom: 23px;
    border-bottom: 1px solid #edf0f4;
}

    .refund-card-header h2[b-ctobjftld8] {
        margin: 0 0 6px;
        color: #111827;
        font-size: 18px;
        font-weight: 750;
        letter-spacing: -.3px;
    }

    .refund-card-header p[b-ctobjftld8] {
        margin: 0;
        color: #9aa1aa;
        font-size: 12px;
        line-height: 1.5;
    }


/* =========================================================
   GRID
   ========================================================= */

.refund-grid[b-ctobjftld8] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
    margin-bottom: 22px;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.refund-field[b-ctobjftld8] {
    margin-bottom: 22px;
}

.refund-grid .refund-field[b-ctobjftld8] {
    margin-bottom: 0;
}

.refund-field label[b-ctobjftld8] {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-size: 12px;
    font-weight: 700;
}

.refund-field .form-control[b-ctobjftld8] {
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    background: #fafbfd;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    color: #1f2937;
    font-size: 13px;
    box-shadow: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .refund-field .form-control[b-ctobjftld8]::placeholder {
        color: #b0b7c0;
    }

    .refund-field .form-control:hover[b-ctobjftld8] {
        border-color: #d4dce7;
    }

    .refund-field .form-control:focus[b-ctobjftld8] {
        background: white;
        border-color: #6b9cf8;
        outline: none;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, .10);
    }


/* =========================================================
   SELECT
   ========================================================= */

.refund-field select.form-control[b-ctobjftld8] {
    cursor: pointer;
    color: #374151;
}

    .refund-field select.form-control:invalid[b-ctobjftld8],
    .refund-field select.form-control option[value=""][b-ctobjftld8] {
        color: #9ca3af;
    }


/* =========================================================
   TEXTAREA
   ========================================================= */

.refund-textarea[b-ctobjftld8] {
    min-height: 135px !important;
    resize: vertical;
    line-height: 1.6;
}


/* =========================================================
   VALIDACIONES
   ========================================================= */

.refund-field .validation-message[b-ctobjftld8] {
    display: block;
    margin-top: 6px;
    color: #dc5b5b;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   INFORMACIÓN
   ========================================================= */

.refund-info[b-ctobjftld8] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 8px 0 25px;
    padding: 15px 17px;
    background: #f7faff;
    border: 1px solid #e3edff;
    border-radius: 13px;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.65;
}

    .refund-info i[b-ctobjftld8] {
        flex-shrink: 0;
        margin-top: 2px;
        color: #4f83e9;
        font-size: 15px;
    }

    .refund-info a[b-ctobjftld8] {
        color: #2864d7;
        font-weight: 700;
        text-decoration: none;
        transition: color .2s ease;
    }

        .refund-info a:hover[b-ctobjftld8] {
            color: #174fae;
            text-decoration: underline;
        }


/* =========================================================
   BOTÓN
   ========================================================= */

.refund-submit[b-ctobjftld8] {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    border-radius: 13px;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    color: white;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, .18);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .refund-submit:hover[b-ctobjftld8] {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(59, 130, 246, .25);
    }

    .refund-submit:active[b-ctobjftld8] {
        transform: translateY(0);
    }

    .refund-submit:disabled[b-ctobjftld8] {
        opacity: .65;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .refund-submit i[b-ctobjftld8] {
        font-size: 14px;
    }


    /* =========================================================
   SPINNER
   ========================================================= */

    .refund-submit .spinner-border[b-ctobjftld8] {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }


/* =========================================================
   FORMULARIO ENVIADO
   ========================================================= */

.refund-page > h2[b-ctobjftld8] {
    width: 100%;
    max-width: 600px;
    margin: 120px auto;
    padding: 40px;
    text-align: center;
    background: white;
    border: 1px solid #e9edf3;
    border-radius: 24px;
    color: #111827;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width: 700px) {

    .refund-page[b-ctobjftld8] {
        padding: 65px 16px 70px;
    }

    .refund-container[b-ctobjftld8] {
        max-width: 100%;
    }

    .refund-header[b-ctobjftld8] {
        margin-bottom: 28px;
    }

        .refund-header h1[b-ctobjftld8] {
            font-size: 31px;
        }

        .refund-header p[b-ctobjftld8] {
            font-size: 13px;
        }

    .refund-card[b-ctobjftld8] {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .refund-grid[b-ctobjftld8] {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width: 480px) {

    .refund-page[b-ctobjftld8] {
        padding: 45px 12px 60px;
    }

    .refund-icon[b-ctobjftld8] {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 22px;
    }

    .refund-badge[b-ctobjftld8] {
        font-size: 10px;
    }

    .refund-header h1[b-ctobjftld8] {
        font-size: 27px;
        letter-spacing: -.8px;
    }

    .refund-header p[b-ctobjftld8] {
        max-width: 330px;
        font-size: 12px;
    }

    .refund-card[b-ctobjftld8] {
        padding: 23px 17px;
        border-radius: 19px;
    }

    .refund-card-header[b-ctobjftld8] {
        margin-bottom: 24px;
        padding-bottom: 19px;
    }

        .refund-card-header h2[b-ctobjftld8] {
            font-size: 16px;
        }

        .refund-card-header p[b-ctobjftld8] {
            font-size: 11px;
        }

    .refund-field[b-ctobjftld8] {
        margin-bottom: 18px;
    }

        .refund-field .form-control[b-ctobjftld8] {
            min-height: 45px;
            font-size: 12px;
        }

    .refund-textarea[b-ctobjftld8] {
        min-height: 125px !important;
    }

    .refund-info[b-ctobjftld8] {
        padding: 13px;
        font-size: 10.5px;
        gap: 9px;
    }

    .refund-submit[b-ctobjftld8] {
        min-height: 47px;
        font-size: 12px;
    }
}
/* =========================================================
   ÉXITO
   ========================================================= */

.refund-success[b-ctobjftld8] {
    width: 100%;
    max-width: 570px;
    margin: 70px auto;
    padding: 48px 42px;
    text-align: center;
    background: white;
    border: 1px solid #e9edf3;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .07);
}


/* CHECK */

.refund-success-icon[b-ctobjftld8] {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ecfdf3;
    border: 7px solid #f3fdf7;
    color: #22a861;
    font-size: 34px;
    box-shadow: 0 10px 30px rgba(34, 168, 97, .12);
    animation: refundSuccess-b-ctobjftld8 .45s ease-out;
}

    .refund-success-icon i[b-ctobjftld8] {
        font-weight: bold;
    }


/* BADGE */

.refund-success-badge[b-ctobjftld8] {
    display: inline-flex;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #24965b;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .4px;
}


/* TÍTULO */

.refund-success h2[b-ctobjftld8] {
    margin: 0;
    color: #111827;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -.7px;
}


/* DESCRIPCIÓN */

.refund-success > p[b-ctobjftld8] {
    max-width: 450px;
    margin: 13px auto 25px;
    color: #89919a;
    font-size: 13px;
    line-height: 1.7;
}


/* INFO */

.refund-success-info[b-ctobjftld8] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    padding: 14px 16px;
    text-align: left;
    background: #f7faff;
    border: 1px solid #e3edff;
    border-radius: 13px;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.6;
}

    .refund-success-info i[b-ctobjftld8] {
        flex-shrink: 0;
        margin-top: 2px;
        color: #4f83e9;
        font-size: 15px;
    }


/* BOTÓN */

.refund-success-button[b-ctobjftld8] {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    background: linear-gradient( 135deg, #3b82f6, #6366f1 );
    color: white;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(59, 130, 246, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .refund-success-button:hover[b-ctobjftld8] {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(59, 130, 246, .25);
    }

    .refund-success-button:active[b-ctobjftld8] {
        transform: translateY(0);
    }


/* ANIMACIÓN */

@keyframes refundSuccess-b-ctobjftld8 {

    0% {
        transform: scale(.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width: 480px) {

    .refund-success[b-ctobjftld8] {
        margin: 45px auto;
        padding: 38px 22px;
        border-radius: 22px;
    }

    .refund-success-icon[b-ctobjftld8] {
        width: 68px;
        height: 68px;
        font-size: 29px;
    }

    .refund-success h2[b-ctobjftld8] {
        font-size: 25px;
    }

    .refund-success > p[b-ctobjftld8] {
        font-size: 12px;
    }

    .refund-success-info[b-ctobjftld8] {
        font-size: 10.5px;
    }
}
/* /Components/Pages/Registro.razor.rz.scp.css */
/* ============================= */
/* AUTH PAGE */
/* ============================= */

.auth-page[b-kf1r7dh2v4] {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: linear-gradient(rgba(15,23,42,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.055) 1px, transparent 1px), linear-gradient(180deg,#ffffff 0%,#f8fafc 35%,#f1f5f9 100%);
    background-size: 90px 90px, 90px 90px, auto;
}


/* ============================= */
/* CARD */
/* ============================= */

.auth-card[b-kf1r7dh2v4] {
    width: 100%;
    max-width: 470px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .08);
}


/* ============================= */
/* HEADER */
/* ============================= */

.auth-header[b-kf1r7dh2v4] {
    text-align: center;
    margin-bottom: 34px;
}


.auth-logo[b-kf1r7dh2v4] {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 18px;
    padding: 10px;
}


    .auth-logo img[b-kf1r7dh2v4] {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


.auth-header h2[b-kf1r7dh2v4] {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.5px;
}


.auth-header p[b-kf1r7dh2v4] {
    margin: 0;
    color: #64748b;
    font-size: .95rem;
    line-height: 1.6;
}


/* ============================= */
/* FORM */
/* ============================= */

.auth-form[b-kf1r7dh2v4] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ============================= */
/* FIELD */
/* ============================= */

.auth-field[b-kf1r7dh2v4] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .auth-field label[b-kf1r7dh2v4] {
        color: #334155;
        font-size: .9rem;
        font-weight: 600;
    }


/* ============================= */
/* INPUT */
/* ============================= */

.input-wrapper[b-kf1r7dh2v4] {
    position: relative;
    display: flex;
    align-items: center;
}


    .input-wrapper > i[b-kf1r7dh2v4] {
        position: absolute;
        left: 16px;
        z-index: 2;
        color: #94a3b8;
        font-size: 1.05rem;
        pointer-events: none;
    }


    .input-wrapper .form-control[b-kf1r7dh2v4] {
        width: 100%;
        height: 52px;
        padding: 0 16px 0 46px;
        border: 1px solid #dbe3ed;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: .95rem;
        box-shadow: none;
        transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    }


        .input-wrapper .form-control[b-kf1r7dh2v4]::placeholder {
            color: #94a3b8;
        }


        .input-wrapper .form-control:focus[b-kf1r7dh2v4] {
            background: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, .10);
            outline: none;
        }


/* ============================= */
/* PASSWORD */
/* ============================= */

.password-label[b-kf1r7dh2v4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ============================= */
/* BUTTON */
/* ============================= */

.auth-button[b-kf1r7dh2v4] {
    width: 100%;
    height: 54px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 15px;
    background: #2563eb;
    color: white;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .20);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}


    .auth-button:hover:not(:disabled)[b-kf1r7dh2v4] {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, .25);
    }


    .auth-button:active:not(:disabled)[b-kf1r7dh2v4] {
        transform: translateY(0);
    }


    .auth-button:disabled[b-kf1r7dh2v4] {
        opacity: .7;
        cursor: not-allowed;
    }


/* ============================= */
/* DIVIDER */
/* ============================= */

.auth-divider[b-kf1r7dh2v4] {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #94a3b8;
    font-size: .8rem;
}


    .auth-divider[b-kf1r7dh2v4]::before,
    .auth-divider[b-kf1r7dh2v4]::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }


/* ============================= */
/* SWITCH */
/* ============================= */

.auth-switch[b-kf1r7dh2v4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    text-align: center;
    color: #64748b;
    font-size: .9rem;
}


    .auth-switch button[b-kf1r7dh2v4] {
        padding: 0;
        border: none;
        background: transparent;
        color: #2563eb;
        font-size: .9rem;
        font-weight: 700;
        cursor: pointer;
    }


        .auth-switch button:hover[b-kf1r7dh2v4] {
            color: #1d4ed8;
            text-decoration: underline;
        }


/* ============================= */
/* ERROR */
/* ============================= */

.auth-error[b-kf1r7dh2v4] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: .88rem;
}


    .auth-error i[b-kf1r7dh2v4] {
        font-size: 1rem;
        flex-shrink: 0;
    }


/* ============================= */
/* VALIDATION */
/* ============================= */

.validation-message[b-kf1r7dh2v4] {
    color: #dc2626;
    font-size: .8rem;
    margin-top: 4px;
}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 576px) {

    .auth-page[b-kf1r7dh2v4] {
        min-height: calc(100vh - 70px);
        padding: 30px 16px;
    }


    .auth-card[b-kf1r7dh2v4] {
        padding: 32px 24px;
        border-radius: 22px;
    }


    .auth-header[b-kf1r7dh2v4] {
        margin-bottom: 28px;
    }


        .auth-header h2[b-kf1r7dh2v4] {
            font-size: 1.7rem;
        }


        .auth-header p[b-kf1r7dh2v4] {
            font-size: .9rem;
        }


    .auth-logo[b-kf1r7dh2v4] {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }


    .auth-form[b-kf1r7dh2v4] {
        gap: 17px;
    }


    .input-wrapper .form-control[b-kf1r7dh2v4] {
        height: 50px;
    }


    .auth-button[b-kf1r7dh2v4] {
        height: 52px;
    }
}
/* /Components/Pages/RestablecerPassword.razor.rz.scp.css */
/* ========================================================= */
/* RESTABLECER PASSWORD                                      */
/* ========================================================= */

.auth-page[b-ff1sp4ho00] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f8fafc;
    background-image: linear-gradient( rgba(100, 116, 139, 0.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(100, 116, 139, 0.08) 1px, transparent 1px );
    background-size: 50px 50px;
}


/* ========================================================= */
/* CARD                                                      */
/* ========================================================= */

.auth-card[b-ff1sp4ho00] {
    width: 100%;
    max-width: 470px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
}


/* ========================================================= */
/* HEADER                                                    */
/* ========================================================= */

.auth-header[b-ff1sp4ho00] {
    text-align: center;
    margin-bottom: 34px;
}


    .auth-header h2[b-ff1sp4ho00] {
        margin: 0 0 10px;
        color: #0f172a;
        font-size: 2rem;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }


    .auth-header p[b-ff1sp4ho00] {
        max-width: 380px;
        margin: 0 auto;
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }


/* ========================================================= */
/* STATUS ICON                                               */
/* ========================================================= */

.auth-status-icon[b-ff1sp4ho00] {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
}


.auth-status-error[b-ff1sp4ho00] {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}


.auth-status-success[b-ff1sp4ho00] {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}


/* ========================================================= */
/* FORM                                                      */
/* ========================================================= */

.auth-form[b-ff1sp4ho00] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ========================================================= */
/* FIELD                                                     */
/* ========================================================= */

.auth-field[b-ff1sp4ho00] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


    .auth-field label[b-ff1sp4ho00] {
        color: #334155;
        font-size: 0.9rem;
        font-weight: 600;
    }


/* ========================================================= */
/* INPUT                                                     */
/* ========================================================= */

.input-wrapper[b-ff1sp4ho00] {
    position: relative;
    display: flex;
    align-items: center;
}


    .input-wrapper > i[b-ff1sp4ho00] {
        position: absolute;
        left: 16px;
        z-index: 2;
        color: #94a3b8;
        font-size: 1.05rem;
        pointer-events: none;
    }


    .input-wrapper .form-control[b-ff1sp4ho00] {
        width: 100%;
        height: 52px;
        padding: 0 16px 0 46px;
        border: 1px solid #dbe3ed;
        border-radius: 14px;
        background: #f8fafc;
        color: #0f172a;
        font-size: 0.95rem;
        box-shadow: none;
        outline: none;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }


        .input-wrapper .form-control[b-ff1sp4ho00]::placeholder {
            color: #94a3b8;
        }


        .input-wrapper .form-control:hover[b-ff1sp4ho00] {
            border-color: #cbd5e1;
        }


        .input-wrapper .form-control:focus[b-ff1sp4ho00] {
            background: #ffffff;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
        }


            .input-wrapper .form-control:focus + i[b-ff1sp4ho00] {
                color: #2563eb;
            }


/* ========================================================= */
/* VALIDATION                                                */
/* ========================================================= */

.validation-message[b-ff1sp4ho00] {
    margin-top: 2px;
    color: #dc2626;
    font-size: 0.8rem;
    font-weight: 500;
}


/* ========================================================= */
/* ERROR                                                     */
/* ========================================================= */

.auth-error[b-ff1sp4ho00] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.88rem;
    line-height: 1.4;
}


    .auth-error i[b-ff1sp4ho00] {
        flex-shrink: 0;
        font-size: 1rem;
    }


/* ========================================================= */
/* SUCCESS                                                   */
/* ========================================================= */

.auth-success[b-ff1sp4ho00] {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    background: #f0fdf4;
    color: #166534;
}


    .auth-success > i[b-ff1sp4ho00] {
        flex-shrink: 0;
        margin-top: 2px;
        color: #16a34a;
        font-size: 1.8rem;
    }


    .auth-success strong[b-ff1sp4ho00] {
        display: block;
        margin-bottom: 5px;
        color: #166534;
        font-size: 0.95rem;
        font-weight: 700;
    }


    .auth-success p[b-ff1sp4ho00] {
        margin: 0;
        color: #4d7c5b;
        font-size: 0.85rem;
        line-height: 1.5;
    }


/* ========================================================= */
/* BUTTON                                                    */
/* ========================================================= */

.auth-button[b-ff1sp4ho00] {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: none;
    border-radius: 15px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}


    .auth-button:hover:not(:disabled)[b-ff1sp4ho00] {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
    }


    .auth-button:active:not(:disabled)[b-ff1sp4ho00] {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
    }


    .auth-button:disabled[b-ff1sp4ho00] {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    }


    /* ========================================================= */
    /* SPINNER                                                   */
    /* ========================================================= */

    .auth-button .spinner-border[b-ff1sp4ho00] {
        width: 1rem;
        height: 1rem;
        border-width: 0.15em;
    }


/* ========================================================= */
/* BACK TO LOGIN                                             */
/* ========================================================= */

.auth-switch[b-ff1sp4ho00] {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


    .auth-switch button[b-ff1sp4ho00] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: none;
        background: transparent;
        color: #2563eb;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: color 0.2s ease, transform 0.2s ease;
    }


        .auth-switch button:hover[b-ff1sp4ho00] {
            color: #1d4ed8;
            text-decoration: underline;
        }


        .auth-switch button i[b-ff1sp4ho00] {
            transition: transform 0.2s ease;
        }


        .auth-switch button:hover i[b-ff1sp4ho00] {
            transform: translateX(-3px);
        }


/* ========================================================= */
/* LOADING                                                   */
/* ========================================================= */

.auth-loading[b-ff1sp4ho00] {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}


    .auth-loading .spinner-border[b-ff1sp4ho00] {
        width: 3rem;
        height: 3rem;
        border-width: 0.25em;
    }


    .auth-loading h5[b-ff1sp4ho00] {
        margin: 0;
        color: #475569;
        font-size: 0.95rem;
        font-weight: 600;
    }


/* ========================================================= */
/* MOBILE                                                    */
/* ========================================================= */

@media (max-width: 576px) {

    .auth-page[b-ff1sp4ho00] {
        min-height: 100vh;
        padding: 30px 16px;
    }


    .auth-card[b-ff1sp4ho00] {
        max-width: 100%;
        padding: 32px 24px;
        border-radius: 22px;
    }


    .auth-header[b-ff1sp4ho00] {
        margin-bottom: 28px;
    }


        .auth-header h2[b-ff1sp4ho00] {
            font-size: 1.7rem;
            letter-spacing: -0.3px;
        }


        .auth-header p[b-ff1sp4ho00] {
            font-size: 0.9rem;
        }


    .auth-form[b-ff1sp4ho00] {
        gap: 17px;
    }


    .input-wrapper .form-control[b-ff1sp4ho00] {
        height: 50px;
    }


    .auth-button[b-ff1sp4ho00] {
        min-height: 52px;
        border-radius: 14px;
    }


    .auth-status-icon[b-ff1sp4ho00] {
        width: 64px;
        height: 64px;
        margin-bottom: 18px;
        font-size: 1.7rem;
    }


    .auth-success[b-ff1sp4ho00] {
        padding: 16px;
        gap: 12px;
    }


        .auth-success > i[b-ff1sp4ho00] {
            font-size: 1.6rem;
        }
}


/* ========================================================= */
/* SMALL MOBILE                                              */
/* ========================================================= */

@media (max-width: 380px) {

    .auth-page[b-ff1sp4ho00] {
        padding: 20px 12px;
    }


    .auth-card[b-ff1sp4ho00] {
        padding: 28px 20px;
        border-radius: 20px;
    }


    .auth-header h2[b-ff1sp4ho00] {
        font-size: 1.55rem;
    }


    .auth-header p[b-ff1sp4ho00] {
        font-size: 0.85rem;
    }
}
/* /Components/Pages/Tabs.razor.rz.scp.css */
.tabs-container[b-a4ggzkawyg] {
    position: relative;
    display: flex;
    width: fit-content;
    background: #eef2f7;
    border-radius: 24px;
    padding: 6px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.05);
}

/* ========================= */
/* SLIDER */
/* ========================= */

.slider[b-a4ggzkawyg] {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(25% - 4px);
    height: calc(100% - 12px);
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: transform .45s cubic-bezier( .25, .9, .3, 1 );
}

/* ========================= */
/* TABS */
/* ========================= */

.tab[b-a4ggzkawyg] {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 14px 30px;
    border-radius: 18px;
    white-space: nowrap;
    font-weight: 600;
    color: #64748b;
    transition: color .25s, transform .25s;
}

    .tab:hover[b-a4ggzkawyg] {
        color: #0f172a;
    }

    .tab.active[b-a4ggzkawyg] {
        color: #0f172a;
        transform: scale(1.03);
    }

    /* iconos */

    .tab i[b-a4ggzkawyg] {
        margin-right: 8px;
    }

/* ========================= */
/* CONTENIDO */
/* ========================= */

.content-card[b-a4ggzkawyg] {
    margin-top: 25px;
    background: white;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px) {

    .tabs-container[b-a4ggzkawyg] {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        border-radius: 20px;
    }

        .tabs-container[b-a4ggzkawyg]::-webkit-scrollbar {
            display: none;
        }

    .tab[b-a4ggzkawyg] {
        flex-shrink: 0;
        padding: 14px 24px;
    }
}
/* /Components/Pages/TerminosyCondiciones.razor.rz.scp.css */
.legal-page[b-k9yotoyfts] {
    min-height: 100vh;
    padding: 100px 20px;
    background: #f8fafb;
}

.legal-header[b-k9yotoyfts] {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.legal-label[b-k9yotoyfts] {
    display: inline-block;
    margin-bottom: 14px;
    color: #4d8799;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.legal-header h1[b-k9yotoyfts] {
    margin-bottom: 15px;
    color: #1f2933;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
}

.legal-header p[b-k9yotoyfts] {
    margin: 0;
    color: #6b7280;
    font-size: 1.05rem;
}

.legal-content[b-k9yotoyfts] {
    max-width: 850px;
    margin: 0 auto;
    padding: 45px;
    background: white;
    border: 1px solid #e7edef;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(31, 41, 51, .05);
}

    .legal-content section[b-k9yotoyfts] {
        margin-bottom: 40px;
    }

        .legal-content section:last-of-type[b-k9yotoyfts] {
            margin-bottom: 0;
        }

    .legal-content h2[b-k9yotoyfts] {
        margin-bottom: 15px;
        color: #26343b;
        font-size: 1.3rem;
        font-weight: 750;
    }

    .legal-content p[b-k9yotoyfts] {
        margin-bottom: 14px;
        color: #5f6f76;
        font-size: .96rem;
        line-height: 1.8;
    }

        .legal-content p:last-child[b-k9yotoyfts] {
            margin-bottom: 0;
        }

.legal-update[b-k9yotoyfts] {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #e7edef;
    color: #718087;
    font-size: .85rem;
}

@media (max-width: 768px) {

    .legal-page[b-k9yotoyfts] {
        padding: 60px 15px 70px;
    }

    .legal-header[b-k9yotoyfts] {
        margin-bottom: 35px;
    }

        .legal-header h1[b-k9yotoyfts] {
            font-size: 2rem;
        }

        .legal-header p[b-k9yotoyfts] {
            font-size: .95rem;
        }

    .legal-content[b-k9yotoyfts] {
        padding: 28px 22px;
        border-radius: 18px;
    }

        .legal-content section[b-k9yotoyfts] {
            margin-bottom: 32px;
        }

        .legal-content h2[b-k9yotoyfts] {
            font-size: 1.15rem;
        }

        .legal-content p[b-k9yotoyfts] {
            font-size: .9rem;
            line-height: 1.7;
        }
}
/* /Components/Pages/Tutoriales.razor.rz.scp.css */
/* ========================================= */
/* PÁGINA */
/* ========================================= */

.tutorial-page[b-t91vvdwgv2] {
    min-height: 100vh;
    background: #f7fafc;
    padding: 70px 20px;
}

.tutorial-container[b-t91vvdwgv2] {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}


/* ========================================= */
/* HEADER */
/* ========================================= */

.tutorial-header[b-t91vvdwgv2] {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.tutorial-badge[b-t91vvdwgv2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: #e4edf8;
    color: #4d8799;
    font-size: .82rem;
    font-weight: 700;
}

.tutorial-header h2[b-t91vvdwgv2] {
    margin: 0 0 15px;
    color: #20343b;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
}

.tutorial-header p[b-t91vvdwgv2] {
    margin: 0;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ========================================= */
/* LAYOUT */
/* ========================================= */

.tutorial-layout[b-t91vvdwgv2] {
    display: grid;
    grid-template-columns: 295px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}


/* ========================================= */
/* SIDEBAR */
/* ========================================= */

.tutorial-sidebar[b-t91vvdwgv2] {
    position: sticky;
    top: 100px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .05);
}

.sidebar-title[b-t91vvdwgv2] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 5px 20px;
    border-bottom: 1px solid #edf1f5;
}

.sidebar-title-icon[b-t91vvdwgv2] {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 13px;
    background: #e4edf8;
    color: #4d8799;
    font-size: 1.15rem;
}

.sidebar-title strong[b-t91vvdwgv2] {
    display: block;
    color: #20343b;
    font-size: .95rem;
    font-weight: 800;
}

.sidebar-title span[b-t91vvdwgv2] {
    display: block;
    margin-top: 2px;
    color: #94a3b8;
    font-size: .75rem;
}


/* ========================================= */
/* CATEGORÍAS */
/* ========================================= */

.tutorial-categories[b-t91vvdwgv2] {
    display: flex;
    flex-direction: column;
}

.tutorial-category[b-t91vvdwgv2] {
    margin-top: 24px;
}

.category-title[b-t91vvdwgv2] {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 7px 10px;
    color: #94a3b8;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-icon[b-t91vvdwgv2] {
    width: 20px;
    text-align: center;
    color: #4d8799;
    font-size: .9rem;
}


/* ========================================= */
/* SUBCATEGORÍAS */
/* ========================================= */

.category-items[b-t91vvdwgv2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tutorial-nav-item[b-t91vvdwgv2] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border: none;
    border-radius: 13px;
    background: transparent;
    color: #64748b;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

    .tutorial-nav-item:hover[b-t91vvdwgv2] {
        background: #f1f7f8;
        color: #20343b;
        transform: translateX(3px);
    }

    .tutorial-nav-item.active[b-t91vvdwgv2] {
        background: #4d8799;
        color: #ffffff;
        box-shadow: 0 8px 22px rgba(77, 135, 153, .2);
    }

.tutorial-nav-icon[b-t91vvdwgv2] {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 7px;
    background: #eef3f6;
    color: #94a3b8;
    font-size: .65rem;
}

.tutorial-nav-item.active .tutorial-nav-icon[b-t91vvdwgv2] {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}

.item-arrow[b-t91vvdwgv2] {
    margin-left: auto;
    font-size: .7rem;
}


/* ========================================= */
/* CONTENIDO */
/* ========================================= */

.tutorial-content[b-t91vvdwgv2] {
    min-width: 0;
}

.tutorial-main[b-t91vvdwgv2] {
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, .05);
    animation: tutorialAppear-b-t91vvdwgv2 .35s ease;
}


/* ========================================= */
/* HEADER TUTORIAL */
/* ========================================= */

.tutorial-main-header[b-t91vvdwgv2] {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.tutorial-main-icon[b-t91vvdwgv2] {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 19px;
    background: #e4edf8;
    color: #4d8799;
    font-size: 1.5rem;
}

.tutorial-main-info[b-t91vvdwgv2] {
    min-width: 0;
}

.tutorial-main-category[b-t91vvdwgv2] {
    display: block;
    margin-bottom: 5px;
    color: #4d8799;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tutorial-main-header h2[b-t91vvdwgv2] {
    margin: 0 0 8px;
    color: #20343b;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.tutorial-main-header p[b-t91vvdwgv2] {
    max-width: 750px;
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}


/* ========================================= */
/* VIDEO */
/* ========================================= */

.tutorial-video[b-t91vvdwgv2] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 22px;
    background: #10191d;
}

.tutorial-video-player[b-t91vvdwgv2] {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #10191d;
}


/* ========================================= */
/* VIDEO PLACEHOLDER */
/* ========================================= */

.video-placeholder[b-t91vvdwgv2] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    text-align: center;
}

    .video-placeholder strong[b-t91vvdwgv2] {
        font-size: 1.05rem;
    }

    .video-placeholder span[b-t91vvdwgv2] {
        color: #94a3b8;
        font-size: .9rem;
    }

.video-play[b-t91vvdwgv2] {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #4d8799;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(77, 135, 153, .3);
}


/* ========================================= */
/* PASOS */
/* ========================================= */

.tutorial-steps[b-t91vvdwgv2] {
    padding: 28px;
    border: 1px solid #edf1f5;
    border-radius: 22px;
    background: #f7fafc;
}

.steps-header[b-t91vvdwgv2] {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.steps-icon[b-t91vvdwgv2] {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #ffffff;
    color: #4d8799;
    box-shadow: 0 5px 18px rgba(15, 23, 42, .05);
}

.steps-header h3[b-t91vvdwgv2] {
    margin: 0 0 3px;
    color: #20343b;
    font-size: 1.1rem;
    font-weight: 800;
}

.steps-header p[b-t91vvdwgv2] {
    margin: 0;
    color: #94a3b8;
    font-size: .85rem;
}


/* ========================================= */
/* LISTA PASOS */
/* ========================================= */

.steps-list[b-t91vvdwgv2] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tutorial-step[b-t91vvdwgv2] {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #475569;
    font-size: .93rem;
    line-height: 1.5;
}

.step-number[b-t91vvdwgv2] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #4d8799;
    color: #ffffff;
    font-size: .8rem;
    font-weight: 800;
}


/* ========================================= */
/* NAVEGACIÓN */
/* ========================================= */

.tutorial-navigation[b-t91vvdwgv2] {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.tutorial-next[b-t91vvdwgv2] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: #ffffff;
    color: #475569;
    font-family: inherit;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

    .tutorial-next:hover:not(:disabled)[b-t91vvdwgv2] {
        border-color: #4d8799;
        color: #4d8799;
        transform: translateY(-2px);
    }

    .tutorial-next:disabled[b-t91vvdwgv2] {
        opacity: .4;
        cursor: not-allowed;
    }


/* ========================================= */
/* ANIMACIÓN */
/* ========================================= */

@keyframes tutorialAppear-b-t91vvdwgv2 {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

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


/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 991px) {

    .tutorial-page[b-t91vvdwgv2] {
        padding: 55px 18px;
    }

    .tutorial-layout[b-t91vvdwgv2] {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 20px;
    }

    .tutorial-main[b-t91vvdwgv2] {
        padding: 28px;
    }

    .tutorial-main-header h2[b-t91vvdwgv2] {
        font-size: 1.7rem;
    }
}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 767px) {

    .tutorial-page[b-t91vvdwgv2] {
        padding: 40px 15px;
    }

    .tutorial-header[b-t91vvdwgv2] {
        margin-bottom: 35px;
    }

        .tutorial-header h2[b-t91vvdwgv2] {
            font-size: 2.1rem;
        }

        .tutorial-header p[b-t91vvdwgv2] {
            font-size: .95rem;
        }

    .tutorial-layout[b-t91vvdwgv2] {
        display: block;
    }

    .tutorial-sidebar[b-t91vvdwgv2] {
        position: static;
        margin-bottom: 20px;
        padding: 17px;
    }

    .tutorial-main[b-t91vvdwgv2] {
        padding: 22px;
        border-radius: 22px;
    }

    .tutorial-main-header[b-t91vvdwgv2] {
        gap: 13px;
    }

    .tutorial-main-icon[b-t91vvdwgv2] {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 1.3rem;
    }

    .tutorial-main-header h2[b-t91vvdwgv2] {
        font-size: 1.45rem;
    }

    .tutorial-main-header p[b-t91vvdwgv2] {
        font-size: .9rem;
    }

    .tutorial-video[b-t91vvdwgv2] {
        margin-bottom: 25px;
        border-radius: 17px;
    }

    .tutorial-steps[b-t91vvdwgv2] {
        padding: 20px;
    }

    .tutorial-navigation[b-t91vvdwgv2] {
        margin-top: 22px;
    }

    .tutorial-next[b-t91vvdwgv2] {
        padding: 10px 14px;
    }
}


/* ========================================= */
/* MOBILE PEQUEÑO */
/* ========================================= */

@media (max-width: 430px) {

    .tutorial-header h2[b-t91vvdwgv2] {
        font-size: 1.85rem;
    }

    .tutorial-main-header[b-t91vvdwgv2] {
        flex-direction: column;
    }

    .tutorial-main[b-t91vvdwgv2] {
        padding: 18px;
    }

    .tutorial-steps[b-t91vvdwgv2] {
        padding: 17px;
    }

    .tutorial-step[b-t91vvdwgv2] {
        align-items: flex-start;
    }

    .step-number[b-t91vvdwgv2] {
        margin-top: 1px;
    }

    .tutorial-navigation[b-t91vvdwgv2] {
        flex-direction: column;
    }

    .tutorial-next[b-t91vvdwgv2] {
        justify-content: center;
    }
}
.tutorial-video[b-t91vvdwgv2] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 35px;
    border-radius: 22px;
    background: #10191d;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
}

    .tutorial-video iframe[b-t91vvdwgv2] {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
    }
@media (max-width: 767px) {

    .tutorial-video[b-t91vvdwgv2] {
        border-radius: 17px;
        margin-bottom: 25px;
    }
}
