/* ============================================================
   MASCOTE — Estilo global v2
   ============================================================ */

.mascote-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  animation: mascote-entrada 0.7s var(--df-ease, cubic-bezier(0.22, 1, 0.36, 1)) both;
}

.mascote-img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(154, 205, 50, 0.25));
  transition: transform 0.35s var(--df-ease, ease);
  animation: mascote-float 3.5s ease-in-out infinite;
  pointer-events: all;
  cursor: pointer;
}

.mascote-img:hover {
  transform: scale(1.1) rotate(-2deg);
  animation-play-state: paused;
}

.mascote-balao {
  background: var(--df-surface, #fff);
  border: 2px solid var(--df-primary, #FF7A00);
  border-radius: 18px 18px 4px 18px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--df-text, #333);
  margin-bottom: 10px;
  box-shadow: var(--df-shadow-sm, 0 4px 16px rgba(0,0,0,0.08));
  max-width: 180px;
  text-align: center;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.35s var(--df-ease, ease);
  pointer-events: none;
}

.mascote-container:hover .mascote-balao {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mascote-sm .mascote-img { width: 88px; }
.mascote-sm .mascote-balao { font-size: 0.72rem; padding: 8px 12px; max-width: 150px; }

.mascote-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  text-align: center;
}

.mascote-empty .mascote-img {
  width: 140px;
  animation: mascote-float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(154, 205, 50, 0.15));
  pointer-events: none;
}

.mascote-empty p {
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--df-text-muted, #888);
}

.mascote-empty span {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 6px;
  display: block;
}

@keyframes mascote-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes mascote-entrada {
  from { opacity: 0; transform: translateY(40px) scale(0.85); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
  .mascote-container { bottom: 88px; right: 16px; }
  .mascote-img { width: 88px; }
}
