
        /* Ajustes específicos para Cards de Texto no Chroma Grid */
        .service-card-content {
            padding: 3rem 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(10,10,15,0.4) 100%);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #6366f1, #06b6d4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .service-list {
            list-style: none;
            margin-top: auto;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
        }

        .service-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #94a3b8;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .chroma-card:hover .service-list li {
            color: #e2e8f0;
        }

        .service-list i {
            color: #6366f1;
            font-size: 0.8rem;
        }

        /* Timeline do Processo */
        .process-step {
            position: relative;
            padding-left: 3rem;
            padding-bottom: 3rem;
            border-left: 2px solid rgba(255,255,255,0.1);
        }
        .process-step:last-child { border-left: none; }
        
        .step-number {
            position: absolute;
            left: -1.4rem; /* Centraliza na linha */
            top: 0;
            width: 2.8rem; height: 2.8rem;
            background: #0b0b0f;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700;
            color: white;
            z-index: 2;
        }
        
        .process-step:hover .step-number {
            border-color: #6366f1;
            background: #1e1e2f;
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
        }

        