.produto-relacionado-card {
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.produto-relacionado-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.produto-relacionado-card .bg-image {
    transition: transform 0.7s ease-in-out, filter 0.7s ease-in-out;
    transform: scale(1.0);
    filter: brightness(1.0);
    width: 100%;
    height: 100%;
}

.produto-relacionado-card:hover .bg-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.produto-relacionado-card .overlay {
    transition: background 0.5s ease-in-out;
}

.produto-relacionado-card:hover .overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

/* Ajustes para o carrossel */
.produto-relacionados .owl-nav {
    position: absolute;
    margin-top: -45px;
    width: 20%;
    margin: auto;
}

.produto-relacionados .owl-nav .owl-prev,
.produto-relacionados .owl-nav .owl-next {
    position: absolute;
    transition: all .3s;
}

.produto-relacionados .owl-nav .owl-prev.disabled,
.produto-relacionados .owl-nav .owl-next.disabled {
    display: none;
}

.produto-relacionados .owl-nav .owl-prev {
    transform: rotate(-180deg);
}

.produto-relacionados .owl-nav .owl-next {
    right: 0px;
}

.produto-relacionados .owl-nav .owl-next:before,
.produto-relacionados .owl-nav .owl-prev:before {
    display: block;
    content: "";
    width: 46px;
    height: 46px;
    color: black;
    background: url("../../../assets/images/icons/arrow-black.svg") no-repeat 17px center;
    transition: all 0.3s;
}

.produto-relacionados .owl-dots {
    display: flex;
    margin-top: 16px;
    margin-left: 41px;
}

.produto-relacionados .owl-dots .owl-dot span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    margin: 6px;
    background: #575757;
}

.produto-relacionados .owl-dots .owl-dot.active span {
    background: #0AE64C;
    border-color: #0AE64C;
}

@media (max-width: 1100px) {
    .produto-relacionados .owl-dots .owl-dot span {
        display: block;
        width: 18px;
        height: 3px;
        border-radius: 3px;
        margin: 3px;
        background: #575757;
    }

    .produto-relacionados .owl-dots {
        display: flex;
        justify-content: center;
        margin-top: 58px;
        margin-left: 0;
    }

    .produto-relacionados .owl-nav {
        position: absolute;
        width: 20%;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 40px;
    }
} 


.produto-relacionados .owl-stage-outer {
  padding-left: 0 !important; /* remove preview do lado esquerdo */
}
