#guide-mascot{
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  z-index: 10000;
  pointer-events: none;

  transform: translate(100vw, 100vh);
  transition: transform .4s ease;
  
  transform-origin: center center;
}


.mascot-rotate{
  width: 100%;
  transform-origin: center center;
}

.mascot-float{
  width: 100%;
  animation: floatMascot 2.5s ease-in-out infinite;
}

@keyframes floatMascot{
 0%{transform:translateY(0)}
 50%{transform:translateY(-10px)}
 100%{transform:translateY(0)}
}

#guide-mascot{
  transition: transform 0.8s ease-in, opacity 0.6s;
}

.mascot-exit{
  opacity: 0;
}



.mascot-fly-away{
 animation:flyAwaySlow 3s ease-in-out;
}



#guide-mascot .float{
  display: block;
  animation: floatMascot 2.5s ease-in-out infinite;
}

@keyframes flyAwaySlow{

 0%{
   transform:translate(0,0) scale(1);
   opacity:1;
 }

 40%{
   transform:translate(-120px,-80px) scale(.95);
 }

 70%{
   transform:translate(-260px,-180px) scale(.85);
 }

 100%{
   transform:translate(-450px,-320px) scale(.7);
   opacity:0;
 }

}


.mascot-fly-in{
  animation: flyInToTarget 1.8s ease-out forwards;
}

@keyframes flyInToTarget{
  0%{
    transform: translate(0, 0) scale(0.9);
    opacity: 0;
  }
  100%{
    transform: translate(var(--mx), var(--my)) scale(1);
    opacity: 1;
  }
}
 
 
 
 
 






























/* overlay usando o próprio popup */
.pg-guide-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);

  z-index: 9999;

  opacity: 0;
  animation: pgFadeIn 0.3s ease forwards;
}

/* container real */
.pg-guide-popup-inner {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  max-width: 380px;
  width: 90%;

  /*text-align: center;*/
  
  display: flex;
  align-items: center;
  gap: 20px;

  text-align: left;

  box-shadow: 0 25px 70px rgba(0,0,0,0.3);

  transform: scale(0.9) translateY(30px);
  opacity: 0;

  animation: pgPopupIn 0.3s ease forwards;
}

/* texto */
.pg-guide-popup-inner p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

/* botões */
.pg-guide-actions {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.pg-guide-actions button {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* botão principal */
.pg-guide-yes {
  background: linear-gradient(135deg, #1860A3, #0f4c82);
  color: #fff;
}

.pg-guide-yes:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(24,96,163,0.4);
}

/* botão secundário */
.pg-guide-no {
  background: #f3f3f3;
  color: #333;
}

.pg-guide-no:hover {
  background: #e0e0e0;
}


.pg-guide-mascot {
  flex-shrink: 0;
}

.pg-guide-mascot img {
  width: 70px;
  height: auto;
}

.pg-guide-content {
  flex: 1;
}

.pg-guide-mascot img {
  animation: pgFloat 2.5s ease-in-out infinite;
}

@keyframes pgFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


/* animações */
@keyframes pgFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pgPopupIn {
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .pg-guide-popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .pg-guide-actions {
    justify-content: center;
  }

  .pg-guide-mascot img {
    width: 60px;
  }
}

.theiaStickySidebar {
    transform: unset !important;
}


