/* --- 7. Módulo E: Calidad Aeroespacial (Dark Mode) --- */
.nxp-quality-section {
    background: #121212;
    color: #ffffff;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.nxp-quality-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.nxp-quality-content {
    flex: 1;
}

.nxp-quality-content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.nxp-quality-content p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.nxp-quality-badges {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: end;
}

.nxp-badge-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.nxp-badge-card:hover {
    border-color: #1e73be;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 115, 190, 0.2);
}

.nxp-badge-card svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #D8225D;
    stroke-width: 1.5;
    margin-bottom: 15px;
}

.nxp-badge-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.nxp-badge-subtitle {
    font-size: 13px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .nxp-quality-container {
        flex-direction: column;
        text-align: center;
    }

    .nxp-quality-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}