/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: var(--color-sand);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    line-height: 1.6;
    /* flex-grow: 1; Eliminado para que el nombre no se vaya al fondo */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-wood);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--color-forest);
    margin-bottom: 0.2rem;
    font-family: var(--font-display);
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
}