/* ==========================================================================
   DIP · site.css — design system compartilhado das páginas públicas
   Tokens, base, navegação, rodapé e componentes. Carregado antes de qualquer
   CSS específico de página (landing.css, pricing.css).
   ========================================================================== */

:root {
  --paper: #f8f9f3;
  --paper-2: #f0f3e9;
  --sage: #eaf0e2;
  --white: #ffffff;
  --ink: #143f35;
  --forest: #124d3d;
  --forest-2: #173f34;
  --moss: #6c9478;
  --moss-2: #4f8c51;
  --muted: #68776e;
  --muted-2: #7b897a;
  --line: #dbe2d6;
  --line-2: #c9d6c0;
  --amber: #c3a657;
  --amber-bg: #f6efd8;
  --rust: #ad3830;
  --rust-bg: #f7e3e0;
  --ok: #4f8c51;
  --ok-bg: #e3efdc;

  --font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-s: 5px;
  --radius-m: 10px;
  --radius-l: 16px;
  --shadow-soft: 0 15px 40px rgba(19, 54, 36, .06);
  --shadow-panel: 0 25px 60px rgba(24, 62, 50, .10);

  --nav-h: 96px;
  --container: 1320px;
  --gutter: 48px;

  /* Compatibilidade com nomes antigos usados em scripts/estilos legados */
  --deep-forest: #143f35;
  --rich-teal: #2d6a52;
  --neon-mint: #6c9478;
  --ice-white: #f8f9f3;
  --pure-white: #fff;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -.03em; color: var(--ink); }
h1 { font-size: clamp(40px, 4.6vw, 64px); letter-spacing: -.045em; line-height: 1.06; }
h2 { font-size: clamp(30px, 3.1vw, 43px); letter-spacing: -.04em; line-height: 1.18; }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -.02em; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
p { color: var(--muted); }
em { font-style: normal; color: var(--moss); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
strong { font-weight: 600; color: var(--ink); }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid #629c60; outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; left: 20px; top: -80px; background: var(--white); color: var(--ink); padding: 12px 16px; border-radius: var(--radius-s); z-index: 1000; font-weight: 600; }
.skip-link:focus { top: 12px; }
.noise-overlay, .orb, .mobile-bottom-nav { display: none !important; }

.container { width: 100%; max-width: var(--container); padding: 0 var(--gutter); margin: 0 auto; }
.container--narrow { max-width: 900px; }
.container--prose { max-width: 780px; }

/* ---------- Navegação ---------- */
.site-nav { height: var(--nav-h); background: rgba(248, 249, 243, .94); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { margin-right: 24px; display: inline-flex; }
.brand img { width: 86px; height: auto; }
.desktop-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 500; }
.desktop-links > a, .nav-solutions > button { padding: 36px 0; color: var(--ink); transition: color .2s; }
.desktop-links > a:hover, .nav-solutions > button:hover, .desktop-links [aria-current="page"] { color: var(--moss-2); }
.desktop-links [aria-current="page"] { font-weight: 600; }
.nav-contact { margin-left: auto; color: var(--ink); font-size: 13px; font-weight: 600; transition: color .2s; }
.nav-contact:hover { color: var(--moss-2); }
.nav-cta { display: inline-flex; align-items: center; gap: 22px; padding: 13px 18px; border: 1px solid #a8b9a5; border-radius: var(--radius-s); color: var(--ink); font-size: 13px; font-weight: 600; transition: background .2s; }
.nav-cta:hover { background: #e4eddf; }
.nav-solutions { position: relative; }
.nav-solutions > button span { margin-left: 4px; font-size: 11px; }
.nav-solutions > div { position: absolute; top: 74px; left: -14px; width: 210px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 8px; box-shadow: 0 20px 45px rgba(23, 58, 43, .10); opacity: 0; pointer-events: none; transform: translateY(-5px); transition: opacity .2s, transform .2s; }
.nav-solutions.open > div { opacity: 1; pointer-events: auto; transform: none; }
.nav-solutions > div a { display: block; padding: 10px 12px; border-radius: var(--radius-s); color: var(--ink); font-size: 13px; }
.nav-solutions > div a:hover { background: var(--sage); }
.mobile-nav { display: none; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--forest-2); color: #c4d4b9; padding: 58px 0 26px; }
.footer-top { display: flex; align-items: center; gap: 55px; padding-bottom: 42px; }
.footer-top img { width: 90px; }
.footer-top p { font-size: 14px; line-height: 1.7; color: #c4d4b9; }
.footer-top > a:last-child { margin-left: auto; color: #d9e8ce; font-size: 19px; display: inline-flex; gap: 40px; align-items: center; font-family: var(--font-display); transition: color .2s; }
.footer-top > a:last-child:hover { color: var(--white); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 38px 0; border-top: 1px solid rgba(255, 255, 255, .09); }
.footer-links > div { display: flex; flex-direction: column; gap: 9px; }
.footer-links strong { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #d8e6ce; margin-bottom: 6px; font-weight: 700; }
.footer-links a { font-size: 13px; color: #9db293; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; color: #91ad85; }
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer { font-size: 12px; line-height: 1.7; color: #8faa84; max-width: 760px; padding-bottom: 22px; }

/* ---------- Botões e links ---------- */
.btn, .btn-premium { border: 0; background: var(--forest); color: var(--white); padding: 16px 22px; border-radius: var(--radius-s); display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 13px; font-weight: 600; line-height: 1.2; cursor: pointer; transition: background .2s, transform .2s; }
.btn:hover, .btn-premium:hover { background: #236650; transform: translateY(-1px); }
.btn:disabled, .btn-premium:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn--light { background: var(--white); color: var(--forest); }
.btn--light:hover { background: #e9f0e2; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid #a8b9a5; }
.btn--outline:hover { background: #e4eddf; transform: none; }
.btn--block { width: 100%; justify-content: center; }
.btn-text { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); transition: color .2s; }
.btn-text:hover { color: var(--moss-2); }
.btn-text .ring { height: 26px; width: 26px; border: 1px solid #bdcbb8; border-radius: 50%; display: grid; place-items: center; font-size: 13px; }
.link-u { text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
.link-u:hover { color: var(--moss-2); }
.actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.actions--tight { gap: 10px; }

/* ---------- Eyebrow ---------- */
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 9px; color: #4f6a55; margin-bottom: 24px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--moss-2); box-shadow: 0 0 0 4px rgba(198, 218, 182, .35); }

/* ---------- Hero de página ---------- */
.page-hero { padding: 64px 0 72px; border-bottom: 1px solid var(--line); }
.page-hero--grid .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.page-hero h1 { max-width: 12ch; margin-bottom: 24px; }
.page-hero--wide h1 { max-width: 18ch; }
.page-hero .lead { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 520px; }
.page-hero .actions { margin-top: 30px; }
.page-hero--center { text-align: center; }
.page-hero--center h1, .page-hero--center .lead { margin-left: auto; margin-right: auto; max-width: 20ch; }
.page-hero--center .lead { max-width: 560px; }
.page-hero--center .actions { justify-content: center; }
.page-hero--center .eyebrow { justify-content: center; }

/* Painel escuro — o "elemento memorável" de cada página interna */
.hero-panel { background: var(--forest-2); color: #eef5e8; border-radius: 12px; padding: 34px 36px; box-shadow: var(--shadow-panel); position: relative; }
.hero-panel--tilt { transform: rotate(-1.5deg); }
.hero-panel .panel-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #9db599; display: block; margin-bottom: 18px; }
.hero-panel h3 { color: var(--white); font-size: 26px; font-weight: 500; letter-spacing: -.03em; line-height: 1.25; }
.hero-panel p { color: #b5c6ad; font-size: 14px; }
.hero-panel .row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 13px; color: #d4e3ca; }
.hero-panel .row:first-of-type { margin-top: 22px; }
.hero-panel .row > span:first-child { display: flex; gap: 12px; align-items: baseline; }
.hero-panel .row b { font-weight: 500; }
.hero-panel .row i { font-style: normal; color: #9eb696; font-size: 12px; }
.hero-panel .row strong { color: #b0d4a5; font-weight: 500; font-size: 12px; }
.hero-panel .row.attention strong { color: #d1ba7d; }
.hero-panel .row.risk strong { color: #e4a39a; }
.hero-panel .panel-cta { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: var(--radius-s); background: #d6e7c8; color: #214530; font-size: 13px; font-weight: 600; margin-top: 18px; transition: background .2s; }
.hero-panel .panel-cta:hover { background: #e3efd8; }
.hero-panel .panel-note { font-size: 12px; color: #9eb696; margin-top: 14px; }

/* Termômetro de risco */
.meter { display: flex; gap: 4px; margin-top: 16px; }
.meter i { height: 5px; border-radius: 3px; flex: 1; background: #8cba8b; }
.meter i:nth-child(2) { background: #c5a85f; }
.meter i:nth-child(3) { background: #6a5146; }
.meter-scale { display: flex; justify-content: space-between; font-size: 11px; color: #9bac93; margin-top: 8px; }
.meter-scale b { font-weight: 500; color: #d1ba7d; }
.meter--light i { background: #b7d6b3; }
.meter--light i:nth-child(2) { background: #e2cb84; }
.meter--light i:nth-child(3) { background: #d3a49c; }
.meter--light + .meter-scale { color: var(--muted-2); }
.meter--light + .meter-scale b { color: var(--amber); }

/* ---------- Seções ---------- */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--sage { background: var(--sage); }
.section--paper2 { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--forest { background: var(--forest-2); color: #eef5e8; }
.section--forest h2, .section--forest h3 { color: var(--white); }
.section--forest p { color: #b5c6ad; }
.section-heading { position: relative; margin-bottom: 52px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.section-heading h2 { max-width: 18ch; }
.section-heading > p { max-width: 280px; color: var(--muted-2); font-size: 14px; line-height: 1.8; padding-bottom: 6px; }
.section-heading--center { display: block; text-align: center; }
.section-heading--center h2, .section-heading--center > p { margin-left: auto; margin-right: auto; }
.section-heading--center > p { max-width: 560px; margin-top: 16px; }
.section-heading--stack { display: block; }
.section-heading--stack > p { max-width: 560px; margin-top: 16px; }

/* ---------- Grids ---------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid--wide-gap { gap: 64px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--wide { grid-template-columns: 1.1fr .9fr; }
.split--top { align-items: start; }
.split--flip > :first-child { order: 2; }

/* ---------- Listas com fio (padrão da landing) ---------- */
.rule-list { display: grid; gap: 28px; }
.rule-list > article, .rule-list > li { padding-top: 20px; border-top: 1px solid #bccdb4; }
.rule-list .num { font-size: 12px; color: #78966b; display: flex; justify-content: space-between; font-weight: 600; }
.rule-list .num i { font-style: normal; font-size: 16px; }
.rule-list h3 { font-size: 18px; margin: 28px 0 10px; }
.rule-list .num + h3 { margin-top: 30px; }
.rule-list p { font-size: 14px; line-height: 1.8; color: var(--muted-2); max-width: 300px; }
.rule-list .icon { font-size: 22px; color: var(--moss); margin-bottom: 20px; display: block; }

.feature-list { display: grid; }
.feature-list > article { display: flex; gap: 18px; border-top: 1px solid var(--line-2); padding: 20px 0; }
.feature-list > article > span { font-size: 22px; color: var(--moss); width: 26px; flex-shrink: 0; line-height: 1.2; }
.feature-list h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feature-list p { font-size: 14px; line-height: 1.75; }
.feature-list a { font-size: 13px; display: inline-block; margin-top: 8px; text-decoration: underline; text-underline-offset: 4px; }

.check-list { display: grid; gap: 8px; font-size: 14px; color: #52704d; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.6; }
.check-list li::before { content: '✓'; font-size: 12px; color: var(--moss-2); margin-top: 3px; flex-shrink: 0; }

/* ---------- Painéis ---------- */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 32px; }
.panel--sage { background: var(--sage); border-color: transparent; }
.panel--forest { background: var(--forest-2); border-color: transparent; color: #eef5e8; }
.panel--forest h3, .panel--forest h4 { color: var(--white); }
.panel--forest p { color: #b5c6ad; }
.panel--shadow { box-shadow: var(--shadow-soft); }
.panel h3 { margin-bottom: 10px; }
.panel p { font-size: 14px; }
.panel .icon { font-size: 22px; color: var(--moss); margin-bottom: 18px; display: block; }
.panel--forest .stat .n { color: var(--white); }
.panel--forest .stat .l { color: #9eb696; }
.panel--forest .check-list { color: #d4e3ca; }
.panel--forest .check-list li::before { color: #b0d4a5; }
.panel--forest .pill--ok { background: rgba(176, 212, 165, .18); color: #cfe6c3; }
.panel--quote blockquote p { font-family: var(--font-display); font-size: 22px; line-height: 1.45; letter-spacing: -.02em; color: var(--ink); }
.panel--quote figcaption { margin-top: 18px; font-size: 13px; color: var(--muted-2); }
.plan-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.plan .stat { margin: 18px 0 22px; }
.plan .check-list { border-top: 1px solid var(--line); padding-top: 18px; }
.panel--forest.plan .check-list { border-top-color: rgba(255, 255, 255, .12); }
.tag-label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); display: block; margin-bottom: 16px; }

/* ---------- Passos alternados (como funciona) ---------- */
.steps { display: grid; gap: 72px; }
.step { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.step:nth-child(even) .step-copy { order: 2; }
.step-num { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: #78966b; display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-num::after { content: ''; width: 40px; height: 1px; background: #bccdb4; }
.step h2 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 16px; }
.step-copy > p { font-size: 15px; max-width: 460px; margin-bottom: 22px; }
.step-media { border-radius: 12px; min-height: 260px; display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 32px; }
.step-media--sage { background: var(--sage); }
.step-media--white { background: var(--white); border: 1px solid var(--line); }
.step-media--forest { background: var(--forest-2); color: #eef5e8; }
.step-media .file-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 10px 14px; font-size: 13px; color: var(--ink); }
.step-media .file-chip i { color: var(--moss); }
.step-media--forest .file-chip { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); color: #e5f0dc; }
.step-media .caption { font-size: 12px; color: var(--muted-2); }
.step-media--forest .caption { color: #9eb696; }

/* ---------- Estatísticas ---------- */
.stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-size: 40px; font-weight: 500; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.stat .l { font-size: 12px; color: var(--muted-2); margin-top: 8px; max-width: 150px; line-height: 1.5; }

/* ---------- Pílulas de status ---------- */
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; line-height: 1.2; white-space: nowrap; }
.pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill--ok { background: var(--ok-bg); color: #2f6a35; }
.pill--warn { background: var(--amber-bg); color: #7a5f12; }
.pill--risk { background: var(--rust-bg); color: #8a2b25; }
.pill--info { background: #e2ebf1; color: #2b4f68; }
.pill--neutral { background: var(--paper-2); color: var(--muted); }

/* ---------- Aviso legal ---------- */
.notice { border-left: 2px solid #a4bc95; padding: 4px 0 4px 18px; font-size: 13px; line-height: 1.75; color: #6f7f6a; max-width: 640px; }
.notice strong { color: #4f6645; font-weight: 600; display: block; margin-bottom: 4px; }
.notice--band { border-left: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); padding: 18px 0; max-width: none; }
.notice--band .container { display: flex; gap: 14px; align-items: flex-start; }
.notice--band .container::before { content: 'ⓘ'; color: var(--moss); font-size: 16px; line-height: 1.4; }
.notice--band p { font-size: 13px; color: #6f7f6a; max-width: 900px; }

/* ---------- Faixa de CTA ---------- */
.cta-band { background: var(--forest-2); color: #eef5e8; padding: 88px 0; }
.cta-band .container { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.cta-band h2 { color: var(--white); max-width: 16ch; }
.cta-band p { color: #b5c6ad; font-size: 15px; margin-top: 14px; max-width: 460px; }
.cta-band .actions { justify-content: flex-end; }
.cta-band .btn-text { color: #d9e8ce; }
.cta-band .btn-text:hover { color: var(--white); }
.cta-band .btn-text .ring { border-color: rgba(255, 255, 255, .35); }
.cta-band--center .container { display: block; text-align: center; }
.cta-band--center h2, .cta-band--center p { margin-left: auto; margin-right: auto; }
.cta-band--center .actions { justify-content: center; margin-top: 30px; }

/* ---------- FAQ (details/summary) ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--moss); flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div, .faq details > p { padding: 0 0 24px; font-size: 15px; line-height: 1.75; color: var(--muted); max-width: 720px; }
.faq details > div p + p { margin-top: 10px; }
.faq-group + .faq-group { margin-top: 56px; }
.faq-group > h2 { font-size: 24px; margin-bottom: 18px; }

/* ---------- Formulários ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12px; font-weight: 600; color: #58704f; }
.field input, .field select, .field textarea, .lead-input { border: 1px solid #dfe6d8; background: #fafbf8; border-radius: var(--radius-s); padding: 12px 14px; font-size: 14px; color: #254334; min-height: 46px; width: 100%; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus, .lead-input:focus { border-color: #659766; box-shadow: 0 0 0 3px rgba(109, 150, 97, .12); }
.field input::placeholder, .field textarea::placeholder, .lead-input::placeholder { color: #a2ad9d; }
.field select option, .lead-input option { background: var(--white); color: #254334; }
.form-grid { display: grid; gap: 14px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-card { background: var(--white); border: 1px solid #dde5d5; border-radius: var(--radius-m); padding: 34px; box-shadow: var(--shadow-soft); }
.form-card h3 { font-size: 22px; letter-spacing: -.03em; }
.form-card .sub { font-size: 13px; color: #83907c; margin: 8px 0 24px; }
.form-note { font-size: 12px; line-height: 1.7; color: #91a086; margin-top: 16px; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }
.form-error { color: var(--rust); font-size: 13px; padding: 10px 0; }
.form-success { color: #326645; font-size: 13px; font-weight: 600; padding: 10px 0; }

/* ---------- Conteúdo legal / prosa ---------- */
.prose { font-size: 15px; line-height: 1.8; color: #4a5f54; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p { color: #5e7266; margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: #5e7266; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose .meta { font-size: 13px; color: var(--muted-2); margin-bottom: 32px; }

/* ---------- Comparativo ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; background: var(--white); }
.compare > div { padding: 32px; }
.compare > div + div { border-left: 1px solid var(--line); background: #f3f7ee; }
.compare h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; color: var(--muted); }
.compare > div + div h3 { color: #2f6a35; }
.compare li { padding: 11px 0; border-top: 1px solid var(--line); font-size: 14px; color: #4a5f54; display: flex; gap: 12px; }
.compare > div:first-child li::before { content: '–'; color: #b08a86; }
.compare > div + div li::before { content: '✓'; color: var(--moss-2); font-size: 12px; }

/* ---------- Tabela ---------- */
.table-wrap { overflow-x: auto; }
table.table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.table th, table.table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.table th { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }

/* ---------- Vídeos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.video-card { border: 1px solid var(--line); border-radius: var(--radius-m); background: var(--white); overflow: hidden; display: flex; flex-direction: column; }
.video-card .video-frame { background: var(--forest-2); aspect-ratio: 16 / 9; position: relative; }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card .video-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px; color: #d4e3ca; text-align: center; padding: 24px; background: var(--forest-2); }
.video-card .video-fallback span { font-size: 13px; color: #9eb696; }
.video-card .video-fallback strong { color: var(--white); font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -.02em; line-height: 1.3; max-width: 26ch; }
.video-card .video-fallback i { color: #9eb696; font-size: 20px; }
.video-card .video-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.video-card .video-meta { font-size: 12px; color: var(--muted-2); display: flex; gap: 14px; }
.video-card h3 { font-size: 18px; }
.video-card p { font-size: 14px; }
.video-card .video-actions { margin-top: auto; padding-top: 12px; display: flex; gap: 18px; flex-wrap: wrap; }
.video-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.3fr 1fr; }
.video-card--featured .video-frame { aspect-ratio: auto; min-height: 320px; }

/* ---------- Utilitários ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.small { font-size: 13px; color: var(--muted-2); }
.max-520 { max-width: 520px; }
.max-640 { max-width: 640px; }

/* ---------- Responsivo ---------- */
@media (min-width: 1500px) {
  .page-hero { padding: 80px 0 88px; }
}
@media (max-width: 1100px) {
  :root { --gutter: 32px; }
  .nav-inner { gap: 20px; }
  .brand { margin-right: 10px; }
  .desktop-links { gap: 18px; }
  .nav-contact { display: none; }
  .nav-cta { margin-left: auto; }
  .page-hero--grid .container { gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide { gap: 48px; }
  .section-heading > p { max-width: 240px; }
}
@media (max-width: 900px) {
  .desktop-links { display: none; }
  .brand { margin-right: auto; }
  .mobile-nav { display: block; }
  .mobile-nav summary { list-style: none; width: 26px; padding: 8px 0; cursor: pointer; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav summary span { display: block; height: 1px; background: #264e36; margin: 5px 0; }
  .mobile-nav > div { position: absolute; right: var(--gutter); left: var(--gutter); top: calc(var(--nav-h) - 12px); background: var(--paper); border: 1px solid #d2ddc9; border-radius: var(--radius-m); box-shadow: 0 15px 30px rgba(19, 51, 28, .10); padding: 14px; display: flex; flex-direction: column; }
  .mobile-nav > div a { padding: 12px 10px; font-size: 14px; color: var(--ink); border-radius: var(--radius-s); }
  .mobile-nav > div a:hover { background: var(--sage); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .page-hero--grid .container { grid-template-columns: 1fr; }
  .hero-panel--tilt { transform: rotate(-1deg); }
  .split, .split--wide { grid-template-columns: 1fr; gap: 40px; }
  .split--flip > :first-child { order: 0; }
  .step, .step:nth-child(even) { grid-template-columns: 1fr; gap: 28px; }
  .step:nth-child(even) .step-copy { order: 0; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
  .video-card--featured { grid-template-columns: 1fr; }
  .video-card--featured .video-frame { aspect-ratio: 16 / 9; min-height: 0; }
}
@media (max-width: 760px) {
  :root { --gutter: 24px; --nav-h: 76px; }
  body { font-size: 15px; }
  .brand img { width: 71px; }
  .nav-cta { font-size: 12px; padding: 11px 13px; gap: 14px; }
  .site-footer { padding: 40px 0 24px; }
  .footer-top { flex-wrap: wrap; gap: 24px; padding-bottom: 28px; }
  .footer-top img { width: 72px; }
  .footer-top > a:last-child { margin-left: 0; width: 100%; justify-content: space-between; padding-top: 12px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-bottom > div { justify-content: space-between; }
  .page-hero { padding: 44px 0 48px; }
  .page-hero h1, .page-hero--wide h1 { max-width: none; }
  .page-hero--center h1 { max-width: none; }
  .page-hero .lead { font-size: 15px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 44px 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading > p { max-width: 460px; margin-top: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .rule-list { grid-template-columns: 1fr 1fr !important; gap: 28px 24px; }
  .rule-list h3 { font-size: 16px; margin-top: 22px; }
  .rule-list p { font-size: 13px; }
  .hero-panel { padding: 26px; }
  .hero-panel h3 { font-size: 23px; }
  .stats { gap: 28px; }
  .stat .n { font-size: 32px; }
  .compare { grid-template-columns: 1fr; }
  .compare > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .form-grid--2 { grid-template-columns: 1fr; }
  .form-card { padding: 26px; }
  .cta-band { padding: 60px 0; }
  .video-grid { grid-template-columns: 1fr; }
  .faq summary { font-size: 15px; padding: 18px 0; }
  .panel { padding: 26px; }
}
@media (max-width: 420px) {
  .rule-list { grid-template-columns: 1fr !important; }
  .nav-cta { padding: 10px; font-size: 11px; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
