.home-testimonios {
  box-sizing: border-box;
  max-width: 100vw;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 95, 158, 0.1);
}

.home-testimonios__lista {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: 64px;
  padding: 96px 32px;
  animation: home-testimonios__scroll 30s linear infinite;
}

.home-testimonios__testimonio {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  max-width: 400px;
}

.home-testimonios__contenido-testimonio {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-testimonios__imagen-autor {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background-color: #f2f2f2;
}

.home-testimonios__nombre-autor {
  font-weight: bold;
}

.home-testimonios__calificacion {
  display: flex;
  gap: 8px;
}

@media screen and (max-width: 800px) {
  {# .home-testimonios {
    animation: none;
  }
  .home-testimonios__lista {
    flex-direction: column;
    align-items: center;
    padding: 72px 32px;
  } #}
  .home-testimonios__testimonio {
    max-width: 300px;
  }
}

@keyframes home-testimonios__scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 800px) {
  .home-testimonios__lista {
    padding: 32px 32px;
  }
}