.plan-price-stack .price-anchor-unlock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  min-height: 40px;
  margin: 0 auto 6px;
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  color: #1b123d;
  background: #f49e12;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  cursor: pointer;
  animation: price-anchor-nudge 1.8s ease-in-out infinite;
}

.plan-price-stack .price-anchor-unlock:hover,
.plan-price-stack .price-anchor-unlock:focus-visible {
  color: #1b123d;
  background: #ffd36a;
  outline: none;
  animation: none;
}

.price-anchor-unlock[hidden],
.ingressos-section .comparison-table__plan-original[hidden],
.plan-card .comparison-table__plan-original[hidden],
.price-anchor-off[hidden] {
  display: none !important;
}

.ingressos-section .comparison-table__plan--standard,
.ingressos-section .plan-card--standard .plan-card__header {
  background: #157a72;
}

.ingressos-section .plan-price-stack .comparison-table__plan-installments,
.ingressos-section .plan-price-stack .price-anchor-off,
.ingressos-section .plan-price-stack .price-anchor-swap strong {
  color: #ffd36a;
}

.price-anchor-off {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  animation: price-anchor-blink 0.8s ease-in-out infinite;
}

html.price-anchor-unlocked-standard [data-plan="standard"] .comparison-table__plan-original,
html.price-anchor-unlocked-standard [data-mobile-plan="standard"] .comparison-table__plan-original,
html.price-anchor-unlocked-premium [data-plan="premium"] .comparison-table__plan-original,
html.price-anchor-unlocked-premium [data-mobile-plan="premium"] .comparison-table__plan-original,
html.price-anchor-unlocked-vip [data-plan="vip"] .comparison-table__plan-original,
html.price-anchor-unlocked-vip [data-mobile-plan="vip"] .comparison-table__plan-original {
  display: block;
}

.price-anchor-swap {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.price-anchor-swap s {
  color: inherit;
  font-size: 0.72em;
  font-weight: 700;
  text-decoration: line-through;
  animation: price-anchor-strike 1.8s ease-out both;
}

.price-anchor-swap strong {
  font-size: 1.05em;
  font-weight: 900;
  animation: price-anchor-pop 1.8s ease-out 0.35s both;
}

.plan-price-stack.is-unlocking [data-anchor-installments] {
  animation: price-anchor-flash 1.8s ease-out;
}

.ingressos-section .plan-card .price-anchor-unlock {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 16px;
}

.ingressos-section .plan-card .plan-price-stack .comparison-table__plan-installments {
  font-size: 32px;
}

.ingressos-section .plan-card .comparison-table__plan-original,
.ingressos-section .plan-card .price-anchor-off,
.ingressos-section .plan-card .plan-price-stack .comparison-table__plan-price {
  font-size: 16px;
}

.ingressos-section .plan-card .plan-price-stack .comparison-table__plan-price {
  max-width: none;
}

@keyframes price-anchor-nudge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(244, 158, 18, 0.42);
  }
}

@keyframes price-anchor-strike {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes price-anchor-pop {
  0% {
    transform: scale(0.86);
    opacity: 0;
  }

  55% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes price-anchor-flash {
  0%,
  100% {
    filter: brightness(1);
  }

  35% {
    filter: brightness(1.45);
  }
}

@keyframes price-anchor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-price-stack .price-anchor-unlock,
  .price-anchor-off,
  .price-anchor-swap s,
  .price-anchor-swap strong,
  .plan-price-stack.is-unlocking [data-anchor-installments] {
    animation: none;
  }
}
