    /* Estilo fondo  */
    body {
        background-color: #f4f6f9;
    }

    .gov-card {
        border: none;
        border-top: 5px solid #ba424b;
        background: #ffffff;
        border-radius: 8px;
        transition: all 0.25s ease;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .gov-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


    /* Icono  */
    .gov-icon-wrapper {
        background-color: rgba(186, 66, 75, 0.08);
        color: #ba424b;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        margin-bottom: 20px;
        border: 1px solid rgba(186, 66, 75, 0.15);
    }


    .btn-ingresar {
        background-color: #ba424b;
        color: #ffffff;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        border-radius: 4px;
        padding: 12px;
        transition: all 0.2s ease;
    }

    .btn-ingresar:hover {
        background-color: #8f3238;
        color: #fff;
        transform: translateY(-1px);
    }


    .label-sistema {
        font-size: 0.7rem;
        font-weight: 800;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: block;
        margin-bottom: 5px;
    }

    .divider-gov {
        width: 40px;
        height: 3px;
        background-color: #ba424b;
        margin: 15px 0;
    }

    .header-divider {
        width: 70px;
        height: 4px;
        background: #ba424b;
        margin: 12px auto 0 auto;
        border-radius: 2px;
    }

    .project-title {
        font-weight: 700;
        color: #2c2c2c;
        line-height: 1.3;
    }

    /* ===== LANDING PUBLICA ===== */

    .landing-container {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .landing-title {
        font-weight: 800;
        font-size: 2rem;
        color: #2c2c2c;
    }

    .landing-subtitle {
        max-width: 600px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .btn-lg {
        height: 55px;
        font-size: 0.95rem;
    }



    /* Navbar */


    .navbar-cisp {
        background-color: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid #e9ecef;
        padding: 0.8rem 1.2rem;
    }

    .navbar-cisp .navbar-brand {
        font-weight: 800;
        font-size: 1.1rem;
        color: #2c2c2c;
    }

    .brand-text {
        font-weight: 700;
        line-height: 1.1;
    }

    .dev-tag {
        font-size: 0.6rem;
        background: #f1f3f5;
        color: #6c757d;
        padding: 2px 6px;
        border-radius: 4px;
        text-transform: uppercase;
        display: inline-block;
    }

    .navbar-cisp .nav-link {
        font-weight: 600;
        font-size: 0.9rem;
        color: #555 !important;
        border-radius: 6px;
        padding: 0.5rem 0.9rem !important;
        transition: all 0.2s ease;
    }

    .navbar-cisp .nav-link:hover {
        background: rgba(186, 66, 75, 0.08);
        color: #ba424b !important;
    }

    .navbar-cisp .nav-link.active {
        color: #ba424b !important;
        font-weight: 700;
    }

    .navbar-cisp .dropdown-menu {
        border: none;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        padding: 0.4rem 0;
    }

    .navbar-cisp .dropdown-item {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    .navbar-cisp .dropdown-item:hover {
        background: #f8f9fa;
    }

    .user-pill {
        background: #f4f6f9;
        border-radius: 20px;
    }

    /* ===== PERSONA / INDEX (Listado organizaciones) ===== */

    :root {
        --minint-ink: #4a1116;
        --minint-sky: #b3262d;
        --minint-mint: #d94a50;
        --minint-soft: #fdf4f4;
        --minint-line: #eed3d4;
    }

    .org-card {
        border: 1px solid var(--minint-line);
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(15, 42, 61, 0.08);
        overflow: hidden;
    }

    .org-card .card-header {
        background: linear-gradient(115deg, var(--minint-ink), var(--minint-sky));
        color: #fff;
        border-bottom: 0;
        padding: 0.9rem 1.2rem;
        position: relative;
    }

    .org-card .card-header::after {
        content: "";
        position: absolute;
        right: -30px;
        top: -35px;
        width: 170px;
        height: 170px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
        pointer-events: none;
    }

    .org-title {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: 0.3px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .org-subtitle {
        margin: 0;
        font-size: 0.8rem;
        opacity: 0.9;
    }

    .org-pill {
        display: inline-block;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 2px 10px;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.4px;
    }

    .org-actions .btn {
        border-radius: 8px;
        font-weight: 600;
    }

    .btn-minint {
        background: #ffffff;
        border-color: #ffffff;
        color: #8f1f25;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
    }

    .btn-minint:hover {
        background: #fff4f4;
        border-color: #fff4f4;
        color: #6f171c;
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    }

    .org-card .card-header .btn-minint:focus,
    .org-card .card-header .btn-minint:active {
        background: #ffffff !important;
        border-color: #ffffff !important;
        color: #8f1f25 !important;
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.35);
    }

    .org-card .card-body {
        background: #fff;
        padding-top: 0.9rem;
    }

    .org-card table thead th {
        /* background: var(--minint-soft);
        color: var(--minint-ink);
        border-color: var(--minint-line); */
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.25px;
        white-space: nowrap;
    }

    .org-card table tbody td {
        vertical-align: middle;
        font-size: 0.82rem;
    }


    /* ===== LANDING PUBLICO - INDEX MEJORADO ===== */

    .public-landing {
        margin-top: -1rem;
    }

    .public-hero {
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #fff9f9 0%, #fff 100%);
        border: 1px solid #f0dbdd;
        border-radius: 16px;
    }

    .public-hero-glow {
        position: absolute;
        right: -90px;
        top: -90px;
        width: 260px;
        height: 260px;
        border-radius: 999px;
        background: radial-gradient(circle, rgba(186, 66, 75, 0.18) 0%, rgba(186, 66, 75, 0) 70%);
        pointer-events: none;
    }

    .public-chip {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #ead0d2;
        color: #7d2027;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .public-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: #2c2c2c;
        line-height: 1.18;
    }

    .public-subtitle {
        max-width: 680px;
        color: #5f6770;
        font-size: 1.02rem;
    }

    .public-actions .btn-ingresar {
        min-width: 210px;
    }

    .public-hint {
        color: #6d747b;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .public-brand-card {
        background: #fff;
        border: 1px solid #ecd7d9;
        border-radius: 14px;
        padding: 1.25rem;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    }

    .public-brand-top {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid #f2e4e5;
        margin-bottom: 0.9rem;
    }

    .public-logo {
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .public-logo-cisp {
        height: 52px;
    }

    .public-logo-minint {
        height: 50px;
    }

    .public-brand-divider {
        width: 1px;
        height: 44px;
        background: #e7d3d5;
    }

    .public-brand-copy h5 {
        color: #2e3133;
        font-weight: 700;
    }

    .public-modules {
        margin-top: 0.25rem;
    }

    .public-section-title {
        font-size: 1.55rem;
        font-weight: 800;
        color: #2c2c2c;
    }

    .public-card {
        border: 1px solid #ecd7d9;
        background: #fff;
        border-radius: 12px;
        padding: 1.15rem;
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .public-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }

    .public-card h5 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #2f3438;
    }

    .public-card p {
        margin-bottom: 0;
        color: #66707a;
        font-size: 0.92rem;
    }

    .public-card-icon {
        width: 54px;
        height: 54px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ba424b;
        background: rgba(186, 66, 75, 0.1);
        border: 1px solid rgba(186, 66, 75, 0.16);
        margin-bottom: 0.75rem;
        font-size: 1.35rem;
    }

    @media (max-width: 991px) {
        .public-title {
            font-size: 1.9rem;
        }

        .public-brand-card {
            margin-top: 0.3rem;
        }
    }

    @media (max-width: 575px) {
        .public-hero {
            border-radius: 12px;
        }

        .public-title {
            font-size: 1.6rem;
        }

        .public-actions .btn-ingresar {
            width: 100%;
            margin-right: 0;
            margin-bottom: 0.75rem;
        }

        .public-logo-cisp {
            height: 45px;
        }

        .public-logo-minint {
            height: 42px;
        }
    }