/* =====================================================================
   Trolha Banner - slider full-width no topo da homepage
   ===================================================================== */

.trolha-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #0a0a0a;
}

.trolha-banner__carousel .owl-stage-outer {
    overflow: hidden;
}

.trolha-banner__slide {
    display: block;
    width: 100%;
    height: 400px;
    line-height: 0;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.trolha-banner__slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.trolha-banner__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dots */
.trolha-banner__carousel .owl-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.trolha-banner__carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    border: 0;
    transition: background .2s, transform .2s;
}

.trolha-banner__carousel .owl-dots .owl-dot:hover {
    background: rgba(255, 255, 255, .8);
}

.trolha-banner__carousel .owl-dots .owl-dot.active {
    background: #ff6900;
    transform: scale(1.15);
}

/* Prevent flash of unstyled carousel */
.trolha-banner__carousel:not(.owl-loaded) {
    display: flex;
    overflow: hidden;
}

.trolha-banner__carousel:not(.owl-loaded) .trolha-banner__slide:not(:first-child) {
    display: none;
}

@media (max-width: 767px) {
    .trolha-banner__carousel .owl-dots {
        bottom: 8px;
    }

    .trolha-banner__carousel .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
    }
}
