
        /* ===== SISTEMA DE DISEÑO MODERNO ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        
        :root {
            --radius: 0.875rem;
            --background: oklch(0.99 0.005 90);
            --foreground: oklch(0.18 0.04 260);
            --card: oklch(1 0 0);
            --navy: oklch(0.22 0.06 265);
            --navy-deep: oklch(0.14 0.05 265);
            --gold: oklch(0.82 0.16 85);
            --gold-foreground: oklch(0.18 0.04 260);
            --muted: oklch(0.96 0.01 250);
            --muted-foreground: oklch(0.45 0.03 260);
            --border: oklch(0.9 0.012 260);
            --gradient-hero: linear-gradient(135deg, oklch(0.14 0.05 265) 0%, oklch(0.22 0.06 265) 55%, oklch(0.32 0.09 270) 100%);
            --gradient-gold: linear-gradient(135deg, oklch(0.88 0.14 88) 0%, oklch(0.78 0.17 75) 100%);
            --shadow-elegant: 0 25px 60px -25px color-mix(in oklab, var(--navy-deep) 45%, transparent);
            --shadow-gold: 0 20px 50px -20px color-mix(in oklab, var(--gold) 55%, transparent);
            --shadow-card: 0 10px 30px -15px color-mix(in oklab, var(--navy-deep) 25%, transparent);
            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-sans: 'Inter', system-ui, sans-serif;
        }
        
        body {
            background-color: var(--background);
            color: var(--foreground);
            font-family: var(--font-sans);
            padding-top: 72px;
        }
        
        h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }
        
        /* ===== NAVEGACIÓN UNIFICADA ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 0 2rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .nav-logo { height: 48px; width: auto; cursor: pointer; }
        .menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--foreground); }
        
        #menu { display: flex; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
        #menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #4a5568;
            font-weight: 500;
            text-decoration: none;
            border-radius: 9999px;
            font-size: 0.875rem;
            transition: all 0.2s;
        }
        #menu li a i { margin-right: 0.5rem; }
        #menu li a:hover { background: var(--muted); color: var(--foreground); }
        
        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            nav { padding: 0 1rem; }
            #menu {
                position: fixed;
                top: 72px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 72px);
                background: white;
                flex-direction: column;
                padding: 1rem 0;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            }
            #menu.active { right: 0; }
            #menu li a { padding: 1rem 1.5rem; border-radius: 0; }
        }
        
        /* Botón volver */
        .btn-volver {
            background: var(--navy);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border-radius: 9999px;
            padding: 0.85rem 2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            margin-top: 2rem;
            margin-bottom: 2rem;
            border: none;
            cursor: pointer;
        }
        .btn-volver:hover { transform: translateY(-2px); background: var(--navy-deep); }
        
        /* Footer */
        footer {
            background: var(--gradient-hero);
            color: white;
            margin-top: 4rem;
            padding: 2rem 0;
            text-align: center;
        }
        footer a {
            color: rgba(255,255,255,0.7);
            margin: 0 0.5rem;
            font-size: 1.25rem;
            display: inline-block;
            transition: all 0.2s;
        }
        footer a:hover { color: white; transform: translateY(-2px); }
        
        /* Contenedor principal */
        .politica-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .politica-container.fade-in {
            opacity: 1;
        }
        
        .politica-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem 1rem;
            background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.9) 100%);
            border-radius: var(--radius);
            border: 1px solid var(--border);
        }
        
        .politica-header i {
            font-size: 3rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }
        
        .politica-header h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            color: var(--navy-deep);
        }
        
        .fecha-actualizacion {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--muted);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin-top: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .badge-colombia {
            background: #E8F4FD;
            color: #0A66C2;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            margin-left: 0.5rem;
        }
        
        .politica-seccion {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-card);
            transition: all 0.2s;
        }
        
        .politica-seccion:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-elegant);
        }
        
        .politica-seccion h2 {
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-left: 4px solid oklch(0.82 0.16 85);
            padding-left: 1rem;
        }
        
        .politica-seccion h2 i {
            color: var(--gold);
            font-size: 1.5rem;
        }
        
        .politica-seccion h3 {
            font-size: 1.2rem;
            margin: 1.25rem 0 0.75rem 0;
            color: var(--foreground);
            font-weight: 600;
        }
        
        .politica-seccion p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #334155;
        }
        
        .politica-seccion ul {
            margin: 1rem 0 1rem 1.5rem;
            line-height: 1.6;
            color: #334155;
        }
        
        .politica-seccion li {
            margin-bottom: 0.5rem;
        }
        
        .politica-seccion a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        
        .politica-seccion a:hover {
            border-bottom-color: var(--gold);
        }
        
        .destacado {
            background: var(--muted);
            border-left: 4px solid var(--gold);
            padding: 1rem 1.25rem;
            border-radius: 0.75rem;
            margin: 1.25rem 0;
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }
        
        .destacado i {
            font-size: 1.25rem;
            color: var(--gold);
            margin-top: 0.125rem;
        }
        
        .tabla-datos {
            overflow-x: auto;
            margin: 1.25rem 0;
        }
        
        .tabla-datos table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
        }
        
        .tabla-datos th,
        .tabla-datos td {
            border: 1px solid var(--border);
            padding: 0.75rem;
            text-align: left;
            vertical-align: top;
        }
        
        .tabla-datos th {
            background: var(--muted);
            font-weight: 600;
            color: var(--navy);
        }
        
        @media (max-width: 768px) {
            .politica-container {
                padding: 1rem;
            }
            
            .politica-seccion {
                padding: 1.25rem;
            }
            
            .politica-header h1 {
                font-size: 1.75rem;
            }
            
            .tabla-datos th,
            .tabla-datos td {
                padding: 0.5rem;
                font-size: 0.75rem;
            }
        }
        
        /* WhatsApp flotante */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            background: #25D366;
            color: white;
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 9999px;
            font-size: 1.75rem;
            transition: transform 0.2s;
            z-index: 40;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .whatsapp-float:hover { transform: scale(1.1); }
        
        .footer-links {
            margin-top: 0.75rem;
            font-size: 0.8rem;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            margin: 0 0.5rem;
        }
        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }
