#carousel-linha-do-tempo {
    position: relative;
    overflow: hidden;
    /* Importante para esconder os cards fora da área visível */
}

@media screen and (max-width: 1152px) {
    #carousel-linha-do-tempo {
        margin-bottom: 60px;
    }
}

#carousel-linha-do-tempo .swiper-custom {
    height: 100% !important;
    min-height: 340px;
}

#carousel-linha-do-tempo .swiper-wrapper {
    display: flex;
    height: 100% !important;
    min-height: 340px;
    overflow: hidden;
}

#carousel-linha-do-tempo .swiper-slide {
    width: 310px !important;
    margin-top: 2px;
    margin-left: 2px;
    min-height: 328px;
    height: 100%;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

#carousel-linha-do-tempo .swiper-slide figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
}

#carousel-linha-do-tempo .swiper-slide img {
    width: 100px !important;
    object-fit: cover;
}

#carousel-linha-do-tempo .conteudo {
    padding: 0 1.25rem 1.25rem;
}

#carousel-linha-do-tempo .conteudo h3,
#carousel-linha-do-tempo .conteudo p {
    margin-bottom: 0;
}

#carousel-linha-do-tempo .conteudo p {
    padding-top: 9px;
    font-family: "Nunito Sans";
    font-size: var(--e-global-typography-5193df3-font-size);
}

#carousel-linha-do-tempo .conteudo .conteudo-texto {
    font-family: "Nunito Sans";
    color: #3E3E3E;
}

@media screen and (min-width: 768px) {
    #section-linha-do-tempo .swiper-button-prev {
        content: url('./../images/arrow-left.png');
        color: #000;
        /* Cor visível */
        z-index: 10;
        position: absolute;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 338px;
        left: -140px;
    }

    #section-linha-do-tempo .swiper-button-next {
        content: url('./../images/arrow-right.png');
        color: #000;
        /* Cor visível */
        z-index: 10;
        position: absolute;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        left: -86px;
        top: 338px;
    }
}