.swiper .swiper-pagination-bullet{
    transform: translateY(-20px) !important;
    display: inline-block !important;
    width: 17px !important;
    height: 17px !important;
    outline: 1px solid #fff !important;
    background-color: transparent !important;
    margin: 0 10px !important;
    border-radius: 0px !important;
    cursor: pointer !important;
    opacity: 1 !important; /* Ensure the bullet is fully visible */
}
.swiper .swiper-pagination-bullet-active{
    outline: 1px solid #fff !important;
    background-color: #fff !important;
}
section.depoimentos{
    padding: 53px 0 30px;
}
section.depoimentos h3#title-section{
    color: #fff;
    margin-bottom: 50px;
}
section.depoimentos .wrapper-content{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 88px;
}
section.depoimentos .wrapper-content .text{
    width: 960px;
    height: auto;
    color: var(--verde);
}
section.depoimentos .wrapper-content{
    margin-bottom: 30px;
}
section.depoimentos .wrapper-content .text h3{
    position: relative;
    font-size: 33.33px;
    margin-bottom: 34px;
    width: fit-content;
}
section.depoimentos .wrapper-content .text h3::before{
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--laranja);
    bottom: 0px;
    left: 50%;
}
section.depoimentos .wrapper-content .text p{
    font-size: 14.58px;
    line-height: 1.5;
}
section.depoimentos .swiper{
    padding-top: 40px;
    background-color: var(--verde);
}
section.depoimentos .swiper-wrapper{
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 120px;
}
section.depoimentos .swiper-slide {
    transition: background-color .5s ease-in-out;
    width: 643px;
    min-height: 253px;
    background-color: transparent !important;
    outline: 2px solid var(--laranja);
    color: #232323;
}
section.depoimentos .swiper-slide.swiper-slide-active{
    background-color: var(--laranja) !important;
    outline: none;
}
section.depoimentos .swiper-slide .depoimento{
    padding: 84px 23px 81px 55px;
    width: 643px;
    min-height: 253px;
    position: relative;
    z-index: 10;
}
section.depoimentos .swiper-slide .depoimento h3{
    position: relative;
    font-size: 20.62px;
    margin-bottom: 10px;
        color: var(--verde);
}
section.depoimentos .swiper-slide .depoimento h3::before{
    font-family: 'Times New Roman', Times, serif;
    content: " “ ";
    position: absolute;
    left: -35px;
    z-index: -1;
    top: -40px;
    color: #c5beb5;
    font-size: 100.42px;
}
section.depoimentos .swiper-slide .depoimento ul{
    padding-left: 17px;
}
section.depoimentos .swiper-slide .depoimento p,
section.depoimentos .swiper-slide .depoimento ul li{
    font-size: 14.58px;
    color: var(--verde);
}
section.depoimentos .swiper-slide .depoimento::before{
    width: 100%;
    min-height: 100%;
    background-color: #FAF7EF;
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    z-index: -5;
}

@media(max-width: 1100px) {
    section.depoimentos .swiper-wrapper{
        margin: 0 20px;
    }
    section.depoimentos .swiper-slide{
        width: 95%;
        height: auto;
    }
    section.depoimentos .swiper-slide .depoimento{
        padding: 50px 60px;
        width: 95%;
        height: auto;
    }
    section.depoimentos .swiper-slide .depoimento::before{
        width: 100%;
        height: 100%;
    }
}