        :root {
            --verde: #0B6E4F;
            --dorado: #C9A227;
            --gris-oscuro: #1F1F1F;
            --gris-claro: #F5F5F5;
            --blanco: #FFFFFF;
            --borde: #E0E0E0;
            --texto: #333333;
            --azul-primario: #1A73E8;
            /* Botones, acentos */
            --azul-oscuro: #0D47A1;
            /* Header, títulos */
            --azul-medio: #1565C0;
            /* Hover, elementos activos */
            --azul-claro: #E3F2FD;
            /* Fondos suaves */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--gris-claro);
            color: var(--texto);
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--borde);
        }

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 110px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-isotipo {
            width: 72px;
            height: auto;
            margin-right: 10px;
        }

        .brand-text-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gris-oscuro);
        }

        .brand-text-subtitle {
            font-size: 0.75rem;
            color: #777;
        }

        nav {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
        }

        nav a {
            position: relative;
            padding-bottom: 2px;
        }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--azul-oscuro);
            transition: width 0.2s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            border: none;
            background: none;
            font-size: 1.4rem;
            cursor: pointer;
        }

        section {
            padding: 3.5rem 0;
        }

        /* Hero */
        .hero {
            padding-top: 3rem;
            padding-bottom: 3.5rem;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
            gap: 2.5rem;
            align-items: center;
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 650;
            color: var(--gris-oscuro);
            margin-bottom: 0.75rem;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1.5rem;
            max-width: 32rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.4rem;
            border-radius: 999px;
            font-size: 0.9rem;
            border: 1px solid transparent;
            cursor: pointer;
            transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
                transform 0.1s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--azul-oscuro);
            color: var(--blanco);
        }

        .btn-primary:hover {
            background: var(--azul-medio);
            transform: translateY(-1px);
        }

        .btn-outline {
            background: transparent;
            color: var(--azul-primario);
            border-color: var(--azul-primario);
        }

        .btn-outline:hover {
            background: transparent;
            transform: translateY(-1px);
        }

        .hero-meta {
            font-size: 0.8rem;
            color: #777;
        }

        .hero-card {
            border-radius: 16px;
            border: 1px solid var(--borde);
            padding: 1.5rem;
            background: var(--gris-claro);
        }

        .hero-card-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--gris-oscuro);
        }

        .hero-card-text {
            font-size: 0.85rem;
            color: #555;
            margin-bottom: 1rem;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.8rem;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            background: var(--blanco);
            border: 1px solid var(--borde);
            color: #666;
        }

        /* Secciones */
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--gris-oscuro);
        }

        .section-text {
            font-size: 0.95rem;
            color: #555;
            max-width: 40rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .card {
            border-radius: 14px;
            border: 1px solid var(--borde);
            padding: 1.25rem;
            background: var(--blanco);
        }

        .card-icon {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: 1px solid var(--borde);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            color: var(--verde);
            margin-bottom: 0.75rem;
        }

        .card-title {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.4rem;
            color: var(--gris-oscuro);
        }

        .card-text {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 0.75rem;
        }

        .card-footer-link {
            font-size: 0.8rem;
            color: var(--verde);
        }

        .grid-modulos {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .modulo-card {
            border-radius: 14px;
            border: 1px solid var(--borde);
            padding: 1.25rem;
            background: var(--blanco);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .modulo-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--gris-oscuro);
        }

        .modulo-text {
            font-size: 0.85rem;
            color: #666;
            flex: 1;
        }

        .modulo-actions {
            display: flex;
            justify-content: flex-start;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 0.75rem;
            background: #f0f0f0;
            color: #666;
            margin-top: 0.3rem;
        }

        .list-docs {
            margin-top: 1.5rem;
            display: grid;
            gap: 0.75rem;
        }

        .doc-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            border: 1px solid var(--borde);
            background: var(--blanco);
            font-size: 0.85rem;
        }

        .doc-left {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .doc-icon {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            border: 1px solid var(--borde);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--dorado);
        }

        .doc-title {
            font-weight: 500;
            color: var(--gris-oscuro);
        }

        .doc-meta {
            font-size: 0.75rem;
            color: #777;
        }

        .doc-download {
            font-size: 0.8rem;
            color: var(--verde);
        }

        .section-muted {
            background: var(--gris-claro);
        }

        .section-muted .section-text {
            max-width: 44rem;
        }

        footer {
            border-top: 1px solid var(--borde);
            padding: 1.5rem 0 2rem;
            font-size: 0.8rem;
            color: #777;
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 0.75rem;
            align-items: center;
        }

        .footer-links {
            display: flex;
            gap: 1rem;
        }

        #mapGuerrero {
            width: 100%;
            height: 480px;
            border-radius: 16px;
            border: 1px solid var(--borde);
            margin-top: 1.5rem;
        }

        .info.legend {
            background: white;
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid var(--borde);
            font-size: 0.8rem;
            line-height: 1.4;
        }

        .info.legend i {
            width: 14px;
            height: 14px;
            float: left;
            margin-right: 8px;
            opacity: 0.8;
            border-radius: 4px;
        }

        /* PANEL LATERAL — ESTILO APPLE / STRATEK360® */

        #panel-lateral {
            position: fixed;
            top: 0;
            right: 0;
            width: 360px;
            height: 100vh;
            background: #ffffff;
            backdrop-filter: blur(12px);
            border-left: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
            padding: 28px;
            transform: translateX(100%);
            transition: transform .35s cubic-bezier(.4, 0, .2, 1);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            font-family: 'Inter', sans-serif;
            opacity: 0;
        }

        #panel-lateral.abierto {
            transform: translateX(0);
            opacity: 1;
            animation: fadeIn .4s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* HEADER */
        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        #panel-nombre {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0;
        }

        #panel-cerrar {
            background: rgba(0, 0, 0, 0.05);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            font-size: 20px;
            cursor: pointer;
            transition: background .2s ease;
        }

        #panel-cerrar:hover {
            background: rgba(0, 0, 0, 0.12);
        }

        /* CONTENIDO */
        .panel-contenido {
            overflow-y: auto;
            padding-right: 6px;
        }

        /* ITEMS */
        .panel-item {
            margin-bottom: 28px;
        }

        .panel-item label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .panel-valor {
            font-size: 18px;
            font-weight: 500;
            color: #222;
        }

        /* BARRA DE PROGRESO */
        .barra-progreso {
            width: 100%;
            height: 10px;
            background: #e5e5e5;
            border-radius: 6px;
            margin-top: 10px;
            overflow: hidden;
        }

        #panel-barra-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #4CAF50, #2E7D32);
            border-radius: 6px;
            transition: width .4s ease;
        }

        /* LISTA DE INDICADORES */
        #panel-indicadores {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        #panel-indicadores li {
            font-size: 14px;
            padding: 6px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        #panel-indicadores strong {
            color: #333;
        }

        /* BOTONES */
        .panel-botones {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .btn-panel {
            flex: 1;
            padding: 10px 14px;
            background: #1f2a44;
            color: white;
            border-radius: 8px;
            text-align: center;
            font-size: 14px;
            cursor: pointer;
            transition: background .2s ease;
        }

        .btn-panel:hover {
            background: #2d3a5c;
        }

        /* MÓDULOS */
        .modulo-item {
            margin-bottom: 16px;
        }

        .modulo-nombre {
            font-size: 14px;
            font-weight: 500;
            color: #333;
        }

        .modulo-barra {
            width: 100%;
            height: 8px;
            background: #e5e5e5;
            border-radius: 6px;
            margin-top: 6px;
            overflow: hidden;
        }

        .modulo-fill {
            height: 100%;
            width: 0%;
            background: #4CAF50;
            border-radius: 6px;
            transition: width .4s ease;
        }

        .icono {
            display: inline-flex;
            align-items: center;
            margin-right: 6px;
            opacity: 0.7;
        }

        .btn-panel .icono {
            margin-right: 8px;
            opacity: 0.9;
        }

        .footer-sdie {
            background: #1f2a44;
            /* azul institucional oscuro */
            color: #ffffff;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .footer-logo {
            width: 55px;
            height: auto;
        }

        .footer-brand-text .footer-title {
            font-size: 18px;
            font-weight: 700;
        }

        .footer-brand-text .footer-subtitle {
            font-size: 14px;
            opacity: 0.8;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            opacity: 0.85;
            transition: 0.2s;
        }

        .footer-links a:hover {
            opacity: 1;
        }

        .footer-copy {
            font-size: 13px;
            opacity: 0.7;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 15px;
        }

        .contacto-sdie {
            padding: 60px 0;
        }

        .contacto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .contacto-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: #f7f9fc;
            padding: 18px 20px;
            border-radius: 10px;
            border: 1px solid #e1e5eb;
        }

        .contacto-icon svg {
            width: 32px;
            height: 32px;
            fill: #1A73E8;
        }

        .contacto-label {
            font-weight: 600;
            font-size: 15px;
            color: #1f2a44;
        }

        .contacto-info {
            font-size: 14px;
            color: #4a5568;
        }

        .carrusel-sdie {
            position: relative;
            width: 100%;
            height: 80vh;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }

        .carrusel-track {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease;
        }

        .carrusel-item {
            min-width: 100%;
            height: 100%;
        }

        .carrusel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Botones */
        .carrusel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.45);
            border: none;
            color: white;
            font-size: 32px;
            padding: 8px 14px;
            cursor: pointer;
            border-radius: 6px;
            transition: 0.2s;
        }

        .carrusel-btn:hover {
            background: rgba(0, 0, 0, 0.7);
        }

        .carrusel-btn.prev {
            left: 15px;
        }

        .carrusel-btn.next {
            right: 15px;
        }


        /* Responsive */
        @media (max-width: 900px) {
            .hero-inner {
                grid-template-columns: minmax(0, 1fr);
            }

            .grid-3,
            .grid-modulos {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 720px) {
            nav {
                position: absolute;
                top: 64px;
                right: 0;
                left: 0;
                background: var(--blanco);
                border-bottom: 1px solid var(--borde);
                flex-direction: column;
                padding: 0.75rem 1.5rem 1rem;
                display: none;
            }

            nav.nav-open {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

        }