#container__feedback {
    background-color: var(--rosa);
    padding: 80px 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
}

#feedback__text--container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
}

#feedback--title {
    font-size: 16px;
    color: var(--branco);
    text-transform: uppercase;
}

#container__feedback--destaque {
    font-family: var(--font-wild);
    font-size: 60px;
    margin-top: -10px;
    color: var(--branco);
}

.swiper-feedback {
    width: 100%;
    padding: 20px 50px 80px 50px;
}

.swiper-feedback .swiper-slide {
    background-color: var(--branco) !important;
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.6s ease-in-out;
    height: auto;
    opacity: 0.5;
    transform: scale(0.9);
}

.swiper-feedback .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-feedback h3 {
    color: var(--rosa) !important;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: var(--amarelo);
    margin-bottom: 25px;
    width: 100%;
}

.swiper-feedback p.testimonial-quote {
    color: #555555 !important;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card__user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.card__user img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    border-radius: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--cinza-escuro);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
}

.author-info span {
    color: #888888;
    font-size: 0.8rem;
    display: block;
}

.swiper-feedback .swiper-button-next,
.swiper-feedback .swiper-button-prev {
    background-color: var(--branco);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    top: 55%;
}

.swiper-feedback .swiper-button-next:after,
.swiper-feedback .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    color: var(--amarelo);
}

.swiper-feedback .swiper-button-next:hover,
.swiper-feedback .swiper-button-prev:hover {
    transform: scale(1.1);
    background-color: #f8f8f8;
}

.swiper-feedback .swiper-button-prev {
    left: 30px;
}

.swiper-feedback .swiper-button-next {
    right: 30px;
}

.swiper-feedback .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
}

.swiper-feedback .swiper-pagination-bullet-active {
    background: var(--branco) !important;
    width: 25px;
    border-radius: 10px;
    opacity: 1;
}

@media (max-width: 991px) {
    .swiper-feedback .swiper-button-next,
    .swiper-feedback .swiper-button-prev {
        display: flex; 
        width: 35px;  
        height: 35px;
    }

    .swiper-feedback .swiper-button-prev {
        left: 10px;
    }

    .swiper-feedback .swiper-button-next {
        right: 10px;
    }

    .swiper-feedback .swiper-button-next:after,
    .swiper-feedback .swiper-button-prev:after {
        font-size: 14px;
    }
}