
    .ia-section, .ia-section * { box-sizing: border-box; }

    .ia-section { 
        background: #000000; 
        width: 100%;
        min-height: 500px; /* Misma altura estándar que las otras secciones */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden; 
        padding: 20px 0;
    }

    .ia-section .imperial-swiper { 
        width: 100%; 
        max-width: 1800px;
    }
    
    .ia-section .swiper-slide {
        width: 500px; 
        height: 320px;
        border-radius: 12px; 
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-size: cover; 
        background-position: center;
        cursor: pointer;
        opacity: 0.25; 
        transition: opacity 0.5s ease; 
    }
    
    .ia-section .swiper-slide-active { opacity: 1; }
    .ia-section .swiper-slide a { display: block; width: 100%; height: 100%; }

    @media (max-width: 768px) {
        .ia-section { min-height: auto; padding: 20px 0; }
        .ia-section .swiper-slide { width: 85vw; height: 220px; }
    }
