.noticiero-auto-carrusel-container {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    position: relative;
}

.noticiero-auto-swiper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.noticiero-auto-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transition: transform 0.8s ease;
}

.noticiero-auto-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.noticiero-auto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s linear;
}

.noticiero-auto-slide.swiper-slide-active .noticiero-auto-imagen img {
    transform: scale(1.05);
}

.noticiero-auto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.noticiero-auto-contenido {
    position: relative;
    z-index: 10;
    color: white;
    padding: 40px;
    width: 100%;
    max-width: 85%;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease;
}

.noticiero-auto-slide.swiper-slide-active .noticiero-auto-contenido {
    transform: translateY(0);
    opacity: 1;
}

.noticiero-auto-titulo {
    font-size: 32px;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.noticiero-auto-fecha {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
    background: rgba(229, 62, 62, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
}

.noticiero-auto-resumen {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.6;
    max-width: 80%;
}

.noticiero-auto-enlace {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e53e3e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.noticiero-auto-enlace:hover {
    background-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Estilos para los botones de navegación */
.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(229, 62, 62, 0.9);
    transform: scale(1.1);
}

/* Estilos para la paginación */
.swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #e53e3e;
    transform: scale(1.2);
}

/* Indicador de progreso para el autoplay */
.swiper-pagination-progressbar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #e53e3e;
}

/* Efectos para diferentes transiciones */
.noticiero-auto-carrusel-container[data-efecto="fade"] .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

.noticiero-auto-carrusel-container[data-efecto="fade"] .swiper-slide-active,
.noticiero-auto-carrusel-container[data-efecto="fade"] .swiper-slide-duplicate-active {
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .noticiero-auto-swiper {
        height: 450px;
    }
    
    .noticiero-auto-titulo {
        font-size: 28px;
    }
    
    .noticiero-auto-resumen {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .noticiero-auto-swiper {
        height: 400px;
    }
    
    .noticiero-auto-contenido {
        max-width: 90%;
        padding: 30px;
    }
    
    .noticiero-auto-titulo {
        font-size: 24px;
    }
    
    .noticiero-auto-resumen {
        font-size: 16px;
        max-width: 100%;
    }
    
    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .noticiero-auto-swiper {
        height: 350px;
    }
    
    .noticiero-auto-contenido {
        padding: 20px;
    }
    
    .noticiero-auto-titulo {
        font-size: 20px;
    }
    
    .noticiero-auto-resumen {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .noticiero-auto-enlace {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}