#testimonials {
    background-color: #f9f9f9;
    background-image: url('../files/backgrounds/wave-haikei.svg'); /* Ruta al SVG */
    background-size: cover; /* Para que cubra todo el contenedor */
    background-position: center; /* Centrar el SVG */
    padding: 50px 20px;
    text-align: center;
}


#testimonials h2 {
    
    text-align: left;
    margin-left: 5%;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
}

.testimonial {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 600px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial cite {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
    display: flex;
    flex-direction: column; /* Coloca el texto y las estrellas en columna */
    align-items: center; /* Centra el contenido */
    gap: 10px; /* Espacio entre las estrellas y el nombre */
}

.testimonial cite .stars {
    display: flex; /* Estrellas en fila */
    gap: 5px; /* Espacio entre las estrellas */
}

.testimonial cite .fa-star {
    color: #FFD700; /* Estrellas doradas */
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}