#carousel-programa {
    position: relative;
    overflow: hidden;
    /* Importante para esconder os cards fora da área visível */
}



#section-programa {
    min-height: 321px;
}

#section-programa .content {
	background: #fff;
}

#section-programa .swiper-wrapper {
    display: flex;
    overflow: hidden;
}

#section-programa .swiper-slide {
    -webkit-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.1);
}

#section-programa .swiper-slide .leader-image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    /* Faz a imagem cobrir toda a área da div */
}



#section-programa .content .name {
    font-family: "Nunito Sans", Sans-serif;
    color: #6834a1;
    font-size: 1.125rem;
}

#section-programa .content .description {
    margin-top: 14px;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 0.9375rem;
    color: #3e3e3e;
}


@media screen and (min-width: 768px) {

    #section-programa .swiper-button-prev {
        content: url("./../images/arrow-left.png");
        color: #000;
        /* Cor visível */
        z-index: 7;
        position: absolute;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 298px;
        left: -140px;
    }

    #section-programa .swiper-button-next {
        content: url("./../images/arrow-right.png");
        color: #000;
        /* Cor visível */
        z-index: 7;
        position: absolute;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        left: -86px;
        top: 298px;
    }
}

@media screen and (max-width: 767px) {
	.d-mobile{
		display: block;
	}
.d-desktop{
		display: none;
	}

    #section-programa .background-line {
        width: 100%;
        height: 2px;
        background-color: var(--e-global-color-61d93a5);
        position: absolute;
        transform: translateY(11px);
        z-index: 1;
    }

    #section-programa .pagination {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    #section-programa .swiper-pagination {
        z-index: 3;
    }

    #section-programa .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 3px;
        border-radius: 50%;
        background-color: #D7B7FC;
        display: inline-block;
        border: 2px solid #f8f8f8;
    }

    #section-programa .swiper-pagination-bullet-active {
        background-color: #6834a1;
        border: 2px solid #6834a1;
        width: 16px;
        height: 16px;
        border: 2px solid #f8f8f8;
        transform: translateY(2px);
        transition: all 0.2s ease-in-out;
    }
}

#section-programa .content .social img {
    margin-top: 14px;
}

@media screen and (max-width: 1152px) {

    #section-programa .swiper-slide {
        display: block;
    }

    #section-programa .leader-image-desktop {
        display: none;
    }

    #section-programa .swiper-slide {
        display: inline-grid;
        width: 100%;
    }

    #section-programa .swiper-slide .leader-image img {
        object-fit: unset;
    }

    #section-programa .content {
        padding: 26px 15px 33px 15px;
    }
}

@media screen and (min-width: 1153px) {
  .d-mobile{
	display: none;
}
    #section-programa .leader-image-mobile {
        display: block;
    }

    #section-programa .swiper-slide {
        display: flex;
        width: 540px;
        height: auto;
        height: 100%;
        margin: 4px;
    }

    #section-programa .swiper-slide .leader-image {
        min-width: 245px;
        width: 245px;
        min-height: 321px;
        height: 100%;
    }

    #section-programa .content {
        width: 295px;
        padding: 15px 10px 15px 25px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #section-programa .swiper-pagination {
        display: block;
    }
}