        /* Contenedor principal que oculta el desbordamiento */
        :root {
            --speed: 30s; /* Controla la velocidad aquí */
        }
        .testimonial-slider {
            width: 100%;
            overflow: hidden;
            background: white;
            padding: 40px 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            display: flex;
        }

        /* El carril que se mueve */
        .slide-track {
            display: flex;
            width: calc(300px * 16); /* Ajuste basado en el ancho de cada card y cantidad total */
            animation: scroll var(--speed) linear infinite;
        }

        /* Estilo de cada tarjeta de testimonio */
        .testimonial-card {
            width: 300px;
            margin: 0 15px;
            padding: 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            text-align: center;
            flex-shrink: 0;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #007bff;
        }

        .testimonial-card h3 {
            margin: 10px 0 5px;
            font-size: 1.1rem;
            color: #333;
        }

        .stars {
            color: #f1c40f;
            margin-bottom: 10px;
        }

        .text {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        /* Animación de desplazamiento */
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-330px * 8)); } /* Se mueve la mitad del total de items duplicados */
        }

        /* Pausar al pasar el mouse */
        .testimonial-slider:hover .slide-track {
            animation-play-state: paused;
        }