/* Estilo general para la sección de testimonios */
.testimonials-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

/* Contenedor de testimonios */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Estilo individual para cada testimonio */
.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect para interactividad */
.testimonial:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Contenido del testimonio */
.testimonial-content {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Autor del testimonio */
.testimonial-author {
    font-size: 16px;
    color: #333;
}

.testimonial-author h4 {
    font-weight: bold;
    margin-bottom: 5px;
}
