.plans {
  background: var(--surface);
  padding-top: 72px;
  padding-bottom: 40px;
}

.faq-section {
  padding-top: 40px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: #202724;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(2, 8, 6, 0.15);
  color: #ffffff;
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(2, 8, 6, 0.3);
  border-color: rgba(0, 158, 104, .45);
}

/* Plano em destaque (Profissional) */
.plan.featured {
  background: #27302c;
  border-color: var(--green-accent);
  box-shadow: 0 12px 35px rgba(0, 158, 104, 0.1);
}

.plan.featured:hover {
  border-color: var(--green-accent-soft);
  box-shadow: 0 22px 50px rgba(0, 158, 104, 0.2);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-accent);
  color: #020806;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 158, 104, 0.3);
  white-space: nowrap;
  z-index: 2;
}

.plan h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.plan .subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-accent);
  margin: 0 0 16px;
}

.plan .desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  min-height: 48px;
  line-height: 1.5;
}

.plan .price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan .price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.plan .price-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0.85;
  margin: 6px 0 26px;
}

.plan .btn {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

.plan .btn-ghost-dark:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: #020806;
}

.plan ul {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #ffffff;
}

.plan li svg {
  flex: none;
  margin-top: 3px;
  color: var(--green-accent);
}

/* operação não liberada no plano */
.plan li.off {
  color: rgba(255, 255, 255, 0.4);
}

.plan li.off svg {
  color: rgba(255, 255, 255, 0.3);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}

.faq h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.faq p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 940px) {

  .plans-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
