
        /* ===== SISTEMA DE DISEÑO MODERNO ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --radius: 1rem;
            --radius-sm: 0.75rem;
            --radius-lg: 1.25rem;
            --background: #f0f4f8;
            --foreground: #1e293b;
            --card: #ffffff;
            --navy: #2c3e66;
            --navy-deep: #1a2c4a;
            --navy-light: #3d5a80;
            --gold: #d4a017;
            --gold-muted: #fef3c7;
            --muted: #f1f5f9;
            --muted-foreground: #5a6e7a;
            --border: #e2e8f0;
            --gradient-hero: linear-gradient(135deg, #1a2c4a 0%, #2c3e66 50%, #3d5a80 100%);
            --gradient-gold: linear-gradient(135deg, #e8b82b 0%, #d4a017 100%);
            --shadow-elegant: 0 25px 50px -12px rgba(26, 44, 74, 0.25);
            --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 12px 25px -8px rgba(26, 44, 74, 0.15);
            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-sans: 'Inter', system-ui, sans-serif;
            --font-mono: 'DM Mono', monospace;
        }
        
        body {
            font-family: var(--font-sans);
            background: var(--background);
            min-height: 100vh;
            padding-top: 72px;
        }
        
        h1, h2, h3, .valor, .card-header h3 {
            font-family: var(--font-display);
            letter-spacing: -0.02em;
        }
        
        /* ===== NAVEGACIÓN ===== */
        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; }
        }
        
        /* ===== HERO SECTION ===== */
        .smmlv-hero {
            background: var(--gradient-hero);
            padding: 2rem 2rem;
            text-align: center;
            margin: 1rem auto;
            border-radius: var(--radius-lg);
            max-width: 1200px;
        }
        
        .smmlv-hero h1 {
            font-size: 2rem;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .smmlv-hero h1 span {
            color: var(--gold);
        }
        
        .smmlv-hero p {
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        
        /* ===== MAIN CONTAINER ===== */
        .smmlv-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1.5rem;
        }
        
        /* ===== CARDS GRID ===== */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .card {
            background: var(--card);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: all 0.2s;
        }
        
        .card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--gold);
        }
        
        .card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .card-header i {
            font-size: 1.5rem;
            color: var(--gold);
        }
        
        .card-header h3 {
            font-size: 1rem;
            color: var(--navy-deep);
        }
        
        .valor {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        
        .valor.positivo { color: #10b981; }
        .valor.negativo { color: #ef4444; }
        
        .pequeno {
            font-size: 0.7rem;
            color: var(--muted-foreground);
        }
        
        /* ===== GRÁFICA ===== */
        .grafica-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            margin-top: 1rem;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
        }
        
        .grafica-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--muted);
        }
        
        .grafica-header i {
            font-size: 1.5rem;
            color: var(--gold);
        }
        
        .grafica-header h2 {
            font-size: 1.2rem;
            color: var(--navy-deep);
        }
        
        .grafica-header p {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }
        
        #grafica {
            width: 100%;
            height: 500px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--gradient-hero);
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        
        footer a {
            color: rgba(255,255,255,0.7);
            margin: 0 0.5rem;
            font-size: 1.2rem;
            transition: all 0.2s;
            display: inline-block;
        }
        
        footer a:hover { color: white; transform: translateY(-2px); }
        
        @media (max-width: 992px) {
            .cards-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .smmlv-hero h1 { font-size: 1.5rem; }
            .cards-grid { grid-template-columns: 1fr; }
            .smmlv-container { padding: 1rem; }
            .grafica-header { flex-direction: column; text-align: center; }
        }
