/* testimonials.css */
@import 'colors.css';
@import 'keyframes.css';

.testimonials-section {
    background-color: var(--secondary-background-color-dark);
}

.testimonials-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: var(--tertiary-background-color-dark);
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.testimonial p {
    font-size: 16px;
}

.testimonial .author {
    font-size: 14px;

    background: linear-gradient(45deg, #946d42, #cd9e5e, #fad475, #fefd89,#d3a871, #bc9763,#b18b5a,#d8ad73,#e1b973,#e3a85f, #805B30, #cd9e5e, #946d42);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 15s infinite ease-in-out; /* Animación de ida y vuelta */
}
