/* =========================================================
   MÓDULO B.1: HERO OSCURO DEL BLOG
========================================================= */
.nxp-blog-hero-module {
    grid-column: 1 / -1;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative;
    padding: 80px 20px;
    color: #fff;
    overflow: hidden;
}

.nxp-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.nxp-blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 32, 0.85);
    z-index: 1;
}

.nxp-blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.nxp-blog-hero-text {
    flex: 1;
    min-width: 300px;
}

.nxp-blog-hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
}

.nxp-blog-hero-text p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.6;
}

.nxp-blog-hero-subscribe {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 380px;
}

.nxp-blog-hero-subscribe h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.nxp-subscribe-mockup {
    margin-bottom: 15px;
    width: 100%;
}

.nxp-subscribe-mockup p {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    align-items: stretch;
    width: 100%;
}

.nxp-subscribe-mockup br {
    display: none;
}

.nxp-subscribe-mockup .wpcf7-form-control-wrap {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.nxp-subscribe-mockup input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    height: 100%;
    box-sizing: border-box;
}

.nxp-subscribe-mockup input[type="submit"] {
    background: #D8225D;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    height: 100%;
    box-sizing: border-box;
}

.nxp-subscribe-mockup input[type="submit"]:hover {
    background: #b01b4c;
}

.nxp-privacy-notice {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.nxp-privacy-notice a {
    color: #fff;
    text-decoration: underline;
}