/* Fase 34 — Paywalls hipnóticos */
.omni-pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}

.omni-plan-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.omni-plan-card--muted {
  background: rgba(30, 41, 59, 0.35);
  border: 1px solid rgba(71, 85, 105, 0.35);
  opacity: 0.55;
  filter: grayscale(0.4);
}

.omni-plan-card--prime {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(56, 189, 248, 0.55);
  box-shadow:
    0 0 40px rgba(56, 189, 248, 0.25),
    0 0 80px rgba(251, 191, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: scale(1.03);
  z-index: 2;
}

.omni-plan-card--zeus {
  background: linear-gradient(145deg, rgba(30, 27, 15, 0.9), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.35);
  overflow: hidden;
}

.omni-plan-card--zeus::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.55);
  pointer-events: none;
}

.omni-plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.omni-plan-badge--survival {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.4);
  animation: omni-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes omni-glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
  }
  50% {
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.45);
  }
}

.omni-zeus-lock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  padding: 1.5rem;
  pointer-events: none;
}

.omni-zeus-lock__icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
  animation: omni-lock-float 3s ease-in-out infinite;
}

@keyframes omni-lock-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.omni-zeus-lock__text {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fcd34d;
  max-width: 14rem;
  line-height: 1.4;
}
