/*---------------------------------------
  TESTIMONIOS
-----------------------------------------*/
.testimonios-section {
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-3) var(--space-3);
    height: 100%;
    transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
}

.testimonial-img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    padding: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    min-height: 5.1em;
}

.testimonial-text .bi-quote {
    color: var(--secondary-color-light);
    font-size: 1.3rem;
}

.testimonios-section .carousel-control-prev,
.testimonios-section .carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.testimonios-section .carousel-control-prev:hover,
.testimonios-section .carousel-control-next:hover {
    opacity: 1;
}

.testimonios-section .carousel-control-prev-icon,
.testimonios-section .carousel-control-next-icon {
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    padding: 8px;
}
