/* IronCoach Thinking Animation - FitFactory Theme */

/* Nova classe inline para evitar overlay e cache */
.ai-thinking-inline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Alinhado à esquerda como uma msg */
  padding: 0.5rem 1rem;
  width: 100%;
  background: transparent;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

/* Halteres Girando (Reduzidos) */
.ai-dumbbells {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 1.2rem;
}

.dumbbell {
  display: inline-block;
  animation: dumbbell-rotate 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
}

.dumbbell.left {
  animation-delay: 0s;
}

.dumbbell.right {
  animation-delay: 1s;
}

@keyframes dumbbell-rotate {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  25% {
    transform: rotate(-25deg) scale(1.1);
  }

  50% {
    transform: rotate(0deg) scale(1);
  }

  75% {
    transform: rotate(25deg) scale(1.1);
  }
}

/* Texto */
.ai-thinking-text {
  color: #ffd700;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}