/* ── Planos / pricing (landing pública) ───────────────────────────────────── */

.pricing-hero-banner {
  margin-bottom: 48px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid #a7f3d0;
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 55%, #f0fdf4 100%);
}
.pricing-hero-banner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.pricing-hero-banner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52rem;
}
.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing-trust strong { color: var(--accent); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.pricing-grid--secondary {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-inline: auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.plan-card:hover {
  border-color: #d4d4d8;
  box-shadow: var(--shadow-md);
}
.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(4, 120, 87, 0.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
}
.plan-card.featured .plan-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.plan-card.featured {
  background: linear-gradient(165deg, #047857 0%, #059669 100%);
  color: #fff;
}
.plan-audience {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.plan-card.featured .plan-audience { color: rgba(255, 255, 255, 0.75); }
.plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.plan-headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.4;
}
.plan-card.featured .plan-headline { color: #a7f3d0; }
.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.plan-card.featured .plan-desc { color: rgba(255, 255, 255, 0.82); }
.plan-caixas {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
}
.plan-card.featured .plan-caixas {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.plan-divider {
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 14px;
}
.plan-card.featured .plan-divider { background: rgba(255, 255, 255, 0.2); }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}
.plan-card.featured .plan-feature { color: rgba(255, 255, 255, 0.95); }
.plan-feature-highlight {
  padding: 8px 10px;
  border-radius: 10px;
  background: #ecfdf5;
  font-weight: 600;
  color: #065f46;
}
.plan-card.featured .plan-feature-highlight {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.plan-feature-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}
.plan-card.featured .plan-feature-check {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn-plan {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: background 0.15s, transform 0.15s;
}
.btn-plan:active { transform: scale(0.98); }
.btn-plan-dark {
  background: var(--bg-inverse);
  color: #fff;
}
.btn-plan-dark:hover { background: #27272a; }
.btn-plan-light {
  background: #fff;
  color: var(--accent);
}
.btn-plan-light:hover { background: #f0fdf4; }
.btn-plan-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-plan-outline:hover { border-color: var(--accent); color: var(--accent); }

.pricing-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pricing-note a { color: var(--accent); font-weight: 600; }

/* Comparativo */
.compare-wrap { margin-top: 56px; }
.compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.compare-toggle:hover { background: var(--bg); border-color: #d4d4d8; }
.compare-toggle svg { transition: transform 0.2s; }
.compare-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.compare-panel {
  margin-top: 16px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.compare-panel[hidden] { display: none; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th,
.compare-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
  vertical-align: top;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
  min-width: 180px;
}
.compare-table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  background: var(--bg);
}
.compare-domain { font-weight: 600; color: var(--text); margin-bottom: 2px; }
.compare-domain-desc { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.cov-full { color: var(--accent); font-weight: 700; }
.cov-partial { color: #d97706; font-weight: 700; }
.cov-none { color: #d4d4d8; }
.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

/* Por que */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.why-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
}
.why-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
}
.why-card h3 { margin: 0 0 6px; font-size: 14px; font-weight: 700; }
.why-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.55; }

.addons-box {
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.addons-box strong { color: var(--text); }

/* FAQ planos */
.faq-section { padding-top: 0; }
.faq-list {
  max-width: 720px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-subtle);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid--secondary { grid-template-columns: 1fr 1fr; max-width: none; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid--secondary { grid-template-columns: 1fr; }
  .pricing-hero-banner { padding: 20px; }
}
