.ims-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ims-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.ims-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ims-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ims-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Puntos de navegación */
.ims-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ims-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.ims-dot.active {
    background-color: #ffffff;
}