/* ═══════════════════════════════════════════════════════
   LEPORTUS — v3 · Slim · Corporativo · Rodapé Premium
   ═══════════════════════════════════════════════════════ */

:root {
  --pine:    #0F1F1B;
  --forest:  #27463B;
  --sage:    #8FA89E;
  --stone:   #D9D3C7;
  --ivory:   #F4F1EB;
  --white:   #fffdf8;
  --ink:     #0d1a17;
  --muted:   #607069;

  --line:    rgba(15,31,27,.09);
  --line-md: rgba(15,31,27,.15);

  --shadow-xs: 0 1px 4px rgba(15,31,27,.05);
  --shadow-sm: 0 4px 16px rgba(15,31,27,.07);
  --shadow-md: 0 12px 40px rgba(15,31,27,.10);
  --shadow-lg: 0 28px 72px rgba(15,31,27,.13);

  --r:  14px;
  --r2: 20px;
  --r3: 28px;
  --max: 1160px;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22,.68,0,1.15);
  --ease-out: cubic-bezier(0,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.66;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
svg {
  width: 1.1em; height: 1.1em;
  stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Layout ── */
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.narrow    { width: min(860px, calc(100% - 48px)); margin-inline: auto; }

/* ── Skip ── */
.skip {
  position: absolute; left: 16px; top: -80px;
  background: var(--pine); color: var(--ivory);
  padding: 9px 18px; border-radius: 999px;
  z-index: 9999; font-weight: 700; font-size: .82rem;
  transition: top .2s;
}
.skip:focus { top: 16px; }

/* ══════════════════════════════════════
   HEADER — slim, preciso
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(244,241,235,.90);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease-out);
}

.nav-shell {
  height: 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: .2em; font-size: .74rem;
  transition: opacity .18s;
}
.brand:hover { opacity: .72; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--pine); color: var(--ivory);
  display: grid; place-items: center;
  font-family: Georgia, serif; font-weight: 900;
  font-size: .95rem; letter-spacing: 0; flex-shrink: 0;
}
.brand-text { font-size: .74rem; letter-spacing: .22em; }

.desktop-nav { display: flex; align-items: center; gap: 2px; }
.desktop-nav a {
  font-size: .73rem; font-weight: 700;
  color: rgba(15,31,27,.48);
  padding: 6px 10px; border-radius: 8px;
  letter-spacing: .01em;
  transition: color .15s, background .15s;
}
.desktop-nav a:hover { color: var(--pine); background: rgba(15,31,27,.05); }
.desktop-nav a.active { color: var(--pine); background: rgba(15,31,27,.06); }

.nav-actions { display: flex; gap: 8px; align-items: center; }

.menu-toggle {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--line-md); border-radius: 11px;
  background: var(--white); cursor: pointer;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 4.5px;
  transition: background .18s;
}
.menu-toggle:hover { background: var(--stone); }
.menu-toggle span {
  display: block; width: 16px; height: 1.5px;
  background: var(--pine); border-radius: 99px;
}

.mobile-nav { display: none; }
.mobile-nav.open {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px 18px;
  background: var(--ivory); border-top: 1px solid var(--line);
}
.mobile-nav a {
  padding: 10px 12px; font-weight: 700; font-size: .88rem;
  border-radius: 10px; color: rgba(15,31,27,.6);
  transition: background .15s, color .15s;
}
.mobile-nav a.active, .mobile-nav a:hover {
  background: rgba(15,31,27,.05); color: var(--pine);
}
.mobile-nav .btn { margin-top: 8px; width: 100%; }

/* ══════════════════════════════════════
   BOTÕES
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 7px;
  border-radius: 999px; padding: 10px 20px;
  font-family: var(--font); font-size: .77rem;
  font-weight: 800; letter-spacing: .03em;
  border: 1.5px solid transparent; cursor: pointer;
  white-space: nowrap;
  transition: background .18s, border-color .18s,
              transform .2s var(--ease), box-shadow .2s;
}
.btn svg { fill: currentColor; stroke: none; }
.btn:active { transform: scale(.97) !important; }

.btn-dark {
  background: var(--pine); color: var(--ivory);
  box-shadow: 0 4px 16px rgba(15,31,27,.18);
}
.btn-dark:hover {
  background: var(--forest); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,31,27,.24);
}
.btn-light {
  background: var(--white); color: var(--pine);
  border-color: var(--line-md);
  box-shadow: 0 2px 6px rgba(15,31,27,.05);
}
.btn-light:hover {
  border-color: var(--sage); transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15,31,27,.09);
}
.btn-ghost {
  border-color: rgba(244,241,235,.28); color: var(--ivory);
}
.btn-ghost:hover {
  background: rgba(244,241,235,.09);
  border-color: rgba(244,241,235,.48); transform: translateY(-1px);
}

/* ══════════════════════════════════════
   TIPOGRAFIA
══════════════════════════════════════ */
.label {
  font-size: .62rem; font-weight: 900;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--sage); display: block; margin-bottom: 10px;
}
.h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 900; letter-spacing: -.056em; line-height: 1.01;
}
.h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  font-weight: 900; letter-spacing: -.046em; line-height: 1.06;
}
.h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.18;
}
.lead {
  font-size: clamp(.93rem, 1.3vw, 1.06rem);
  color: rgba(244,241,235,.70); max-width: 660px; line-height: 1.74;
}
.page-lead {
  font-size: .97rem; color: var(--muted);
  max-width: 740px; line-height: 1.74;
}
.text { color: var(--muted); font-size: .92rem; }

/* ══════════════════════════════════════
   SEÇÕES
══════════════════════════════════════ */
.section       { padding: 88px 0; }
.section-tight { padding: 56px 0; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 88% 8%,  rgba(143,168,158,.22), transparent 52%),
    radial-gradient(ellipse 35% 55% at 4%  95%,  rgba(39,70,59,.55),   transparent 48%),
    linear-gradient(152deg, #1a3529 0%, var(--pine) 52%);
  color: var(--ivory);
  padding: 104px 0 76px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='.8' fill='%23F4F1EB' fill-opacity='.018'/%3E%3C/svg%3E");
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center;
}

.pill-row { display: flex; gap: 7px; flex-wrap: wrap; margin: 20px 0 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(244,241,235,.14);
  background: rgba(244,241,235,.06);
  border-radius: 999px; padding: 6px 13px;
  font-size: .7rem; font-weight: 700; letter-spacing: .03em;
  backdrop-filter: blur(6px);
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

.hero-card {
  border: 1px solid rgba(244,241,235,.12);
  background: rgba(12,26,22,.35);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--r3); padding: 30px;
  box-shadow: 0 1px 0 rgba(244,241,235,.05) inset, 0 28px 72px rgba(0,0,0,.16);
}
.hero-card .label  { color: rgba(143,168,158,.85); }
.hero-card .h3     { font-size: 1.18rem; margin-bottom: 12px; }
.hero-card .lead   { font-size: .91rem; }

.hero-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
.metric {
  background: rgba(244,241,235,.06);
  border: 1px solid rgba(244,241,235,.10);
  border-radius: 14px; padding: 14px 16px;
  transition: background .2s;
}
.metric:hover { background: rgba(244,241,235,.10); }
.metric strong { display: block; font-size: .96rem; font-weight: 800; letter-spacing: -.01em; }
.metric span   { display: block; font-size: .74rem; color: rgba(244,241,235,.48); margin-top: 2px; }

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--line); gap: 1px;
}
.mini-trust {
  background: var(--white);
  padding: 24px 26px;
  transition: background .18s;
}
.mini-trust:hover { background: var(--ivory); }
.mini-trust .label { color: var(--forest); margin-bottom: 4px; font-size: .59rem; }
.mini-trust b { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); line-height: 1.42; }

/* ══════════════════════════════════════
   GRIDS & CARDS
══════════════════════════════════════ */
.grid    { display: grid; gap: 14px; }
.grid-1  { grid-template-columns: 1fr; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  transition: transform .22s var(--ease), border-color .22s, box-shadow .22s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(39,70,59,.20);
  box-shadow: var(--shadow-md);
}
.card.dark {
  background: linear-gradient(148deg, #1e3d30 0%, #0b1914 100%);
  color: var(--ivory);
  border-color: rgba(244,241,235,.08);
  position: relative; overflow: hidden;
}
.card.dark::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,168,158,.10) 0%, transparent 68%);
  pointer-events: none;
}
.card.dark p, .card.dark .text { color: rgba(244,241,235,.62); }

.icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(15,31,27,.06); color: var(--pine);
  display: grid; place-items: center; margin-bottom: 18px; flex-shrink: 0;
}
.dark .icon, .service-panel .icon {
  background: rgba(244,241,235,.09); color: rgba(244,241,235,.82);
}
.card h3 {
  font-size: 1.02rem; font-weight: 800;
  letter-spacing: -.016em; margin-bottom: 8px; line-height: 1.3;
}
.card p { font-size: .88rem; color: var(--muted); line-height: 1.62; }

.card-link {
  display: inline-flex; gap: 6px; align-items: center;
  margin-top: 18px; font-size: .77rem; font-weight: 800;
  letter-spacing: .01em; color: var(--forest);
  transition: gap .18s var(--ease), color .18s;
}
.card-link:hover { gap: 10px; }
.card-link svg { transition: transform .18s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }
.dark .card-link { color: rgba(244,241,235,.78); }
.dark .card-link:hover { color: var(--ivory); }

/* ══════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.soft-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r2); padding: 32px;
  box-shadow: var(--shadow-xs);
}
.soft-panel .h3   { font-size: 1.28rem; margin-bottom: 12px; }
.soft-panel .text { margin-bottom: 20px; }

.service-panel {
  background: linear-gradient(148deg, #1e3d30, #0b1914);
  color: var(--ivory); border-radius: var(--r2); padding: 36px;
}

/* ══════════════════════════════════════
   FEATURE LIST
══════════════════════════════════════ */
.feature-list { list-style: none; display: grid; gap: 10px; margin-top: 22px; }
.feature-list li {
  display: flex; gap: 9px; align-items: flex-start;
  color: var(--muted); font-size: .9rem; line-height: 1.52;
}
.feature-list li svg { color: var(--forest); flex: 0 0 auto; margin-top: 3px; width: 1em; height: 1em; }
.dark-list li      { color: rgba(244,241,235,.68); }
.dark-list li svg  { color: var(--stone); }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(148deg, #1a3529 0%, var(--pine) 100%);
  color: var(--ivory); border-radius: var(--r3);
  padding: 44px 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-band::before {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,168,158,.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .label  { color: rgba(143,168,158,.80); margin-bottom: 6px; }
.cta-band .h3     { font-size: 1.46rem; margin-bottom: 8px; }
.cta-band p       { color: rgba(244,241,235,.64); max-width: 580px; font-size: .93rem; }
.cta-band .btn-light { flex-shrink: 0; }

/* ══════════════════════════════════════
   PAGE HERO (internas)
══════════════════════════════════════ */
.page-hero {
  padding: 64px 0 46px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 46% 65% at 96% 18%, rgba(143,168,158,.13), transparent 48%),
    var(--ivory);
}
.breadcrumbs {
  font-size: .72rem; color: var(--muted);
  font-weight: 600; margin-bottom: 14px;
}
.breadcrumbs a { color: var(--forest); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   BADGE
══════════════════════════════════════ */
.badge {
  display: inline-flex;
  border: 1px solid var(--line-md); border-radius: 999px;
  padding: 4px 11px;
  font-size: .64rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--forest);
  background: rgba(143,168,158,.08);
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.timeline { position: relative; display: grid; gap: 10px; margin-top: 26px; }
.timeline::before {
  content: ''; position: absolute;
  left: 25px; top: 26px; bottom: 26px; width: 1px;
  background: linear-gradient(to bottom, var(--line), var(--stone), var(--line));
}
.step-item {
  position: relative;
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px;
  transition: box-shadow .2s, border-color .2s;
}
.step-item:hover { border-color: rgba(39,70,59,.18); box-shadow: var(--shadow-sm); }
.step-num {
  position: relative; z-index: 1;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--pine); color: var(--ivory);
  display: grid; place-items: center; font-weight: 900;
}

/* ══════════════════════════════════════
   BLOG & POSTS
══════════════════════════════════════ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.post-card {
  overflow: hidden; padding: 0;
  border-radius: var(--r2); border: 1px solid var(--line);
  background: var(--white); box-shadow: var(--shadow-xs);
  transition: transform .22s var(--ease), box-shadow .22s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-visual {
  height: 160px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--pine) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; color: rgba(244,241,235,.16);
}
.post-visual svg { width: 48px; height: 48px; }
.post-tag {
  position: absolute; left: 14px; bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(244,241,235,.20);
  background: rgba(12,26,22,.50); backdrop-filter: blur(5px);
  color: var(--ivory); padding: 4px 11px;
  font-size: .61rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
}
.post-body { padding: 20px 22px 22px; }
.post-body h2, .post-body h3 {
  font-size: .97rem; font-weight: 800; line-height: 1.38;
  letter-spacing: -.014em; margin-bottom: 8px;
}
.post-body p { font-size: .86rem; color: var(--muted); line-height: 1.6; }

.blog-search {
  width: min(760px, 100%);
  border: 1.5px solid var(--line-md); background: var(--white);
  border-radius: var(--r); padding: 13px 17px;
  font: inherit; font-size: .93rem; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.blog-search:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143,168,158,.13);
}
.hidden { display: none !important; }

/* ══════════════════════════════════════
   ARTIGO
══════════════════════════════════════ */
.article { width: min(880px, calc(100% - 48px)); margin: 0 auto; }
.article-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r2); padding: 44px; box-shadow: var(--shadow-xs);
}
.article-card h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.025em; margin: 32px 0 10px; }
.article-card h3 { font-size: 1.06rem; font-weight: 800; letter-spacing: -.015em; margin: 24px 0 7px; }
.article-card p, .article-card li { color: var(--muted); font-size: .97rem; line-height: 1.72; }
.article-card ul, .article-card ol { padding-left: 20px; }

.quote-box {
  border-left: 3px solid var(--forest);
  background: rgba(143,168,158,.08);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 22px; color: var(--forest);
  font-weight: 700; font-size: .95rem; margin: 22px 0;
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-wrap { display: grid; gap: 8px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.faq-item.open { border-color: rgba(39,70,59,.15); box-shadow: var(--shadow-xs); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 18px 22px; font: inherit; font-weight: 800; font-size: .93rem;
  color: var(--pine); display: flex; justify-content: space-between;
  align-items: center; gap: 18px; cursor: pointer;
  transition: background .15s;
}
.faq-q:hover { background: rgba(15,31,27,.02); }
.faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--sage); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '–'; }
.faq-a { display: none; padding: 0 22px 20px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════
   FORMULÁRIOS
══════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.field label {
  display: block; font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 6px;
}
.input, select, textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r);
  background: var(--white); padding: 12px 15px;
  font: inherit; font-size: .93rem; color: var(--pine); outline: none;
  transition: border-color .18s, box-shadow .18s;
}
textarea { min-height: 112px; resize: vertical; }
.input:focus, textarea:focus, select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143,168,158,.12);
}

/* ══════════════════════════════════════
   CALCULADORAS
══════════════════════════════════════ */
.calc-shell { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; align-items: start; }
.calc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r2); padding: 28px; box-shadow: var(--shadow-xs);
}
.result {
  background: linear-gradient(148deg, #1a3529, var(--pine) 100%);
  color: var(--ivory); border-radius: var(--r2); padding: 26px;
  position: relative; overflow: hidden;
}
.result::before {
  content: ''; position: absolute; top: -40px; right: -30px;
  width: 170px; height: 170px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,168,158,.10) 0%, transparent 68%);
}
.result small {
  display: block; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(244,241,235,.44); font-weight: 800; font-size: .63rem; margin-bottom: 4px;
}
.result strong { display: block; font-size: 1.9rem; font-weight: 900; letter-spacing: -.04em; margin-bottom: 2px; }
.result table  { width: 100%; margin-top: 16px; border-collapse: collapse; }
.result td     { padding: 8px 0; border-top: 1px solid rgba(244,241,235,.09); font-size: .84rem; }
.result td:last-child { text-align: right; font-weight: 800; }

.advisor {
  margin-top: 18px;
  border: 1px solid rgba(143,168,158,.34); background: rgba(143,168,158,.08);
  border-radius: var(--r); padding: 16px;
  display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
}
.advisor p { margin: 0; color: var(--muted); font-size: .87rem; }
.advisor strong { color: var(--pine); }
.advisor .close-advisor {
  border: 0; background: transparent; color: var(--muted);
  font-weight: 900; cursor: pointer; font-size: 1rem; line-height: 1; flex-shrink: 0;
}

/* ══════════════════════════════════════
   CHECKLIST
══════════════════════════════════════ */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.check-box {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 13px 15px;
  transition: border-color .15s;
}
.check-box:has(input:checked) {
  border-color: var(--forest); background: rgba(39,70,59,.03);
}
.check-box label {
  display: flex; gap: 9px; align-items: flex-start;
  font-weight: 700; font-size: .88rem; color: var(--pine); cursor: pointer;
}
.check-box input { margin-top: 3px; accent-color: var(--pine); flex-shrink: 0; }

/* ══════════════════════════════════════
   TABELA SUAVE
══════════════════════════════════════ */
.table-soft { width: 100%; border-collapse: separate; border-spacing: 0 7px; }
.table-soft td {
  background: var(--white); padding: 14px 17px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.table-soft td:first-child {
  border-left: 1px solid var(--line); border-radius: 12px 0 0 12px;
  font-weight: 800; color: var(--pine);
}
.table-soft td:last-child {
  border-right: 1px solid var(--line); border-radius: 0 12px 12px 0; color: var(--muted);
}

/* ══════════════════════════════════════
   PRICE CARD / SOFT NOTE
══════════════════════════════════════ */
.price-card { position: relative; overflow: hidden; }
.price { font-size: 2.2rem; font-weight: 900; letter-spacing: -.054em; margin: 9px 0; color: var(--pine); }
.price small { font-size: .86rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.soft-note {
  font-size: .82rem; color: var(--muted);
  background: rgba(143,168,158,.08);
  border: 1px solid rgba(143,168,158,.20);
  padding: 13px 17px; border-radius: 12px; line-height: 1.6;
}

/* ══════════════════════════════════════
   DEVICE MOCK
══════════════════════════════════════ */
.device-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r3); padding: 22px; box-shadow: var(--shadow-lg);
}
.phone-mock {
  width: min(270px, 100%); margin: auto;
  border: 9px solid #111; border-radius: 38px;
  overflow: hidden; background: #fff;
  box-shadow: 0 20px 64px rgba(0,0,0,.16);
}
.phone-top {
  height: 30px; background: #f5f5f5; color: #333;
  font-size: .64rem; display: flex; align-items: center;
  justify-content: space-between; padding: 0 13px;
}
.phone-screen { padding: 24px 16px; background: var(--ivory); min-height: 320px; }
.phone-screen .app-hero {
  background: var(--pine); color: var(--ivory); border-radius: 18px; padding: 18px; margin-bottom: 14px;
}
.phone-screen .app-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 13px; margin: 8px 0;
}

/* ══════════════════════════════════════
   WHATSAPP FLUTUANTE
══════════════════════════════════════ */
.float-whats {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 54px; height: 54px; border-radius: 50%;
  background: #22c55e; color: white;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(34,197,94,.28), 0 16px 38px rgba(34,197,94,.16);
  transition: transform .22s var(--ease), box-shadow .22s;
}
.float-whats:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(34,197,94,.38), 0 22px 48px rgba(34,197,94,.20);
}
.float-whats svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }

/* ══════════════════════════════════════
   FOOTER — premium escuro com a cor da marca
══════════════════════════════════════ */
.site-footer {
  background: var(--pine);
  border-top: none;
  padding: 0;
  color: var(--ivory);
}

/* Topo do footer com linha luminosa sutil */
.site-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(143,168,158,.30) 30%,
    rgba(143,168,158,.50) 50%,
    rgba(143,168,158,.30) 70%,
    transparent 100%
  );
}

/* Corpo principal */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr 1fr;
  gap: 52px;
  padding: 60px 0 48px;
}

.footer-brand { display: block; margin-bottom: 18px; }

/* Logo no footer — versão clara */
.footer-brand .brand-mark {
  background: rgba(244,241,235,.10);
  color: var(--ivory);
  border: 1px solid rgba(244,241,235,.12);
}
.footer-brand .brand-text { color: var(--ivory); }

/* Descrição no footer */
.footer-grid > div > p {
  color: rgba(244,241,235,.48);
  font-size: .87rem;
  line-height: 1.72;
  margin-top: 0;
}

/* Títulos das colunas */
.footer-grid h3 {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244,241,235,.36);
  margin-bottom: 20px;
}

/* Badges CNPJ / CRC */
.footer-badges {
  display: flex; gap: 7px; flex-wrap: wrap; margin: 18px 0 22px;
}
.footer-badges span {
  font-size: .67rem; font-weight: 800;
  border: 1px solid rgba(244,241,235,.12);
  border-radius: 999px; padding: 5px 12px;
  color: rgba(244,241,235,.45);
  background: rgba(244,241,235,.05);
}

/* Ícones sociais */
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid rgba(244,241,235,.12);
  display: grid; place-items: center;
  color: rgba(244,241,235,.50);
  background: rgba(244,241,235,.05);
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.socials a:hover {
  background: rgba(143,168,158,.18);
  border-color: rgba(143,168,158,.35);
  color: var(--ivory);
  transform: translateY(-2px);
}
.socials a svg { width: 17px; height: 17px; }
.socials a[href*="wa.me"] svg { fill: currentColor; stroke: none; }

/* Links nas colunas */
.footer-links { display: grid; gap: 6px; }
.footer-links a, .footer-links span {
  display: flex; align-items: center; gap: 8px;
  color: rgba(244,241,235,.48); font-size: .86rem;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(244,241,235,.88); }
.footer-links svg { color: rgba(143,168,158,.60); }
.footer-links a[href*="wa.me"] svg { fill: currentColor; stroke: none; }

/* Linha divisória interna */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(244,241,235,.07);
  margin: 0;
}

/* Rodapé final — barra inferior */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: rgba(244,241,235,.28);
  font-size: .80rem;
}
.footer-bottom a {
  color: rgba(244,241,235,.28);
  transition: color .15s;
}
.footer-bottom a:hover { color: rgba(244,241,235,.70); }

/* ══════════════════════════════════════
   RESPONSIVO — 980px
══════════════════════════════════════ */
@media (max-width: 980px) {
  .desktop-nav, .nav-actions .btn { display: none; }
  .menu-toggle { display: flex; }

  .hero-grid, .split, .calc-shell { grid-template-columns: 1fr; }
  .hero-card { margin-top: 6px; }

  .grid-4, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid, .grid-3  { grid-template-columns: 1fr 1fr; }
  .footer-grid          { grid-template-columns: 1fr 1fr; padding: 48px 0 36px; }

  .cta-band { flex-direction: column; align-items: flex-start; padding: 32px 34px; }
}

/* ══════════════════════════════════════
   RESPONSIVO — 640px
══════════════════════════════════════ */
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container, .narrow, .article { width: calc(100% - 28px); }
  .section  { padding: 60px 0; }
  .hero     { padding: 68px 0 52px; }
  .h1       { font-size: 2.28rem; }
  .h2       { font-size: 1.85rem; }

  .trust-grid, .grid-2, .grid-3, .grid-4,
  .post-grid, .form-grid, .checklist,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { padding: 40px 0 28px; }

  .card, .article-card, .soft-panel,
  .service-panel, .calc-card { padding: 20px; border-radius: 16px; }

  .cta-band   { padding: 26px 24px; border-radius: 20px; }
  .cta-band .h3 { font-size: 1.26rem; }

  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 18px 0; }

  .float-whats { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .float-whats svg { width: 23px; height: 23px; }

  .nav-shell { height: 60px; }

  .timeline::before { left: 19px; }
  .step-item  { grid-template-columns: 42px 1fr; }
  .step-num   { width: 42px; height: 42px; border-radius: 12px; }

  .advisor { flex-direction: column; }
  .advisor .btn { margin-top: 10px; width: 100%; }
  .post-visual { height: 138px; }
  .article-card { padding: 22px 18px; }
}
