/* --- 6. Módulo D: Servicios SVG Flowchart --- */
.nxp-flowchart {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.nxp-flowchart-node {
    text-align: center;
    background: transparent;
    flex: 1 1 200px;
    position: relative;
    padding: 0 15px;
}

.nxp-flowchart-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: 16px;
    height: 16px;
    border-right: 3px solid #D8225D;
    border-bottom: 3px solid #D8225D;
    transform: translateY(-50%) rotate(-45deg);
    z-index: 5;
}

@media (max-width: 850px) {
    .nxp-flowchart {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding-top: 20px;
    }

    .nxp-flowchart-node:not(:last-child)::after {
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translateX(50%) rotate(45deg);
    }
}

.nxp-service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nxp-flowchart-node:hover .nxp-service-icon-wrapper {
    background: #1e73be;
}

.nxp-service-icon {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #1e73be;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.nxp-flowchart-node:hover .nxp-service-icon {
    stroke: #ffffff;
}

.nxp-service-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.nxp-service-desc {
    font-size: 14px;
    line-height: 1.5;
}