/* ═══════════════════════════════════════════════════
   NEURAL FORGE — precos.html
   Pricing Cards · How We Price · FAQ
═══════════════════════════════════════════════════ */

/* ── PRICING CARDS ── */
.pricing-section { padding: 80px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 72px; }

.p-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; position: relative; transition: border-color .25s, box-shadow .25s; display: flex; flex-direction: column; }
.p-card:hover { border-color: var(--orange-border); box-shadow: 0 0 48px var(--orange-glow); }
.p-card.featured { border-color: var(--orange-border); background: linear-gradient(160deg, rgba(240,76,35,.06) 0%, var(--bg-card) 60%); }
.p-card.featured::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background: linear-gradient(90deg, transparent, var(--orange), transparent); border-radius: var(--r) var(--r) 0 0; }
.p-featured-badge { display:inline-block; background:var(--orange); color:#fff; font-size:10px; font-weight:700; padding:3px 10px; border-radius:100px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:20px; }
.p-category { font-size:11px; color:var(--text-3); text-transform:uppercase; letter-spacing:.14em; font-weight:500; margin-bottom:10px; }
.p-name { font-size:22px; font-weight:700; margin-bottom:8px; }
.p-desc { font-size:14px; color:var(--text-2); font-weight:300; line-height:1.7; margin-bottom:24px; flex:1; }
.p-price { margin-bottom:24px; }
.p-price-label { font-size:12px; color:var(--text-3); margin-bottom:4px; }
.p-price-val { font-size:36px; font-weight:700; color:var(--orange); line-height:1; }
.p-price-sub { font-size:13px; color:var(--text-3); margin-top:4px; }
.p-features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.p-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text-2); line-height:1.5; }
.p-check { color:var(--orange); flex-shrink:0; margin-top:1px; }

/* ── HOW WE PRICE ── */
.how-section { padding: 80px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.how-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-dim); display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 16px; }
.how-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.how-card p { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.75; }

/* ── FAQ ── */
.faq-section { padding: 80px 0; }
.faq-grid { max-width: 760px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; user-select: none; font-size: 15px; font-weight: 500; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-icon { flex-shrink: 0; transition: transform .3s; color: var(--text-3); }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: var(--text-2); font-weight: 300; line-height: 1.75; }

@media(max-width:1024px){ .pricing-grid{ grid-template-columns:repeat(2,1fr); } .how-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:768px)  { .pricing-grid{ grid-template-columns:1fr; } .how-grid{ grid-template-columns:1fr; } }
