/* Restaurar el color original de los subtítulos */
.section-subtitle {
    color: var(--secondary-color) !important;
}

/* Específicamente para los subtítulos de testimonios */
.testimonials .section-subtitle {
    color: var(--secondary-color) !important;
}

.testimonial-author p {
    color: var(--secondary-color) !important;
}

/* Mejorar los botones del carrusel de testimonios */
.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    opacity: 0.8;
}

.testimonials .carousel-control-prev {
    left: -50px;
}

.testimonials .carousel-control-next {
    right: -50px;
}

.testimonials .carousel-control-prev-icon,
.testimonials .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 50%;
    padding: 0;
}

/* Ajustes responsivos para los botones */
@media (max-width: 991.98px) {
    .testimonials .carousel-control-prev {
        left: -30px;
    }
    
    .testimonials .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 767.98px) {
    .testimonials .carousel-control-prev {
        left: 10px;
    }
    
    .testimonials .carousel-control-next {
        right: 10px;
    }
}