/* ==========================================================================
   CONTENEDOR: agrupa el botón y el dedo sin que compartan animación
   ========================================================================== */
.sello-wrapper {
  position: fixed !important;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 82px;
  height: 82px;
}

/* ==========================================================================
   INSIGNIA FLOTANTE INDEPENDIENTE: 40 ANIVERSARIO
   ========================================================================== */
.sello-40-aniversario {
  position: absolute !important;
  inset: 0;
  width: 82px;
  height: 82px;
  background: radial-gradient(circle, #700b0b 0%, #4a0505 100%);
  border: 2px solid #f1c40f;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(241, 196, 15, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  animation: flotarSelloAniversario 3s ease-in-out infinite;
}

.sello-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.1;
  user-select: none;
}

.sello-numero {
  font-size: 1.45rem;
  font-weight: 800;
  color: #f1c40f;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.sello-texto {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.sello-40-aniversario:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.5);
  border-color: #ffffff;
}

.sello-40-aniversario:hover .sello-numero {
  color: #ffffff;
}

@keyframes flotarSelloAniversario {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}


/* ==========================================================================
   DEDO INDICADOR — pulso de "presióname", independiente del flotado
   ========================================================================== */
.sello-dedo {
  display: inline-block !important;
  font-size: 1.4rem !important;
  pointer-events: none !important;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.7)) !important;
  transform-origin: center !important;
  animation-name: dedoPulsoContrarrestado !important;
  animation-duration: 1.3s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
}

@keyframes dedoPulsoContrarrestado {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
}