        @import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

        :root {
            --primary: #002147; 
            --accent: #d4af37; 
            --success: #25d366;
            --bg-light: #f4f7f9;
            --text-dark: #1e293b;
            --text-muted: #64748b;
        }

        body { 
            font-family: 'Inter', sans-serif; 
            background: var(--bg-light); 
            color: var(--text-dark);
            margin: 0;
        }

        .main-detalle { padding: 60px 20px; }

        .panel-institucional {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            display: flex;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 33, 71, 0.08);
            border: 1px solid #e2e8f0;
        }

        /* Sidebar Izquierdo */
        .sidebar-premium {
            flex: 0 0 380px;
            background: #f8fafc;
            padding: 40px;
            border-right: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
        }

        .img-container {
            width: 100%;
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .img-container img { width: 100%; height: 100%; object-fit: cover; }

        .data-grid { margin-bottom: 30px; }

        .data-card {
            display: grid;
            grid-template-columns: 32px 1fr;
            gap: 15px;
            padding: 18px 0;
            border-bottom: 1px solid #e2e8f0;
            align-items: center;
        }

        .icon-svg-detail {
            width: 24px;
            height: 24px;
            fill: var(--primary);
        }

        .data-info label { 
            display: block; 
            font-size: 10px; 
            text-transform: uppercase; 
            letter-spacing: 1.5px; 
            color: var(--text-muted); 
            font-weight: 800;
            margin-bottom: 2px;
        }
        .data-info span { font-size: 15px; font-weight: 600; color: var(--primary); }

        .price-tag {
            text-align: center;
            padding: 30px 0;
            background: white;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid #e2e8f0;
        }

        .price-tag .label { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; display: block; }
        .price-tag .value { font-size: 36px; font-weight: 800; color: #2f855a; display: block; margin-top: 5px; }

        .btn-cta {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0, 33, 71, 0.2);
        }

        .btn-cta:hover { transform: translateY(-3px); background: #0e428f; }

        .content-body { flex: 1; padding: 50px 60px; }

        .header-text h1 { 
            font-family: 'Crimson Pro', serif;
            font-size: 2.8rem; 
            color: var(--primary); 
            font-weight: 800; 
            line-height: 1;
            margin: 0 0 20px 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 45px 0 25px;
        }

        .section-header h3 { 
            font-family: 'Inter', sans-serif;
            font-size: 1rem; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            color: var(--primary); 
            font-weight: 800; 
            margin: 0; 
        }
        .section-header .line { flex: 1; height: 1px; background: #e2e8f0; }

        .text-content { 
            line-height: 1.45; 
            color: #334155; 
            font-size: 1.05rem; 
        }

        .curriculum-box {
            background: #fcfdfe;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 10px 40px;
            position: relative;
        }

        .curriculum-box::before { 
            content: "PLAN DE ESTUDIOS"; 
            position: absolute; 
            top: -12px; 
            left: 30px; 
            background: var(--primary); 
            color: white; 
            padding: 4px 15px; 
            font-size: 10px; 
            border-radius: 20px; 
            font-weight: 700; 
        }

        .project-badge {
            background: #fffdf5;
            border: 1px solid #fef3c7;
            padding: 35px;
            border-radius: 16px;
            border-left: 6px solid var(--accent);
        }

        @media (max-width: 1000px) {
            .panel-institucional { flex-direction: column; }
            .sidebar-premium { flex: none; width: 100%; border-right: none; box-sizing: border-box; }
            .content-body { padding: 40px 25px; }
            .header-text h1 { font-size: 2.5rem; }
        }