.ia-carrusel-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.ia-carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ia-carrusel::-webkit-scrollbar {
    display: none;
}

.ia-carrusel-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
}

.ia-carrusel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.ia-carrusel-slide .ia-carrusel-titulo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    pointer-events: none;
}

.ia-carrusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ia-carrusel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ia-carrusel-prev {
    left: 10px;
}

.ia-carrusel-next {
    right: 10px;
}

.ia-carrusel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.ia-carrusel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.ia-carrusel-dot.active {
    background: #2271b1;
}

@media (max-width: 768px) {
    .ia-carrusel-slide img {
        height: 250px;
    }

    .ia-carrusel-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}
