/* ─── PLANOS / PRICING ─── */
.pricing-bg {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #070d1a 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  align-items: start;
}

/* ─── CARD DE PLANO ─── */
.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.2);
}

.plan-card.featured {
  border-color: var(--blue-core);
  background: linear-gradient(160deg, #0f1e3a 0%, #111827 100%);
  box-shadow: 0 0 0 1px var(--blue-core), 0 20px 60px rgba(37, 99, 235, 0.2);
}
.plan-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px var(--blue-bright), 0 30px 80px rgba(37, 99, 235, 0.3);
}

/* ─── BADGE "MAIS VENDIDO" ─── */
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--blue-core);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
}

/* ─── TEXTOS DO CARD ─── */
.plan-tier {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-glow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 24px;
}

/* ─── PREÇO ─── */
.plan-price-area {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-price .currency {
  font-size: 1.2rem;
  color: var(--white-dim);
  font-weight: 600;
}
.plan-price .placeholder {
  font-size: 2rem;
  color: var(--white-dim);
  font-style: italic;
  font-weight: 400;
}

/* ─── FEATURES ─── */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.5;
}

.plan-features li .check {
  color: var(--blue-bright);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-features li .check-gold {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
