.testimonials-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 511px;
}

.testimonial {

    transition: transform 0.5s ease-in-out;
    text-align: center;
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.5s ease-in-out;
    opacity: 0;
    background-color: #DDD9D2;
    position: absolute;
    padding: 48px 64px;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px 0px #00000040;
    max-width: calc(100vw - 178px);
    width: 273px;
}

.testimonial.active {
    opacity: 1;
    transform: scale(1);
    opacity: 1;
    background-color: #fff;
    z-index: 1;
    padding: 60px 64px;
}

.testimonial.pre-active,
.testimonial.post-active {
    opacity: 0.75;
    z-index: 0;
    cursor: pointer;
}
.testimonial.pre-active {
    transform: translatex(-220px);
}
.testimonial.post-active {
    transform: translatex(220px);
}
.testimonial img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
}

.testimonial h3 {
    font-size: 24px;
    line-height: 28.13px;
    margin-top: 10px;
    margin-bottom: 0;
}

.testimonial p {
    color: #302F2F;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.75px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial p.t-location {
    font-size: 20px;
    line-height: 24,44px;
    line-height: 23.44px;
    text-align: center;
    color: #27ADBC;
    margin-bottom: 32px;
    margin-top: 0;
}
/* Navigation dots */
.testimonials-navigation {
    text-align: center;
    position: absolute;
    bottom: -10px;
    width: 100%;
}
.testimonials-navigation .dot {
    height: 16px;
    width: 16px;
    margin: 0 2px;
    background-color: #C3B86B;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    cursor: pointer;
    margin-bottom: 2px;
}
.testimonials-navigation .dot.active {
    background-color: #9D8C01;
    height: 20px;
    width: 20px;
    margin-bottom: 0;
}
.rating-stars {
    display: flex;
    gap: 2px;
    font-size: 18px;
    color: #ffd700; /* Color dorado para estrellas activas */
}
.rating-stars .star {
    color: #ddd; /* Color gris para estrellas inactivas */
}
.rating-stars .star.active {
    color: #ffd700; /* Color dorado para estrellas activas */
}
