 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f4f7fc;
            color: #1e293b;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
        }

        .container {
            max-width: 1280px;
            width: 100%;
            background: white;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(0, 20, 50, 0.08);
            padding: 2.5rem 2rem;
            transition: all 0.2s ease;
        }

        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 2rem;
            border-bottom: 2px solid #eef2f6;
            padding-bottom: 1.5rem;
        }

        .header-image {
            max-width: 100%;
            height: auto;
            max-height: 200px;
            width: auto;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
            margin-bottom: 0.75rem;
            transition: all 0.2s ease;
        }

        .header-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        }

        .header-sub {
            font-size: 1rem;
            color: #475569;
            font-weight: 500;
            margin-top: 0.25rem;
        }

        .header-sub i {
            color: #2563eb;
            margin-right: 0.4rem;
        }

        .resolutions-top {
            margin-bottom: 2rem;
        }

        .card-highlight {
            background: #1e3a5f;
            border-color: #1e3a5f;
            color: white;
            justify-content: center;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.25s ease;
            box-shadow: 0 8px 20px -8px rgba(30, 58, 95, 0.3);
            cursor: pointer;
            width: 100%;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
        }

        .card-highlight:hover {
            background: #15304f;
            transform: translateY(-3px);
            box-shadow: 0 16px 40px -12px rgba(30, 58, 95, 0.5);
        }

        .card-highlight .icon {
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
        }

        .card-highlight .info {
            display: flex;
            flex-direction: column;
            flex: 1;
            text-align: left;
        }

        .card-highlight .info .name {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .card-highlight .info .sub {
            color: #b0c7e5;
            font-size: 0.9rem;
        }

        .card-highlight .badge-group {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 1.5rem 0 2.5rem 0;
        }

        @media (max-width: 768px) {
            .two-columns {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .col-section {
            background: #fafcff;
            border: 1px solid #e9edf2;
            border-radius: 1.5rem;
            padding: 1.5rem 1.5rem 2rem 1.5rem;
            transition: all 0.2s ease;
        }

        .col-section:hover {
            border-color: #b3c9f0;
        }

        .col-section .col-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #0b1e33;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding-bottom: 0.75rem;
            border-bottom: 3px solid #2563eb;
            margin-bottom: 1.25rem;
        }

        .col-section .col-title i {
            color: #2563eb;
            font-size: 1.3rem;
        }

        .grid-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }

        .item-card {
            background: white;
            border: 1px solid #e9edf2;
            border-radius: 1rem;
            padding: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.3rem;
            transition: all 0.2s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
            text-decoration: none;
            color: #1e293b;
            cursor: default;
            position: relative;
        }

        .card-main {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .card-main:hover {
            transform: translateY(-2px);
        }

        .item-card .icon {
            font-size: 1.5rem;
            margin-bottom: 0.1rem;
        }

        .item-card .info {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .item-card .info .code {
            font-weight: 600;
            font-size: 0.7rem;
            color: #2563eb;
            background: #eef4ff;
            padding: 0.1rem 0.6rem;
            border-radius: 100px;
            display: inline-block;
            width: fit-content;
            margin-bottom: 0.1rem;
        }

        .item-card .info .name {
            font-weight: 500;
            font-size: 0.85rem;
            line-height: 1.2;
        }

        .item-card .info .sub {
            font-size: 0.7rem;
            color: #64748b;
        }

        .item-card .badge-group {
            background: #f1f4f9;
            padding: 0.15rem 0.6rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #1e293b;
            white-space: nowrap;
            margin-top: 0.15rem;
        }

        .btn-resolucion {
            background: transparent;
            border: 1px solid #2563eb;
            color: #2563eb;
            padding: 0.15rem 0.6rem;
            border-radius: 100px;
            font-size: 0.65rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.15s ease;
            margin-top: 0.2rem;
            font-family: 'Inter', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        .btn-resolucion:hover {
            background: #2563eb;
            color: white;
        }

        .btn-resolucion i {
            font-size: 0.6rem;
        }

        .divider {
            grid-column: 1 / -1;
            border-top: 2px dashed #dce2ea;
            margin: 0.25rem 0 0.5rem 0;
        }

        /* --- MODALES --- */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 1.5rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal {
            background: white;
            border-radius: 2rem;
            max-width: 640px;
            width: 100%;
            padding: 2.5rem 2rem;
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
            animation: modalFade 0.25s ease;
            position: relative;
        }

        @keyframes modalFade {
            from {
                opacity: 0;
                transform: scale(0.96) translateY(12px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1.2rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.15s ease;
            line-height: 1;
        }

        .modal-close:hover {
            color: #1e293b;
        }

        .modal h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0b1e33;
            margin-bottom: 0.25rem;
        }

        .modal .sub {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .resolution-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .resolution-item {
            background: #f8faff;
            border: 1px solid #e9edf2;
            border-radius: 1rem;
            padding: 1.2rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .resolution-item:hover {
            background: #f0f5ff;
            border-color: #b3c9f0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.12);
        }

        .resolution-item .icon {
            font-size: 1.8rem;
            color: #2563eb;
            flex-shrink: 0;
            width: 2.5rem;
            text-align: center;
        }

        .resolution-item .info {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .resolution-item .info .title {
            font-weight: 600;
            color: #0b1e33;
            font-size: 1rem;
        }

        .resolution-item .info .desc {
            font-size: 0.9rem;
            color: #475569;
            margin-top: 0.1rem;
        }

        .resolution-item .action {
            background: #2563eb;
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 100px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.15s ease;
            white-space: nowrap;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
        }

        .resolution-item .action:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.4);
        }

        .resolution-item .action i {
            font-size: 0.8rem;
        }

        .resolution-detail {
            background: #f8faff;
            border: 1px solid #e9edf2;
            border-radius: 1rem;
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .resolution-detail .label {
            font-size: 0.8rem;
            color: #64748b;
            font-weight: 500;
        }

        .resolution-detail .value {
            font-weight: 600;
            font-size: 1.1rem;
            color: #0b1e33;
            margin-top: 0.1rem;
        }

        .resolution-detail .desc {
            color: #475569;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        .btn-pdf {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #2563eb;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.15s ease;
            border: none;
            cursor: pointer;
        }

        .btn-pdf:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -8px rgba(37, 99, 235, 0.4);
        }

        .footer {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eef2f6;
            text-align: center;
            font-size: 0.85rem;
            color: #94a3b8;
        }

        .footer a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 500;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .grid-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.6rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 1.5rem 1rem;
            }
            .header-image {
                max-height: 120px;
            }
            .col-section {
                padding: 1rem 1rem 1.5rem 1rem;
            }
            .grid-cards {
                grid-template-columns: 1fr;
                gap: 0.6rem;
            }
            .item-card {
                flex-direction: row;
                text-align: left;
                padding: 0.8rem 1rem;
                gap: 0.75rem;
            }
            .item-card .card-main {
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
                flex: 1;
            }
            .item-card .info {
                align-items: flex-start;
            }
            .item-card .badge-group {
                margin-top: 0;
                margin-left: auto;
            }
            .item-card .btn-resolucion {
                margin-top: 0;
                margin-left: 0.5rem;
            }
            .modal {
                padding: 1.5rem 1.2rem;
            }
            .card-highlight {
                flex-wrap: wrap;
                justify-content: center;
                text-align: center;
            }
            .card-highlight .info {
                text-align: center;
            }
            .card-highlight .badge-group {
                margin-top: 0.3rem;
            }
            .resolution-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
                padding: 1rem;
            }
            .resolution-item .action {
                align-self: stretch;
                justify-content: center;
            }
        }