.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 450px; /* Ajusta según prefieras */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
    animation: fade 0.8s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que la imagen se deforme */
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.btn-leer {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

@keyframes fade {
    from { opacity: 0.4; } 
    to { opacity: 1; }
}