.carousel-section {
    position: relative;
    width: 100%;
    margin: 60px auto;
}

.cycle-slideshow {
    width: 100%;
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

/* Thumbs */
.carousel-thumbs .cycle-pager-active img {
    opacity: 1 !important;
    border: 2px solid #000;
}

.carousel-thumbs img {
    width: 75px;
    height: 50px;
    margin: 3px;
    opacity: .5;
    cursor: pointer;
    object-fit: cover;
    transition: .3s;
}

.carousel-thumbs img:hover {
    opacity: .9;
}

/* Prev - Next Buttons */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    font-size: 30px;
    border: none;
    padding: 6px 14px;
    cursor: pointer;
    opacity: 0.7;
    transition: .3s;
}

.carousel-prev:hover, .carousel-next:hover {
    opacity: 1;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.hx-layout-grid {
    display: grid;
    gap: 10px;
}
.hx-layout-grid img {
    width: 100%;
    height: auto;
    display: block;
}


/* Responsivo */
@media(max-width: 768px) {
    .carousel-slide img {
        max-height: 280px;
    }
    .carousel-thumbs img {
        width: 55px;
        height: 40px;
    }
    .carousel-prev, .carousel-next {
        font-size: 24px;
        padding: 4px 10px;
    }
}

#displayCycle {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
}
#displayCycle .cycle-carousel-wrap {
    width: 100% !important;
}
#displayCycle img {
    width: auto !important;
    max-height: 500px; /* controla altura */
}
