
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .dashboard-container {
            max-width: 1600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .texto-transparente {
            opacity: 0.5;
            }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #667eea;
            flex-wrap: wrap;
            gap: 20px;
        }

        .logo {
            height: 60px;
            object-fit: contain;
        }

        .title {
            flex-grow: 1;
            text-align: center;
            color: #2c3e50;
            min-width: 280px;
        }

        .title h1 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .dashboard-container {
                padding: 20px;
            }
            
            .charts-grid {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            .dashboard-container {
                padding: 15px;
                border-radius: 15px;
            }

            .header {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                height: 50px;
                margin-bottom: 10px;
            }

            .title h1 {
                font-size: 1.8rem;
            }

            .subtitle {
                font-size: 0.95rem;
            }

            .kpi-cards {
                grid-template-columns: 1fr !important;
            }

            .kpi-card {
                padding: 20px;
            }

            .kpi-value {
                font-size: 2rem !important;
            }

            .charts-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .chart-container {
                padding: 15px !important;
            }

            .chart {
                height: 300px !important;
            }

            .data-table-container {
                padding: 15px !important;
                overflow-x: auto;
            }

            .data-table {
                font-size: 0.85rem;
                min-width: 600px;
            }

            .data-table th,
            .data-table td {
                padding: 8px !important;
            }

            .search-bar {
                flex-direction: column;
            }

            .narrative-section {
                padding: 20px !important;
            }

            .narrative-content {
                font-size: 0.95rem !important;
                padding-left: 15px !important;
            }
        }

        @media (max-width: 480px) {
            .title h1 {
                font-size: 1.5rem;
            }

            .subtitle {
                font-size: 0.85rem;
            }

            .kpi-value {
                font-size: 1.75rem !important;
            }

            .kpi-label {
                font-size: 0.8rem !important;
            }

            .chart {
                height: 250px !important;
            }

            .chart-title {
                font-size: 1.1rem !important;
            }

            .filter-btn {
                width: 100%;
            }
        }

        .kpi-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .kpi-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .kpi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .kpi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .kpi-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 15px;
        }

        .kpi-card.blue .kpi-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
        .kpi-card.green .kpi-icon { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: white; }
        .kpi-card.orange .kpi-icon { background: linear-gradient(135deg, #fc4a1a 0%, #f7b733 100%); color: white; }
        .kpi-card.purple .kpi-icon { background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%); color: white; }
        .kpi-card.red .kpi-icon { background: linear-gradient(135deg, #f56565 0%, #dc2626 100%); color: white; }
        .kpi-card.yellow .kpi-icon { background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%); color: white; }

        .kpi-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .kpi-label {
            color: #7f8c8d;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .kpi-change {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-top: 10px;
            font-weight: 600;
        }

        .kpi-change.positive {
            background: #d4edda;
            color: #155724;
        }

        .kpi-change.negative {
            background: #f8d7da;
            color: #721c24;
        }

        .charts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .chart-container {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .chart-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

        .chart {
            height: 350px;
        }

        .narrative-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .narrative-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .narrative-content {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            border-left: 4px solid #667eea;
            padding-left: 20px;
        }

        .data-table-container {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow-x: auto;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .data-table thead {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .data-table th {
            padding: 15px;
            text-align: left;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .data-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #ecf0f1;
            color: #555;
        }

        .data-table tbody tr:hover {
            background: #f8f9fa;
            transition: background 0.3s ease;
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .badge.success {
            background: #d4edda;
            color: #155724;
        }

        .badge.warning {
            background: #fff3cd;
            color: #856404;
        }

        .badge.danger {
            background: #f8d7da;
            color: #721c24;
        }

        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #ecf0f1;
            color: #7f8c8d;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animated {
            animation: fadeIn 0.6s ease-out;
        }

        .search-bar {
            margin-bottom: 20px;
            display: flex;
            gap: 10px;
        }

        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #ecf0f1;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: #667eea;
        }

        .filter-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
        }

        /* Section styles */
        .section {
            margin-bottom: 40px;
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #667eea;
        }

        .section-icon {
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-content {
            padding: 10px 0;
        }

        /* Executive Summary Section */
        .executive-summary-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        }

        /* Placeholder section */
        .placeholder-section {
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
            border: 2px dashed #dee2e6;
            color: #6c757d;
            font-size: 1.2rem;
        }

        /* Chart sections grid */
        .section-charts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        @media (max-width: 1200px) {
            .section-charts {
                grid-template-columns: 1fr;
            }
        }