/* Planos e preços */
.section-inner { max-width: 1180px; }

.price-card { background: #FFFFFF; border: 1px solid #E4E4E7; border-radius: 20px; padding: 32px; display: flex; flex-direction: column; height: 100%; }
.price-card.featured { border: 2px solid var(--accent); box-shadow: 0 20px 40px -24px rgba(69,48,168,0.3); }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #3F3F46; }

/* Alternador vitalício/mensal. Por enquanto só o vitalício está à venda. */
.toggle-pill { padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; background: transparent; color: #52525B; font-family: inherit; }
.toggle-pill.active { background: var(--accent); color: #FFFFFF; cursor: default; }
.toggle-pill:disabled { color: #A1A1AA; cursor: not-allowed; }
.soon-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; background: #E4E4E7; color: #71717A; border-radius: 999px; padding: 2px 6px; margin-left: 4px; vertical-align: 1px; }

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}

.price-card .btn-secondary:disabled { color: #A1A1AA; cursor: not-allowed; }
.price-card .btn-secondary:disabled:hover { border-color: #E4E4E7; }
