 
        /* Hero con imagen fija y efecto paneo */
        .hero-nosotros {
            position: relative;
            height: 500px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-nosotros-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: kenBurns 20s ease-in-out infinite alternate;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1) translateX(0);
            }
            100% {
                transform: scale(1.1) translateX(-20px);
            }
        }

        .hero-nosotros::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74,44,112,0.85) 0%, rgba(107,70,168,0.75) 100%);
            z-index: 1;
        }

        .hero-nosotros-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-nosotros-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .hero-nosotros-subtitle {
            font-size: 20px;
            opacity: 0.95;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sección Misión, Visión, Valores */
        .mvv-section {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .mvv-card {
            background: var(--white);
            padding: 50px 35px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.4s ease;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-purple), var(--accent-magenta));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .mvv-card:hover::before {
            transform: scaleX(1);
        }

        .mvv-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(107,70,168,0.2);
            border-color: var(--primary-purple);
        }

        .mvv-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: var(--white);
            transition: all 0.4s ease;
        }

        .mvv-card:hover .mvv-icon {
            transform: rotateY(360deg);
            background: linear-gradient(135deg, var(--accent-magenta), var(--primary-purple));
        }

        .mvv-title {
            font-size: 26px;
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .mvv-description {
            font-size: 16px;
            color: var(--medium-gray);
            line-height: 1.8;
        }

        /* Sección Valores */
        .valores-section {
            padding: 100px 0;
            background: var(--white);
        }

        .valores-content {
            max-width: 900px;
            margin: 50px auto 0;
            text-align: center;
        }

        .valores-box {
            background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
            padding: 60px 50px;
            border-radius: 20px;
            color: var(--white);
            box-shadow: 0 15px 40px rgba(107,70,168,0.3);
            position: relative;
            overflow: hidden;
        }

        .valores-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            50% {
                transform: translate(-20px, 20px) rotate(180deg);
            }
        }

        .valores-icon {
            font-size: 60px;
            margin-bottom: 25px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .valores-box h3 {
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .valores-box p {
            font-size: 17px;
            line-height: 1.9;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }

        /* Timeline Historia */
        .historia-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 80px auto 0;
            padding: 0 20px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-purple), var(--accent-magenta));
            border-radius: 2px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            width: 100%;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: auto;
            padding-right: 60px;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
            margin-right: 0;
            padding-left: 60px;
            text-align: left;
        }

        .timeline-content {
            width: 45%;
            background: var(--white);
            padding: 35px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(107,70,168,0.25);
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-magenta), var(--primary-purple));
            color: var(--white);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            border: 6px solid var(--white);
            box-shadow: 0 5px 20px rgba(107,70,168,0.3);
            z-index: 10;
        }

        .timeline-item:nth-child(odd) .timeline-year {
            top: 30px;
        }

        .timeline-item:nth-child(even) .timeline-year {
            top: 30px;
        }

        .timeline-icon {
            font-size: 32px;
            color: var(--accent-magenta);
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 24px;
            color: var(--dark-gray);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .timeline-description {
            font-size: 15px;
            color: var(--medium-gray);
            line-height: 1.7;
        }

        /* CTA Final */
        .cta-nosotros {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-nosotros::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(233,30,140,0.2) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .cta-nosotros-content {
            position: relative;
            z-index: 1;
        }

        .cta-nosotros h2 {
            font-size: 38px;
            margin-bottom: 20px;
        }

        .cta-nosotros p {
            font-size: 18px;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-nosotros-title {
                font-size: 36px;
            }

            .mvv-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                padding-left: 30px !important;
                text-align: left !important;
                padding-right: 30px !important;
            }

            .timeline-year {
                left: 30px !important;
                transform: translateX(-50%);
                width: 80px;
                height: 80px;
                font-size: 18px;
            }
        }

        @media (max-width: 576px) {
            .hero-nosotros {
                height: 400px;
            }

            .hero-nosotros-title {
                font-size: 28px;
            }

            .hero-nosotros-subtitle {
                font-size: 16px;
            }

            .valores-box {
                padding: 40px 30px;
            }

            .timeline-content {
                width: calc(100% - 60px);
                margin-left: 60px !important;
                padding: 25px 20px !important;
            }

            .timeline-year {
                width: 60px;
                height: 60px;
                font-size: 16px;
            }
        }
 
	