
        .p-quien {
            background: #ffffff;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .p-quien::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e0f2fe, transparent);
        }

        .p-quien-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .p-quien-h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
        }

        .p-quien-h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
            border-radius: 2px;
        }

        .p-quien-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 60px;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .p-quien-carousel {
            position: relative;
            margin-top: 40px;
        }

        .swiper {
            width: 100%;
            padding: 20px 0 60px 0;
        }

        .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
        }

        .p-quien-card {
            background: #ffffff;
            border: 2px solid #f1f5f9;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 280px;
            width: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .p-quien-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #8b5cf6 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 18px;
        }

        .p-quien-card:hover::before {
            opacity: 0.05;
        }

        .p-quien-card:hover {
            transform: translateY(-12px);
            border-color: #0ea5e9;
            box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.25);
        }

        .p-quien-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .p-quien-card:nth-child(4n+1) .p-quien-icon {
            background: linear-gradient(135deg, #0ea5e9, #06b6d4);
            color: white;
        }

        .p-quien-card:nth-child(4n+2) .p-quien-icon {
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            color: white;
        }

        .p-quien-card:nth-child(4n+3) .p-quien-icon {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
            color: white;
        }

        .p-quien-card:nth-child(4n+4) .p-quien-icon {
            background: linear-gradient(135deg, #0891b2, #0ea5e9);
            color: white;
        }

        .p-quien-card:hover .p-quien-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .p-quien-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
            position: relative;
            z-index: 2;
        }

        .p-quien-desc {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: #0ea5e9;
            background: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.3);
            transition: all 0.3s ease;
            border: 2px solid #f1f5f9;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: #0ea5e9;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 15px 35px -5px rgba(14, 165, 233, 0.4);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            font-weight: 600;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: #cbd5e1;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: linear-gradient(135deg, #0ea5e9, #8b5cf6);
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .p-quien {
                padding: 60px 0;
            }

            .p-quien-h2 {
                font-size: 2rem;
            }

            .p-quien-subtitle {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }

            .p-quien-card {
                width: 250px;
                height: 250px;
                padding: 30px 20px;
            }

            .p-quien-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .p-quien-title {
                font-size: 1.1rem;
            }

            .p-quien-desc {
                font-size: 0.85rem;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .p-quien-container {
                padding: 0 15px;
            }

            .p-quien-h2 {
                font-size: 1.75rem;
            }

            .p-quien-card {
                width: 220px;
                height: 220px;
                padding: 25px 15px;
            }
        }