/* =========================================================================
   RCM Soluções Comerciais — folha de estilo unica
   Sem framework. Editar aqui e subir o arquivo. Sem build.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #0a2540;
  --navy-800: #0e2e52;
  --navy-700: #143a66;
  --blue-600: #1d4ed8;
  --blue-500: #2563eb;
  --blue-100: #dbe6ff;
  --wa: #25d366;
  --wa-dark: #1da851;
  --amber: #fbbf24;
  --amber-dark: #b7791f;

  --ink: #0f2033;
  --text: #33445a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-navy-soft: #0c2a4d;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .08);
  --shadow: 0 10px 30px -12px rgba(10, 37, 64, .18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 37, 64, .28);

  --container: 1160px;
  --header-h: 76px;

  --font-head: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; overflow-wrap: break-word; }
h1 { font-size: clamp(1.7rem, 1.1rem + 3vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.4rem); }
p { text-wrap: pretty; }
ul, ol { padding-left: 1.15rem; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; border-radius: 6px; }
::selection { background: var(--blue-100); color: var(--navy-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(52px, 6vw, 96px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-900); color: #cdd9e8; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--amber); }
.lead { font-size: 1.12rem; color: var(--muted); }
.section--navy .lead { color: #b7c6da; }

/* impede grid/flex blowout (min-width:auto) que causava overflow horizontal no mobile */
.hero__inner > *, .split > *, .article > *, .grid > *, .trustbar__inner > * { min-width: 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-decoration: none; line-height: 1; text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; }
.btn--wa { --btn-bg: var(--wa); --btn-fg: #04310f; }
.btn--wa:hover { background: var(--wa-dark); --btn-fg: #fff; }
.btn--amber { --btn-bg: var(--amber); --btn-fg: #3a2a05; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-900); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); background: #fff; }
.section--navy .btn--ghost, .hero .btn--ghost, .cta-band .btn--ghost, .aside-card .btn--ghost, .post-hero .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.3); }
.section--navy .btn--ghost:hover, .hero .btn--ghost:hover, .cta-band .btn--ghost:hover, .aside-card .btn--ghost:hover, .post-hero .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--lg { padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-note { font-size: .9rem; color: var(--muted); margin-top: 12px; }
.section--navy .btn-note { color: #93a6bd; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand__text { font-family: var(--font-head); font-weight: 800; color: var(--navy-900); font-size: 1.05rem; letter-spacing: -.02em; line-height: 1; }
.brand__text span { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > .btn { display: none; }        /* CTA do menu so aparece no mobile */
.nav-link {
  font-family: var(--font-head); font-weight: 600; font-size: .93rem;
  color: var(--navy-800); padding: 10px 11px; border-radius: 10px; white-space: nowrap;
}
.nav-link:hover { text-decoration: none; background: var(--bg-soft); }
.nav-link[aria-current="page"] { color: var(--blue-600); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; color: var(--navy-900); }

@media (max-width: 1080px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 13px 12px; font-size: 1.02rem; border-bottom: 1px solid var(--bg-soft); }
  .nav .btn { display: inline-flex; margin-top: 12px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #dbe6f3; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(37, 99, 235, .45), transparent 60%),
    radial-gradient(700px 500px at 0% 110%, rgba(37, 211, 102, .16), transparent 55%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-block: clamp(48px, 6vw, 88px); }
.hero__inner--solo { grid-template-columns: 1fr; max-width: 820px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--amber); }
.hero p.lead { color: #b9c9dc; margin-top: 18px; font-size: 1.18rem; max-width: 34ch; }
.hero__inner--solo p.lead { max-width: 56ch; }
.hero .btn-row { margin-top: 28px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: #0c2a4d; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__badge {
  position: absolute; left: -14px; bottom: -14px;
  background: #fff; color: var(--navy-900); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: .95rem;
}
.hero__badge b { color: var(--blue-600); font-size: 1.4rem; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__media { order: -1; }
  .hero p.lead, .hero__inner--solo p.lead { max-width: none; }
  .hero__badge { left: 10px; bottom: 10px; font-size: .85rem; padding: 10px 12px; }
  .hero__badge b { font-size: 1.2rem; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-800); color: #cfe0f2; border-top: 1px solid rgba(255,255,255,.08); }
.trustbar__inner { display: flex; flex-wrap: wrap; gap: 14px 36px; justify-content: center; padding-block: 18px; }
.trustbar__item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.trustbar__item svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); text-decoration: none; }
.card--navy { background: var(--navy-900); color: #cfe0f2; border: 0; }
.card--navy h2, .card--navy h3 { color: #fff; }
.card--navy p { color: #b7c6da; }
.card--navy .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.3); }
.card--navy .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); color: #fff; margin-bottom: 16px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--blue-600); font-size: .95rem; }
.card--product { display: flex; flex-direction: column; }
.card--product .card__body { flex: 1; }
.card--product img { border-radius: var(--radius-sm); aspect-ratio: 16/10; object-fit: cover; background: var(--bg-soft); margin-bottom: 16px; }

/* feature list with checks */
.checks { list-style: none; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks svg { width: 22px; height: 22px; color: var(--wa-dark); flex-shrink: 0; margin-top: 2px; }
.section--navy .checks svg { color: #6ee7a2; }

/* ---------- How it works ---------- */
.steps { counter-reset: step; display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-900); color: #fff; margin-bottom: 14px;
}

/* ---------- Spec / comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table.spec { width: 100%; border-collapse: collapse; min-width: 520px; background: #fff; }
table.spec th, table.spec td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .97rem; }
table.spec thead th { background: var(--bg-soft); font-family: var(--font-head); color: var(--ink); font-size: .9rem; letter-spacing: .02em; }
table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec td:first-child { font-weight: 600; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--ink);
  padding: 18px 52px 18px 20px; position: relative;
}
.faq__q::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq__item.is-open .faq__a { padding: 0 20px 20px; max-height: 480px; }
.faq__a p { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c9dc; max-width: 60ch; margin-inline: auto; margin-top: 12px; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Guarantee band ---------- */
.guarantee { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; background: #fff; border: 1px solid var(--line); border-left: 6px solid var(--amber); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.guarantee__seal { width: 96px; height: 96px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff3d6, var(--amber)); display: grid; place-items: center; text-align: center; font-family: var(--font-head); font-weight: 800; color: #6b4e08; line-height: 1; box-shadow: inset 0 0 0 4px rgba(255,255,255,.6); }
.guarantee__seal b { font-size: 1.7rem; display: block; }
.guarantee__seal span { font-size: .62rem; letter-spacing: .1em; }
@media (max-width: 560px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* ---------- Lead form ---------- */
.leadform { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: grid; gap: 14px; }
.leadform h3 { margin-bottom: 2px; }
.leadform p.sub { color: var(--muted); font-size: .95rem; margin-bottom: 6px; }
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.form-legal { font-size: .82rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.tst { display: grid; gap: 22px; }
.tst__track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.tst__card { scroll-snap-align: start; flex: 0 0 min(420px, 84%); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.section--navy .tst__card { background: var(--bg-navy-soft); border-color: rgba(255,255,255,.1); }
.tst__quote { font-size: 1.05rem; color: var(--ink); }
.section--navy .tst__quote { color: #eaf1f9; }
.tst__stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.tst__who { margin-top: 16px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.section--navy .tst__who { color: #fff; }
.tst__who span { display: block; font-weight: 500; font-size: .9rem; color: var(--muted); }
.section--navy .tst__who span { color: #93a6bd; }
.tst__nav { display: flex; gap: 10px; }
.tst__nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; color: var(--navy-900); }
.tst__nav button:hover { border-color: var(--blue-500); }
.section--navy .tst__nav button { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }

/* ---------- Segments strip ---------- */
.segments { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy-800); }
.section--navy .chip { background: var(--bg-navy-soft); border-color: rgba(255,255,255,.12); color: #cfe0f2; }
.section--soft .chip { background: #fff; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b { font-family: var(--font-head); font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); color: var(--blue-600); display: block; line-height: 1; }
.section--navy .stat b { color: var(--amber); }
.stat span { font-size: .95rem; color: var(--muted); }
.section--navy .stat span { color: #b7c6da; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--media-right .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } .split--media-right .split__media { order: -1; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; background: var(--bg-soft); width: 100%; }

/* ---------- Article / blog ---------- */
.post-hero { background: var(--navy-900); color: #cfe0f2; padding-block: clamp(40px, 5vw, 64px); }
.post-hero h1 { color: #fff; max-width: 24ch; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: .92rem; color: #9fb3c9; }
.post-meta .tag { background: rgba(255,255,255,.1); color: #dbe6f3; padding: 3px 10px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .8rem; }
.article { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 48px; }
@media (max-width: 900px) { .article { grid-template-columns: 1fr; } .article__aside { order: 2; } }
.prose { font-size: 1.07rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.8em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { display: grid; gap: .5em; }
.prose blockquote { border-left: 4px solid var(--blue-500); padding-left: 18px; color: var(--muted); font-style: italic; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.aside-card { position: sticky; top: calc(var(--header-h) + 20px); background: var(--navy-900); color: #cfe0f2; border-radius: var(--radius); padding: 24px; }
.aside-card h3 { color: #fff; margin-bottom: 10px; }
.aside-card p { font-size: .95rem; color: #b7c6da; margin-bottom: 16px; }

.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.post-card__img { aspect-ratio: 16/9; object-fit: cover; background: var(--bg-soft); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__body h3 { font-size: 1.12rem; }
.post-card__body p { color: var(--muted); font-size: .95rem; flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--muted); font-family: var(--font-head); font-weight: 600; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .85rem; color: var(--muted); padding-top: 18px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--blue-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9bdd4; padding-block: 56px 28px; font-size: .95rem; }
.site-footer a { color: #cfe0f2; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer-brand img { height: 42px; margin-bottom: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer-social svg { width: 20px; height: 20px; color: #cfe0f2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; color: #7f97b3; font-size: .85rem; }

/* ---------- Floating + mobile sticky CTA ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  color: #04310f;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { text-decoration: none; transform: scale(1.05); }

.mobile-cta { display: none; }
@media (max-width: 1080px) {
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn { padding: 13px 10px; font-size: .95rem; }
  .wa-float { display: none; }
  body { padding-bottom: 74px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card--link:hover, .post-card:hover { transform: none; }
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.maxw-60 { max-width: 60ch; }
.hidden { display: none !important; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: #fff; color: var(--navy-900);
  padding: 10px 16px; border-radius: 0 0 10px 0; font-family: var(--font-head); font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 0; }
.badge-inline { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-100); color: var(--blue-600); font-family: var(--font-head); font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: 999px; }
