/* Mascote Pingú comemorativo — usa body[data-zyga-mascote] definido em js/temas-zyga.js */
.zyga-mascote-stack {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
}

.zyga-mascote-stack--sm .zyga-mascote-ring {
  width: 72px;
  height: 72px;
}

.zyga-mascote-stack--sm .zyga-mascote-img {
  width: 56px;
  height: 56px;
}

.zyga-mascote-ring {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.12);
  border: 2px solid rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 12px 40px rgba(0, 0, 0, 0.35);
}

.zyga-mascote-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

/* Chapéu de Papai Noel (CSS) */
body[data-zyga-mascote="natal"] .zyga-mascote-ring::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-52%) rotate(-8deg);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-bottom: 22px solid #c62828;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45));
  z-index: 2;
}

body[data-zyga-mascote="natal"] .zyga-mascote-ring::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 56%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fafafa;
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Médico: cruz e halo suave */
body[data-zyga-mascote="medico"] .zyga-mascote-ring::after {
  content: "+";
  position: absolute;
  top: -10px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #26c6da, #00838f);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 131, 143, 0.45);
}

body[data-zyga-mascote="medico"] .zyga-mascote-ring {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 32px rgba(38, 198, 218, 0.25);
}

/* Dentista: “reflexo” claro */
body[data-zyga-mascote="dentista"] .zyga-mascote-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 3px solid rgba(179, 229, 252, 0.85);
  z-index: 0;
  pointer-events: none;
}

body[data-zyga-mascote="dentista"] .zyga-mascote-ring {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 28px rgba(79, 195, 247, 0.35);
}

body[data-zyga-mascote="dentista"] .zyga-mascote-img {
  position: relative;
  z-index: 1;
}

/* Namorados: corações discretos no anel */
body[data-zyga-mascote="namorados"] .zyga-mascote-ring::after {
  content: "💕";
  position: absolute;
  bottom: -4px;
  right: -6px;
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
  z-index: 2;
}

body[data-zyga-mascote="halloween"] .zyga-mascote-ring::after {
  content: "🎃";
  position: absolute;
  top: -8px;
  left: -6px;
  font-size: 22px;
  z-index: 2;
}

body[data-zyga-mascote="pascoa"] .zyga-mascote-ring::after {
  content: "🐣";
  position: absolute;
  top: -6px;
  right: -8px;
  font-size: 20px;
  z-index: 2;
}

body[data-zyga-mascote="anonovo"] .zyga-mascote-ring::after {
  content: "✨";
  position: absolute;
  top: -10px;
  right: -4px;
  font-size: 22px;
  z-index: 2;
}

.zyga-mascote-slot {
  display: flex;
  justify-content: center;
  padding: 18px 16px 0;
}
