/* ===========================================================
   DMA Digital — Home (design novo, limpo e moderno)
   Mantém a paleta da marca, foco em conversão e leveza.
   =========================================================== */
:root {
  --primary: #2B2774;
  --secondary: #2898CA;
  --accent: #090633;
  --text: #3D3D3D;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f6f7fc;
  --line: #e9eaf3;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1160px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(9, 6, 51, .06);
  --shadow: 0 18px 50px rgba(9, 6, 51, .12);
  --grad: linear-gradient(135deg, #2B2774 0%, #090633 100%);
  --grad-bright: linear-gradient(120deg, #2898CA 0%, #2B2774 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], article[id] { scroll-margin-top: 88px; }
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: var(--bg); line-height: 1.7; font-size: 17px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); margin-bottom: 14px;
}
.eyebrow svg { width: 16px; height: 16px; flex: 0 0 16px; }
h1, h2, h3 { font-weight: 800; color: var(--accent); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1.1em; }
.lead { font-size: 1.18rem; color: #4b4b5e; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  font-family: var(--font); line-height: 1;
}
.btn-primary { background: var(--secondary); color: #fff; box-shadow: 0 10px 24px rgba(40, 152, 202, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(40, 152, 202, .45); }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: #221f5c; transform: translateY(-3px); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.hdr .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.hdr-logo img { height: 40px; }
.hdr-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
.hdr-nav a { color: var(--accent); font-weight: 600; font-size: .96rem; position: relative; }
.hdr-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--secondary); transition: width .2s;
}
.hdr-nav a:not(.btn):hover::after { width: 100%; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--accent); margin: 6px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad); color: #fff; overflow: hidden; }
/* brilhos de cor que se movem suavemente */
.hero::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(circle at 80% 20%, rgba(40,152,202,.5), transparent 42%),
              radial-gradient(circle at 8% 85%, rgba(40,152,202,.32), transparent 40%),
              radial-gradient(circle at 50% 50%, rgba(126,208,247,.16), transparent 55%);
  animation: heroGlow 16s ease-in-out infinite alternate;
}
/* grade de pontos sutil por cima */
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 35%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 70% 35%, #000 0%, transparent 75%);
}
@keyframes heroGlow {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.08); }
}
/* anéis/bolhas decorativas flutuantes */
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-deco span { position: absolute; border-radius: 50%; }
.hero-deco .b1 { width: 320px; height: 320px; top: -90px; right: 8%; background: radial-gradient(circle at 30% 30%, rgba(126,208,247,.35), transparent 70%); filter: blur(8px); animation: floaty 11s ease-in-out infinite; }
.hero-deco .b2 { width: 180px; height: 180px; bottom: -40px; left: 12%; border: 2px solid rgba(255,255,255,.18); animation: floaty 9s ease-in-out infinite reverse; }
.hero-deco .b3 { width: 90px; height: 90px; top: 40%; left: 4%; border: 2px solid rgba(126,208,247,.35); animation: floaty 13s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-26px) translateX(10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero-deco span { animation: none; }
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; padding-block: 90px; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { margin-top: 34px; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.8); font-size: .9rem; }
.hero-trust .badges { display: flex; gap: 12px; }
.hero-trust .badges img { height: 46px; background: #fff; border-radius: 10px; padding: 6px; }
.hero-visual { position: relative; }
.hero-visual > img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.hero-float {
  position: absolute; background: #fff; color: var(--accent); border-radius: 14px;
  box-shadow: var(--shadow); padding: 14px 18px; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; gap: 10px;
}
.hero-float .dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); }
.hero-float .ico {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 38px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.hero-float .ico svg { width: 19px; height: 19px; }
.hero-float.one { bottom: 28px; left: -22px; }
.hero-float.two { top: 24px; right: -18px; }
.hero-float small { display: block; font-weight: 500; color: var(--muted); font-size: .78rem; }

/* ---------- Hero de página interna ---------- */
.page-hero .container { display: block; text-align: center; max-width: 780px; padding-block: 72px; }
.page-hero h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.page-hero .lead { margin-inline: auto; max-width: 620px; }
.page-hero .eyebrow { color: #7ed0f7; }

/* ---------- Pacotes (página Serviços) ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { border: 2px solid var(--secondary); box-shadow: var(--shadow); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-bright); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.pkg .svc-ico { margin-inline: auto; }
.pkg h3 { margin-bottom: 6px; text-align: center; }
.pkg-tagline { text-align: center; }
.pkg-tagline { color: var(--primary); font-weight: 700; font-size: .95rem; margin-bottom: 10px; }
.pkg-desc { color: var(--muted); font-size: .92rem; }
.pkg .check { margin: 8px 0 26px; flex: 1; }
.pkg .check li { font-size: .9rem; margin-bottom: 11px; padding-left: 30px; font-weight: 500; }
.pkg .check li::before { width: 20px; height: 20px; font-size: .72rem; }
.pkg .btn { justify-content: center; }
.pkg-more { display: block; text-align: center; margin-top: 14px; font-weight: 700; font-size: .9rem; }
.clients { padding: 40px 0; border-bottom: 1px solid var(--line); }
.clients p { text-align: center; color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.clients-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.clients-row img { height: 54px; width: auto; filter: grayscale(1); opacity: .65; transition: .25s; }
.clients-row img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Seções ---------- */
.section { padding: 90px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Serviços ---------- */
.svc-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(40,152,202,.15), rgba(43,39,116,.15)); margin-bottom: 18px;
  color: var(--primary);
}
.svc-ico svg { width: 28px; height: 28px; }
.svc:hover .svc-ico { background: var(--grad-bright); color: #fff; }
.svc h3 { margin-bottom: 8px; }
.svc p { color: var(--muted); font-size: .96rem; flex: 1; margin-bottom: 14px; }
.svc a { font-weight: 700; font-size: .92rem; }

/* variações de grid de cards */
.svc-grid.four { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-grid.four .svc { padding: 26px 22px; }
.svc-grid.centered .svc { text-align: center; align-items: center; }
.svc-grid.centered .svc-ico { margin-inline: auto; }
.svc-grid.centered h3 { font-size: 1.02rem; }
.svc-grid.centered p { font-size: .88rem; }

/* variação compacta: 2 linhas de 3 cards */
.svc-grid.six { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid.six .svc { padding: 26px 24px; }
.svc-grid.six .svc-ico { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px; }
.svc-grid.six .svc-ico svg { width: 23px; height: 23px; }
.svc-grid.six h3 { font-size: 1.05rem; line-height: 1.3; }
.svc-grid.six p { font-size: .88rem; line-height: 1.6; margin-bottom: 0; }

/* ---------- Como funciona (passos) ---------- */
.steps { display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 2.4rem; font-weight: 800; color: rgba(40,152,202,.25); line-height: 1; display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }
.steps.six { grid-template-columns: repeat(3, 1fr); }
.steps.six .step::before {
  content: "Passo 0" counter(step);
  font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary);
}

/* ---------- Stats (faixa em largura total) ---------- */
.stats-band { position: relative; overflow: hidden; background: var(--grad-bright); color: #fff; padding: 84px 0; }
.stats-band::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(circle at 85% 15%, rgba(126,208,247,.35), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(9,6,51,.35), transparent 45%);
  pointer-events: none;
}
.stats-band .container { position: relative; }
.stats-band .eyebrow { color: #7ed0f7; }
.stats-band h2 { color: #fff; }
.stats-intro { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); padding: 32px 22px; backdrop-filter: blur(4px);
  transition: transform .2s, background .2s;
}
.stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); }
.stat-ico {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
}
.stat-ico svg { width: 26px; height: 26px; }
.stat .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1; color: #fff; }
.stat .lbl { font-weight: 700; font-size: 1rem; margin-top: 10px; }
.stat .sub { color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.5; margin: 8px 0 0; }

/* ---------- Prova de escala (excelência comprovada) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-item { text-align: center; padding: 12px 24px; position: relative; }
.proof-item + .proof-item::before {
  content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--line);
}
.proof-num {
  font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.1; white-space: nowrap;
  background: var(--grad-bright); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-lbl { color: var(--muted); font-weight: 600; font-size: .95rem; margin-top: 8px; }
.proof-cta { text-align: center; margin-top: 52px; }

/* ---------- Planos ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 30px 32px; display: flex; flex-direction: column; text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--secondary); box-shadow: var(--shadow); }
.plan-name { font-size: .85rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); }
.plan-price { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; color: var(--primary); margin-top: 10px; line-height: 1; }
.plan-per { color: var(--muted); font-size: .85rem; font-weight: 600; margin-bottom: 16px; }
.plan-desc { color: var(--muted); font-size: .92rem; min-height: 52px; }
.plan .check { text-align: left; margin: 6px 0 20px; flex: 1; }
.plan .check li { font-size: .88rem; margin-bottom: 10px; padding-left: 30px; font-weight: 500; }
.plan .check li::before { width: 20px; height: 20px; font-size: .7rem; }
.plan-media { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }
.plan-media b { color: var(--accent); }
.plan .btn { justify-content: center; }

/* ---------- Sobre / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.check { list-style: none; padding: 0; margin: 22px 0 0; }
.check li { position: relative; padding-left: 34px; margin-bottom: 14px; font-weight: 500; }
.check li::before {
  content: "✓"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--secondary); color: #fff; font-size: .8rem; display: grid; place-items: center; font-weight: 700;
}

/* ---------- Parceiros ---------- */
.partners { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner { display: flex; gap: 20px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.partner img { height: 70px; width: auto; }
.partner h3 { margin: 0 0 4px; }
.partner p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---------- Depoimentos ---------- */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* slider de depoimentos (3 por vez) */
.tslider { position: relative; }
.ttrack {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 4px; scrollbar-width: none;
}
.ttrack::-webkit-scrollbar { display: none; }
.ttrack .tcard { flex: 0 0 calc((100% - 36px) / 3); scroll-snap-align: start; padding: 22px; }
.ttrack .quote { font-size: .88rem; margin-bottom: 14px; }
.ttrack .stars { font-size: .85rem; margin-bottom: 10px; }
.ttrack .tperson b { font-size: .88rem; }
.ttrack .tperson span { font-size: .78rem; }
.tnav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--primary); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: .2s;
  font-family: var(--font); padding: 0 0 3px;
}
.tnav:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.tnav.prev { left: -16px; }
.tnav.next { right: -16px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.tcard .quote { font-size: 1.02rem; color: var(--text); margin-bottom: 20px; }
.tcard .stars { color: #f5b50a; margin-bottom: 14px; letter-spacing: 2px; }
.tperson { display: flex; align-items: center; gap: 12px; }
.tperson img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tperson b { display: block; color: var(--accent); font-size: .95rem; }
.tperson span { color: var(--muted); font-size: .85rem; }

/* ---------- CTA + Form ---------- */
.cta { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta h2 { color: #fff; font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
.cta p { color: rgba(255,255,255,.85); }
.lead-form { background: #fff; border-radius: var(--radius); padding: 30px; display: grid; gap: 14px; box-shadow: var(--shadow); }
.lead-form h3 { color: var(--primary); margin: 0 0 4px; }
.lead-form input, .lead-form textarea, .lead-form select {
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px; font-family: var(--font); font-size: 1rem; width: 100%;
  background: #fff; color: var(--text);
}
.lead-form select:invalid { color: #757e93; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(40,152,202,.12); }
.lead-form small { color: var(--muted); font-size: .8rem; }
.cta.top { align-items: start; }
.cta-channels { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.cta-channels li { display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.cta-channels .ci { flex: 0 0 16px; color: #7ed0f7; margin-top: 3px; }
.cta-channels .ci svg { width: 16px; height: 16px; display: block; }
.cta-channels b { color: #fff; }
.cta-channels a { color: #7ed0f7; font-weight: 700; }
.cta-channels a:hover { color: #fff; }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-soft); }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post:hover .thumb img { transform: scale(1.06); }
.post .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post .cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--secondary); }
.post h3 { font-size: 1.05rem; margin: 8px 0 0; }
.post h3 a { color: var(--accent); }
.post h3 a:hover { color: var(--secondary); }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: .92rem; color: var(--accent); padding: 12px 18px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.2rem; color: var(--secondary); font-weight: 700; line-height: 1; transition: transform .2s; flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 18px 14px; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.faq .faq-a p { margin: 0; }

/* ---------- Blog: artigo ---------- */
.article { padding: 52px 0 80px; }
.article-wrap { max-width: 780px; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--secondary); font-weight: 600; }
.article-meta { font-size: .8rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.article-meta a { color: var(--secondary); }
.article h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 22px; }
.featured-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin: 4px 0 32px; width: 100%; }
.article-wrap h2 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-top: 44px; }
.article-wrap h3 { font-size: 1.15rem; margin-top: 32px; }
.article-wrap p, .article-wrap li { font-size: 1.02rem; }
.article-wrap img { border-radius: var(--radius); margin: 20px 0; }
.article-wrap a { font-weight: 600; }
.article-wrap blockquote {
  border-left: 4px solid var(--secondary); margin: 26px 0; padding: 12px 22px;
  background: var(--bg-soft); border-radius: 0 12px 12px 0; color: #4b4b5e;
}
.article-wrap figure { margin: 20px 0; }
.article-wrap iframe { max-width: 100%; border-radius: var(--radius); }

/* ---------- Blog: hub de conteúdos ---------- */
.hub-sec { margin-bottom: 64px; }
.hub-sec:last-child { margin-bottom: 0; }
.hub-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 22px; padding-bottom: 12px; border-bottom: 2px solid var(--line); flex-wrap: wrap;
}
.hub-head h2 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin: 0; }
.hub-head a { font-weight: 700; font-size: .92rem; white-space: nowrap; }
.hub-count { color: var(--muted); font-size: .9rem; font-weight: 600; }

/* ---------- Blog: listagem ---------- */
.cat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.cat-pill {
  padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line);
  font-weight: 600; font-size: .9rem; color: var(--accent); background: #fff; transition: .2s;
}
.cat-pill:hover { border-color: var(--secondary); color: var(--secondary); }
.cat-pill.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.post .excerpt { color: var(--muted); font-size: .88rem; margin: 8px 0 0; }
.pagination { display: flex; gap: 8px; justify-content: center; align-items: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination .current, .pagination > span { padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: .92rem; }
.pagination a { background: #fff; border: 1.5px solid var(--line); color: var(--accent); }
.pagination a:hover { border-color: var(--secondary); color: var(--secondary); }
.pagination .current { background: var(--secondary); color: #fff; }
.pagination > span { color: var(--muted); }

/* ---------- Faixa de CTA (blog) ---------- */
.cta-band { background: var(--grad); color: #fff; text-align: center; padding: 64px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Footer ---------- */
.ftr { background: var(--accent); color: #b9bce0; padding: 64px 0 28px; font-size: .92rem; }
.ftr a { color: #b9bce0; }
.ftr a:hover { color: #fff; }
.ftr-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.ftr h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 10px; }
.ftr-logo { height: 42px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.ftr-social-title { margin-top: 22px; }
.ftr-social { display: flex; gap: 10px; margin-top: 0; }
.ftr-social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.22); color: #b9bce0; transition: .2s;
}
.ftr-social a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.ftr-social svg { width: 18px; height: 18px; }
.ftr-contact li { line-height: 1.55; display: flex; align-items: flex-start; gap: 10px; }
.ftr-contact svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 4px; color: var(--secondary); }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #7e82b0; font-size: .82rem;
}
.ftr-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.form-msg { margin: 0; padding: 10px 14px; border-radius: 8px; font-size: .9rem; }
.form-msg.ok { background: #e7f6ec; color: #146c2e; }
.form-msg.err { background: #fdecec; color: #b42318; }

/* ---------- Animações ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-block: 64px; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; }
  .svc-grid, .steps, .stats-grid, .tg, .posts, .partners, .ftr-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid.six { grid-template-columns: 1fr 1fr; }
  .svc-grid.four { grid-template-columns: 1fr 1fr; }
  .ttrack .tcard { flex-basis: calc((100% - 18px) / 2); }
  .steps.six { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .proof-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .proof-item:nth-child(3)::before { display: none; }
  .split, .cta { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 40px; }
  .stats-band { padding: 64px 0; }
}
/* menu hambúrguer já no tablet (o menu completo não cabe) */
@media (max-width: 860px) {
  .burger { display: block; }
  .hdr-nav { position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s; box-shadow: 0 14px 30px rgba(9,6,51,.08); }
  .hdr-nav.open { max-height: 560px; }
  .hdr-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 16px; }
  .hdr-nav li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hdr-nav li:last-child { border-bottom: 0; padding-top: 16px; }
  .hdr-nav li:last-child .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .svc-grid, .steps, .stats-grid, .tg, .posts, .partners, .ftr-grid { grid-template-columns: 1fr; }
  .svc-grid.six, .svc-grid.four, .steps.six { grid-template-columns: 1fr; }
  .ttrack .tcard { flex-basis: 100%; }
  .tnav.prev { left: -6px; } .tnav.next { right: -6px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item + .proof-item::before { display: none; }
  .proof-num { white-space: normal; }
  .stats-band { padding: 56px 0; }
  .cta { padding: 28px 20px; }
  .lead-form { padding: 22px 18px; }
  .section { padding: 60px 0; }
  .hero .container { padding-block: 48px; }
  /* cards flutuantes do hero: dentro da foto, menores */
  .hero-float { font-size: .78rem; padding: 10px 12px; gap: 8px; }
  .hero-float .ico { width: 30px; height: 30px; flex: 0 0 30px; }
  .hero-float .ico svg { width: 15px; height: 15px; }
  .hero-float.one { left: 8px; bottom: 10px; }
  .hero-float.two { right: 8px; top: 10px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .partner { flex-direction: column; align-items: flex-start; }
  .pkg { padding: 28px 22px; }
  .plan { padding: 34px 20px 26px; }
  .steps.six .step, .step { padding: 22px; }
  .hub-head { flex-direction: column; gap: 4px; }
  .article { padding: 36px 0 60px; }
  .ftr-bottom { flex-direction: column; text-align: center; }
  .ftr-legal { justify-content: center; }
}

/* tabelas e conteúdos largos dentro de artigos roláveis no mobile */
.article-wrap table { display: block; overflow-x: auto; max-width: 100%; border-collapse: collapse; }
.article-wrap table td, .article-wrap table th { border: 1px solid var(--line); padding: 10px 14px; font-size: .92rem; }
.article-wrap pre { overflow-x: auto; max-width: 100%; }
