
.produto-certificados .owl-nav {
    position: relative;
    margin: auto;
}
.produto-certificados .owl-stage-outer {
    margin-bottom: 40px;
}

.produto-certificados .owl-nav .owl-prev,
.produto-certificados .owl-nav .owl-next {
    position: absolute;
    transition: all .3s;
    margin-top: -17px;
}

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

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

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

.produto-certificados .owl-nav .owl-next:before,
.produto-certificados .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;
    scale: 1.3;
}

.produto-certificados .owl-dots {
    display: flex;
    /* margin-top: 16px; */
    justify-content: center;
}
.produto-certificados .owl-dots .owl-dot {
    width: 24px;
    margin:  6px 3px;
}

.produto-certificados .owl-dots .owl-dot span {
    display: block;
    width: 100%;
    height: 1px;
    border-radius: 3px;
    background: #575757;
}

.produto-certificados .owl-dots .owl-dot.active span {
    background: #0AE64C;
    border-color: #0AE64C;
    border-radius: 4px;
    border: 1px solid #0ae64c;
    /* margin-top: 6px;     */
}

/* serve apenas para fazer limitação de conteudo em cada card de secmentos */
.produto-certificados-card {
    display: flex;
    flex-direction: column;
    /* height: 8.2em; */
    /* Altura equivalente a 5 linhas, ajusta conforme o line-height */
    overflow: hidden;
}

.produto-certificados-card .title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Máx. 3 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    /* margin: 0; */
}

.produto-certificados-card .text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Máx. 2 linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    /* margin: 0; */
}

@media (max-width: 1100px) {
    .produto-certificados .owl-stage-outer {
        margin-bottom: 58px;
    }

    .produto-certificados .owl-nav .owl-next:before,
    .produto-certificados .owl-nav .owl-prev:before {
        scale: 1;
    }
}

@media (max-width: 768px) {
    .produto-certificados .owl-dots {
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .produto-certificados .owl-dots .owl-dot {
        max-width: 24px;
    }
}