.iconoExitoV2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b09b, #96c93d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto;
  position: relative;
  animation: entradaSuave 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Check animado */
.iconoExitoV2::before {
  content: "";
  width: 32px;
  height: 16px;
  border-left: 6px solid white;
  border-bottom: 6px solid white;
  transform: rotate(-45deg) scale(0);
  animation: dibujarCheck 0.4s ease-out 0.3s forwards;
  position: absolute;
  top: 34px;
  left: 24px;
}

/* Efecto de onda expansiva */
.iconoExitoV2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: onda 1s ease-out 0.5s;
}

@keyframes entradaSuave {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes dibujarCheck {
  0% {
    transform: rotate(-45deg) scale(0);
    opacity: 0;
  }
  50% {
    transform: rotate(-45deg) scale(1.2);
  }
  100% {
    transform: rotate(-45deg) scale(1);
    opacity: 1;
  }
}

@keyframes onda {
  0% {
    border: 2px solid rgba(255, 255, 255, 0.8);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    border: 2px solid rgba(255, 255, 255, 0);
    transform: scale(1.4);
    opacity: 0;
  }
}