/* --- 10. Módulo H: Equipo y Soporte de Diseño (CTA) --- */
.nxp-cta-section {
    position: relative;
    overflow: hidden;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    background-color: #121212 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    display: flex;
    align-items: stretch;
}

.nxp-cta-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: #121212;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: normal;
}

.nxp-cta-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nxp-cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 0.7) 100%);
}

.nxp-cta-content {
    box-sizing: border-box;
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.nxp-cta-eyebrow {
    color: #D8225D;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 14px;
}

.nxp-cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
}

.nxp-cta-desc {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.nxp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D8225D;
    color: #ffffff;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.nxp-cta-button:hover {
    background-color: #a81a48;
    transform: translateY(-2px);
}

.nxp-cta-button svg {
    margin-left: 10px;
}

@media (max-width: 1000px) {
    .nxp-cta-grid {
        grid-template-columns: 1fr;
    }

    .nxp-cta-image {
        min-height: 350px;
    }

    .nxp-cta-image::after {
        background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 100%);
    }

    .nxp-cta-content {
        padding: 0 8%;
    }

    .nxp-cta-title {
        font-size: 32px;
    }
}