/* ChurchPlan — estilos compartilhados */
:root {
  --teal: #14b8b0;
  --blue: #2b9cf0;
  --grad: linear-gradient(120deg, #16c8b8 0%, #2b9cf0 100%);
  --ink: #0e1726;
  --ink-2: #33415c;
  --muted: #64748b;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --line: #e6edf4;
  --radius: 18px;
  --shadow: 0 18px 50px -20px rgba(19, 68, 120, 0.35);
  --wrap: 1140px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 21, 38, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #cdd9ea; font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--grad); color: #fff !important; font-weight: 600;
  padding: 10px 22px; border-radius: 999px; font-size: 14px;
  box-shadow: 0 10px 24px -10px rgba(43,156,240,.7);
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; padding: 15px 30px;
  border-radius: 999px; cursor: pointer; transition: transform .2s, box-shadow .2s;
  border: 0;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 16px 34px -14px rgba(43,156,240,.75); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 16px 34px -14px rgba(37,211,102,.7); }
.btn-wa:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #123a6b 0%, #0b1526 55%, #0b1526 100%);
  color: #fff; padding: 92px 0 110px;
}
.hero::after {
  content:""; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 12% 100%, rgba(22,200,184,.18), transparent 70%);
  pointer-events:none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #bfe6f5; font-size: 13px; font-weight: 600; letter-spacing: .3px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.08; margin: 0 0 20px;
  font-weight: 700; color: #fff; letter-spacing: -0.5px;
}
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: #c5d3e6; max-width: 540px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 46px; }
.hero-stats .num { font-size: 30px; font-weight: 700; color: #fff; }
.hero-stats .lbl { font-size: 14px; color: #9fb2ca; }

/* mock phone */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  width: 280px; height: 560px; border-radius: 42px;
  background: linear-gradient(160deg, #1b2942, #0e1a30);
  border: 8px solid #0a1220; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8), inset 0 0 0 1px rgba(255,255,255,.05);
  padding: 20px 16px; position: relative;
}
.phone::before { content:""; position:absolute; top:16px; left:50%; transform:translateX(-50%); width:110px; height:22px; background:#0a1220; border-radius:0 0 14px 14px; }
.p-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px; margin-top: 12px; }
.p-card h4 { margin: 0 0 4px; font-size: 14px; color: #fff; }
.p-card span { font-size: 12px; color: #9fb2ca; }
.p-head { display:flex; align-items:center; justify-content:space-between; margin-top: 22px; }
.p-head .dot { width: 40px; height: 40px; border-radius: 12px; background: var(--grad); }
.p-title { font-size: 17px; color:#fff; font-weight: 600; }
.p-pill { display:inline-block; font-size:11px; color:#8be9dc; background:rgba(22,200,184,.14); padding:4px 10px; border-radius:999px; margin-top:8px; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head .kicker { color: var(--blue); font-weight: 700; font-size: 14px; letter-spacing: 1.4px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); color: var(--ink); margin: 12px 0 14px; font-weight: 700; letter-spacing: -0.5px; }
.section-head p { font-size: 18px; color: var(--muted); margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ico {
  width: 54px; height: 54px; border-radius: 15px; background: var(--grad);
  display: grid; place-items: center; margin-bottom: 20px;
}
.feature .ico svg { width: 26px; height: 26px; stroke: #fff; }
.feature h3 { margin: 0 0 10px; font-size: 20px; color: var(--ink); font-weight: 600; }
.feature p { margin: 0; font-size: 15.5px; color: var(--muted); }

.soft { background: var(--bg-soft); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { text-align: center; padding: 0 10px; }
.step .n {
  counter-increment: step; width: 62px; height: 62px; margin: 0 auto 20px;
  border-radius: 50%; background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center; font-size: 22px; font-weight: 700; color: var(--blue);
}
.step .n::before { content: counter(step); }
.step h3 { color: var(--ink); font-size: 19px; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* cta band */
.cta-band {
  background: radial-gradient(900px 400px at 20% -30%, #1a4f7f, #0b1526);
  color: #fff; border-radius: 28px; padding: 64px 48px; text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 14px; font-weight: 700; }
.cta-band p { color: #c5d3e6; font-size: 18px; margin: 0 auto 30px; max-width: 560px; }

/* ---------- Article pages ---------- */
.page-hero {
  background: radial-gradient(900px 500px at 80% -20%, #123a6b, #0b1526);
  color: #fff; padding: 72px 0 60px; text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4.5vw, 46px); margin: 0 0 12px; font-weight: 700; }
.page-hero p { color: #c5d3e6; margin: 0; font-size: 17px; }
.article { padding: 70px 0 90px; }
.article .wrap { max-width: 820px; }
.article h2 { color: var(--ink); font-size: 24px; margin: 44px 0 14px; font-weight: 700; }
.article h3 { color: var(--ink); font-size: 19px; margin: 28px 0 10px; }
.article p, .article li { font-size: 16.5px; color: var(--ink-2); }
.article ul { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article a { color: var(--blue); font-weight: 500; }
.updated { color: var(--muted); font-size: 14px; font-style: italic; }

/* impedir que a tipografia do artigo sobrescreva componentes internos */
.article a.btn { font-weight: 600; }
.article a.btn-primary, .article a.btn-wa { color: #fff; }
.article a.btn-ghost { color: #fff; }
.article .cta-band h2 { color: #fff; margin-top: 0; }
.article .cta-band p { color: #c5d3e6; }
.article .support-card h3 { margin-top: 0; }
.article .support-card p { color: var(--muted); }
.article .support-card a.btn { color: #fff; }

/* support cards */
.support-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 26px; margin-top: 10px; }
.support-card {
  border:1px solid var(--line); border-radius: var(--radius); padding: 34px; background:#fff;
  transition: box-shadow .25s, transform .25s;
}
.support-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.support-card .ico { width:56px;height:56px;border-radius:15px;background:var(--grad);display:grid;place-items:center;margin-bottom:18px;}
.support-card .ico svg { width:28px;height:28px;stroke:#fff;fill:none;}
.support-card h3 { margin:0 0 8px; color:var(--ink); font-size:20px;}
.support-card p { margin:0 0 18px; color:var(--muted); font-size:15.5px;}
.contact-line { color:var(--ink); font-weight:600; }

.faq { margin-top: 30px; }
.faq details {
  border:1px solid var(--line); border-radius: 14px; padding: 4px 22px; margin-bottom: 14px; background:#fff;
}
.faq summary { cursor:pointer; font-weight:600; color:var(--ink); padding:18px 0; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; font-size:22px; color:var(--blue); font-weight:400; }
.faq details[open] summary::after { content:"–"; }
.faq details p { margin:0 0 18px; color:var(--muted); font-size:15.5px; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1526; color: #9fb2ca; padding: 60px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-grid img { height: 30px; margin-bottom: 16px; }
.footer-grid p { font-size: 14.5px; max-width: 300px; }
.footer-col h4 { color:#fff; font-size:15px; margin:0 0 16px; }
.footer-col a { display:block; color:#9fb2ca; font-size:14.5px; margin-bottom:10px; transition:color .2s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:13.5px; flex-wrap:wrap; gap:10px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; background:#0b1526; padding: 24px; gap:18px; border-bottom:1px solid rgba(255,255,255,.1); transform: translateY(-140%); transition: transform .3s; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .features-grid, .steps, .support-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  section { padding: 70px 0; }
  .cta-band { padding: 48px 26px; }
}
