e-trabajo {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .forma-de-trabajo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .forma-trabajo-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .forma-trabajo-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .forma-trabajo-h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .forma-trabajo-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .proceso-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            position: relative;
        }

        .proceso-step {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .proceso-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4, #8b5cf6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .proceso-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
        }

        .proceso-step:hover::before {
            transform: scaleX(1);
        }

        .step-number {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            position: relative;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
        }

        .proceso-step:nth-child(2) .step-number {
            background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        .proceso-step:nth-child(3) .step-number {
            background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
        }

        .proceso-step:nth-child(4) .step-number {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
        }

        .step-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.4rem;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .proceso-step:hover .step-number {
            color: transparent;
        }

        .proceso-step:hover .step-icon {
            opacity: 1;
            color: white;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .step-description {
            font-size: 1rem;
            color: #64748b;
            line-height: 1.6;
            font-weight: 400;
        }

        .cta-container {
            text-align: center;
            margin-top: 50px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: white;
            text-decoration: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .connecting-line {
            position: absolute;
            top: 50%;
            left: calc(25% - 15px);
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #06b6d4);
            transform: translateY(-50%);
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .forma-trabajo-h2 {
                font-size: 2.2rem;
            }
            
            .proceso-steps {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .connecting-line {
                display: none;
            }
            
            .forma-de-trabajo {
                padding: 60px 20px;
            }
        }

        @media (min-width: 769px) {
            .proceso-steps {
                grid-template-columns: repeat(4, 1fr);
            }
        }