.nxp-hero-slider-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    
    /* 🟩 NEUTRALIZACIÓN: Anulamos cualquier margen o transformación que intente heredar */
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    transform: none !important;
    
    /* 📐 CÁLCULO DE CENTRADO PURO: Forzamos el estiramiento simétrico respecto al Viewport */
    position: relative !important;
    left: calc(-50vw + 50%) !important;
    
    overflow: hidden;
    background-color: #000;
}
.nxp-hero-slider {
    position: relative;
    
    /* 🟩 SOLUCIÓN: Calculamos el 100% del alto de la pantalla menos el espacio que ocupa tu menú/cabecera */
    height: calc(80vh - 85px); 
    
    min-height: 550px; /* Evita que en pantallas muy chatas se aplaste el contenido */
    width: 100%;
}
.nxp-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}
.nxp-hero-slide.active {
    opacity: 1;
    visibility: visible;
}
.nxp-slider-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Slide Principal Estructura */
.nxp-hero-slide-content.anatronic-main-slide {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.nxp-slider-col-left {
    flex: 1;
    min-width: 320px;
    padding-right: 40px;
    margin-bottom: 20px;
}
.nxp-badge-years {
    display: inline-block;
    background-color: #D8225D;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(216,34,93,0.4);
}
.nxp-slider-col-left h1 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.nxp-slider-col-left p {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.nxp-btn-slider {
    display: inline-block;
    background-color: white;
    color: #000 !important;
    border-radius: 30px;
    padding: 14px 32px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}
.nxp-btn-slider:hover {
    transform: scale(1.05);
    background-color: #f1f5f9;
}

/* Grid de minitarjetas derecho */
.nxp-slider-col-right-grid {
    flex: 1;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.nxp-mini-card {
    background: rgba(255, 255, 255, 0.96);
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}
.nxp-mini-card:hover {
    transform: translateY(-3px);
}
.nxp-mini-card h4 {
    margin: 0 0 8px 0;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}
.nxp-mini-card p {
    margin: 0;
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.4;
}
.border-blue { border-left: 5px solid #1e73be; }
.border-pink { border-left: 5px solid #D8225D; }
.border-amber { border-left: 5px solid #FBB03B; }
.border-teal { border-left: 5px solid #00A99D; }

/* Slides Dinámicos */
.nxp-slider-dynamic-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.nxp-hero-slide-content.dynamic-slide {
    background: white;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}
.nxp-slider-category-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.nxp-hero-slide-content.dynamic-slide h2 {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}
.nxp-slider-excerpt {
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}
.nxp-btn-slider-read {
    display: inline-block;
    background-color: #D8225D;
    color: white !important;
    border-radius: 30px;
    padding: 12px 26px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.nxp-btn-slider-read:hover {
    background-color: #b51a4c;
}

/* Flechas de Navegación */
.nxp-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 25px;
    z-index: 10;
    pointer-events: none;
}
.nxp-slider-arrow {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 45px; height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    pointer-events: auto;
}
.nxp-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Puntos inferiores (Dots) */
.nxp-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.nxp-slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.nxp-slider-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Responsivo básico */
@media (max-width: 768px) {
    .nxp-hero-slider { height: auto; min-height: 550px; }
    .nxp-hero-slide { position: relative; display: none; padding: 60px 0; }
    .nxp-hero-slide.active { display: flex; }
    .nxp-hero-slide-content.anatronic-main-slide { flex-direction: column; }
    .nxp-slider-col-left { padding-right: 0; text-align: center; }
    .nxp-slider-arrows { display: none; }
}