.ccl-process-intro {
    color: var(--color-gray-dark);
    font-size: 18px;
    margin-bottom: 40px;
}

.ccl-process-step {
    padding: 20px;
}

.ccl-step-number-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

/* Línea conectora (opcional, solo en desktop) */
@media (min-width: 782px) {
    .ccl-process-step:not(:last-child) .ccl-step-number-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 60%;
        width: 80%;
        height: 2px;
        background-color: #e1e8ed;
        z-index: 1;
    }
}

.ccl-step-number {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 116, 197, 0.2);
}

.ccl-process-step h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.ccl-process-step p {
    color: var(--color-gray-dark);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 781px) {
    .ccl-process-grid {
        gap: 30px;
    }
}
