       :root {
            --color-principal: #c80000;
            --color-hover: #a00000;
            --color-secundario: #f8f9fa;
            --color-texto: #2c3e50;
            --color-gris: #6c757d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }


          body{
            background: rgb(220,242,255);
            background: radial-gradient(circle, rgba(220,242,255,1) 0%, rgba(255,221,221,1) 38%, rgba(255,234,234,1) 54%, rgba(255,249,238,1) 64%, rgba(255,255,255,1) 100%);
            }

        /* Header */
        .hero-section {
            background: linear-gradient(135deg, var(--color-principal) 0%, #e74c3c 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" fill-opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat;
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        /* Universidad Cards */
        .universidad-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            border-top: 4px solid var(--color-principal);
        }

        .universidad-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .universidad-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin: 0 auto;
            display: block;
            background: #f8f9fa;
            border-radius: 50%;
            padding: 20px;
        }

        /* Instituciones Cards */
        .institucion-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border: none;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .institucion-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .institucion-icon {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        /* Stats Section */
        .stats-section {
            background: var(--color-principal);
            color: white;
            padding: 80px 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 15px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Benefits Section */
        .benefits-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .benefits-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--color-principal), #e74c3c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }



        /* Timeline */

/*        .timeline {
            position: relative;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--color-principal);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            width: calc(50% - 30px);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
        }

        .timeline-date {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            background: var(--color-principal);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            z-index: 2;
        }*/






        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 80px 0;
        }

        .btn-custom {
            background: var(--color-principal);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-custom:hover {
            background: var(--color-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(200,0,0,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 40px !important;
            }
            
            .timeline-date {
                left: 20px;
                transform: none;
            }




             .timeline::before {
                left: 20px;
                transform: none;
            }
            
            .timeline-content {
                width: calc(100% - 60px) !important;
                max-width: calc(100% - 60px) !important;
                margin-left: 40px !important;
            }
            
            .timeline-item:nth-child(odd) .timeline-content {
                margin-left: 40px !important;
            }
            
            .timeline-date {
                left: 20px;
                transform: translateX(-50%);
                max-width: 80px;
                font-size: 14px;
            }
            
            .py-5.bg-light .container {
                max-width: 100% !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                overflow-x: hidden;
            }


            @media (max-width: 576px){

                .h1{
                    font-size: 24px;
                }
                .lead{
                    font-size: 16px;
                }

            }



        }

