/* ============================================================
   Contém Conteúdo — theme.css
   Part 1: design tokens (Mauro Amaral DS)
   Part 2: page-specific styles (extracted from source designs)
   ============================================================ */

/* ============================================================
   Mauro Amaral Design System — colors_and_type.css
   Single source of truth for tokens, type, colors, motion.
   ============================================================ */

/* ---------- Fonts ----------
   Primary type pairing (editorial/essayistic):
   - Serif display + body:  Source Serif 4  (SUBSTITUTION for a custom serif used in
     re/Corte wordmark; flag: please confirm / provide the original font file).
   - Sans (UI, labels, meta): Inter Tight  (used sparingly, for UI chrome only —
     the brand voice leans serif-first).
   - Mono (code, timestamps, metadata): JetBrains Mono.
   - Handwritten accent (sparingly, for editorial asides / pull-quotes footnotes):
     Caveat.
   --------------------------------------------------------- */
/* fonts enqueued via functions.php */

:root {
  /* ============================================================
     BASE COLOR TOKENS  ("atoms" — never used directly in UI)
     ============================================================ */

  /* --- Primary: Laranja ma.com --- warm, analog, editorial orange
     Sampled from mauroamaral_com_laranja_512.png gradient.           */
  --ma-orange-50:  #FFF6EC;
  --ma-orange-100: #FFE8CF;
  --ma-orange-200: #FFD3A1;
  --ma-orange-300: #FFBC74;
  --ma-orange-400: #FFA54C;   /* lighter gradient stop */
  --ma-orange-500: #F29441;   /* brand primary */
  --ma-orange-600: #E07A2A;   /* darker gradient stop / pressed */
  --ma-orange-700: #B85E1C;
  --ma-orange-800: #8A4313;
  --ma-orange-900: #5A2A0A;

  /* --- Re/Corte: creme + ocre + ink  (literary imprint palette) --- */
  --rc-creme-50:   #F8F4EC;
  --rc-creme-100:  #ECE7DE;   /* re/Corte background */
  --rc-creme-200:  #DDD5C6;
  --rc-creme-300:  #C9BEA9;
  --rc-ochre-500:  #B07A3E;   /* the slash / accent */
  --rc-ochre-600:  #8F5E2B;
  --rc-ink:        #12100E;   /* wordmark black (slight warm) */

  /* --- Neutrals (warm, paper-leaning — never pure grey) --- */
  --warm-00:   #FFFDF8;   /* paper white */
  --warm-05:   #FAF6EE;
  --warm-10:   #F3ECDF;
  --warm-20:   #E6DDCB;
  --warm-30:   #CDBFA5;
  --warm-40:   #A99878;
  --warm-50:   #7A6C52;
  --warm-60:   #574C38;
  --warm-70:   #3B3326;
  --warm-80:   #26201794;
  --warm-90:   #1B1610;
  --ink:       #12100E;

  /* --- Semantic accents (used sparingly, editorial) --- */
  --accent-leaf:   #4A6B3A;   /* growth / cultura */
  --accent-cobalt: #2E4A8A;   /* tecnologia */
  --accent-rust:   #A8412B;   /* fronteira / flag */

  /* ============================================================
     SEMANTIC TOKENS  (use these in components)
     ============================================================ */

  /* Surfaces */
  --bg:              var(--warm-05);        /* page default */
  --bg-paper:        var(--warm-00);        /* cards, articles */
  --bg-creme:        var(--rc-creme-100);   /* re/Corte style surfaces */
  --bg-ink:          var(--ink);            /* inverted surface */
  --bg-orange:       var(--ma-orange-500);  /* hero / signal */
  --bg-orange-soft:  var(--ma-orange-100);

  /* Foreground (text) */
  --fg:              var(--ink);            /* body */
  --fg-1:            var(--warm-70);        /* de-emphasized */
  --fg-2:            var(--warm-50);        /* meta, timestamps */
  --fg-3:            var(--warm-40);        /* hint, disabled */
  --fg-on-orange:    var(--ink);            /* ink on orange stays ink, not white */
  --fg-on-ink:       var(--warm-05);
  --fg-accent:       var(--ma-orange-600);

  /* Borders / rules */
  --rule:            var(--warm-20);
  --rule-strong:     var(--warm-30);
  --rule-ink:        var(--ink);

  /* Interactive */
  --link:            var(--ink);
  --link-underline:  var(--ma-orange-500);
  --link-hover:      var(--ma-orange-700);
  --btn-bg:          var(--ink);
  --btn-fg:          var(--warm-05);
  --btn-bg-hover:    var(--warm-70);
  --focus-ring:      var(--ma-orange-500);

  /* ============================================================
     TYPE TOKENS
     ============================================================ */

  --serif:       'Source Serif 4', 'Iowan Old Style', 'Georgia', serif;
  --sans:        'Inter Tight', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --mono:        'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
  --hand:        'Caveat', 'Bradley Hand', cursive;

  /* Modular type scale — editorial, generous (1.200 minor-third) */
  --t-xs:    0.75rem;    /* 12  — meta, captions */
  --t-sm:    0.875rem;   /* 14  — labels, UI */
  --t-base:  1rem;       /* 16  — UI body */
  --t-md:    1.125rem;   /* 18  — reading body */
  --t-lg:    1.375rem;   /* 22  — lead paragraph */
  --t-xl:    1.75rem;    /* 28  — small headings */
  --t-2xl:   2.25rem;    /* 36  — h3 */
  --t-3xl:   3rem;       /* 48  — h2 */
  --t-4xl:   4rem;       /* 64  — h1 */
  --t-5xl:   5.5rem;     /* 88  — display */
  --t-6xl:   8rem;       /* 128 — hero display */

  --lh-tight:  1.05;
  --lh-snug:   1.18;
  --lh-normal: 1.35;
  --lh-body:   1.55;
  --lh-loose:  1.75;

  --tr-tight:  -0.02em;
  --tr-normal:  0;
  --tr-wide:    0.12em;   /* eyebrows / labels */

  /* ============================================================
     SPACING  (8px base, but with editorial generosity)
     ============================================================ */
  --s-0:   0;
  --s-1:   4px;
  --s-2:   8px;
  --s-3:   12px;
  --s-4:   16px;
  --s-5:   24px;
  --s-6:   32px;
  --s-7:   48px;
  --s-8:   64px;
  --s-9:   96px;
  --s-10:  128px;
  --s-11:  192px;

  /* Layout */
  --measure-narrow: 58ch;  /* long-form reading column */
  --measure-wide:   72ch;
  --gutter:         24px;

  /* ============================================================
     RADII  (editorial = mostly square; orange avatar tile is the exception)
     ============================================================ */
  --r-0:  0;
  --r-1:  2px;
  --r-2:  4px;
  --r-3:  8px;
  --r-4:  14px;
  --r-pill: 999px;

  /* ============================================================
     SHADOWS  (low, warm, paper-like — never blue-black)
     ============================================================ */
  --shadow-0:  none;
  --shadow-1:  0 1px 0 rgba(26, 20, 10, 0.06);
  --shadow-2:  0 1px 2px rgba(26, 20, 10, 0.06), 0 2px 8px rgba(26, 20, 10, 0.04);
  --shadow-3:  0 2px 4px rgba(26, 20, 10, 0.06), 0 8px 24px rgba(26, 20, 10, 0.06);
  --shadow-card: 0 1px 0 rgba(26, 20, 10, 0.04), 0 12px 32px rgba(26, 20, 10, 0.06);

  /* Inner paper rule (used on serif pull-quotes) */
  --inset-rule: inset 2px 0 0 var(--ma-orange-500);

  /* ============================================================
     MOTION
     ============================================================ */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-editorial: cubic-bezier(0.2, 0.6, 0.2, 1); /* soft, essayistic */

  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;
  --dur-4: 520ms;
}

/* ============================================================
   SEMANTIC ELEMENT STYLES
   (consumers can opt in by using these classes or extending in components)
   ============================================================ */

body {
  font-family: var(--serif);
  font-size: var(--t-md);
  line-height: var(--lh-body);
  color: var(--fg);
  background: var(--bg);
  font-feature-settings: "onum" 1, "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Display & headings — serif, optical-size aware, tight leading */
.display, h1.display {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  font-size: var(--t-5xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--fg);
  text-wrap: balance;
}
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 48;
  font-size: var(--t-4xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-tight);
  text-wrap: balance;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-3xl);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-2xl);
  line-height: var(--lh-snug);
  text-wrap: balance;
}
h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: var(--t-xl);
  line-height: var(--lh-snug);
}
h5 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: var(--t-md);
  line-height: var(--lh-snug);
}

/* Marca-texto — destaque inline, padrão definido na página Sinapse.
   Global: funciona em qualquer template, post (Gutenberg) ou página feita à mão.
   Uso: <mark>trecho destacado</mark> */
mark {
  background: rgba(242,148,65,.22);
  color: #12100E;
  padding: 1px 5px;
  border-radius: 3px;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Eyebrow label — territory / section marker; wide-tracked lowercase sans */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: var(--tr-wide);
  text-transform: lowercase;
  color: var(--fg-2);
}

/* Lead paragraph — larger serif, de-emphasized weight */
.lead {
  font-size: var(--t-lg);
  line-height: var(--lh-normal);
  color: var(--fg-1);
  max-width: var(--measure-narrow);
  text-wrap: pretty;
}

/* Body paragraph */
p {
  max-width: var(--measure-narrow);
  text-wrap: pretty;
  margin: 0 0 1em 0;
}

/* Meta / caption — monospace */
.meta {
  font-family: var(--mono);
  font-size: var(--t-xs);
  letter-spacing: 0.02em;
  color: var(--fg-2);
  text-transform: lowercase;
}

/* Pull-quote — sparse, inset rule in orange */
blockquote, .pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--t-xl);
  line-height: var(--lh-normal);
  color: var(--fg);
  padding-left: var(--s-5);
  box-shadow: var(--inset-rule);
  max-width: var(--measure-narrow);
  text-wrap: pretty;
  margin: var(--s-7) 0;
}

/* Hand-written aside (used very rarely, margin annotation) */
.aside-hand {
  font-family: var(--hand);
  font-size: var(--t-lg);
  color: var(--ma-orange-700);
  line-height: 1.1;
}

/* Links — ink text, orange underline */
a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-color: var(--link-underline);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--dur-2) var(--ease-out),
              text-decoration-color var(--dur-2) var(--ease-out);
}
a:hover { color: var(--link-hover); text-decoration-color: var(--link-hover); }
a:focus, a:active { outline: none; }
a:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; border-radius: 2px; }

/* Horizontal rule — hair, warm */
hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: var(--s-7) 0;
}

code, pre { font-family: var(--mono); font-size: 0.95em; }


/* ============================================================
   PAGE-SPECIFIC STYLES (per-page helmet blocks)
   ============================================================ */

/* ===== front ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #F4DCB6; color: #12100E; }
  @keyframes csReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: csReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 58%; }
    }
  }
  #home-burger { display: none; }
  #home-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #home-burger.cs-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #home-burger.cs-open .bar2 { opacity: 0; }
  #home-burger.cs-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 820px) {
    #home-burger { display: flex !important; }
    #home-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(250,246,238,0.98); backdrop-filter: blur(12px);
      border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px;
      box-shadow: 0 16px 30px rgba(26,20,10,.08);
    }
    #home-nav-links.cs-open { display: flex !important; }
    #home-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
    #home-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }
  .cc-path:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(26,20,10,.09); border-color: #CDBFA5; }
  .cc-path:hover .cc-arrow { transform: translateX(6px); }
  .cc-path:hover .cc-seg { opacity: 0.2; }
  .cc-chan:hover { transform: translateY(-6px); box-shadow: 0 18px 38px rgba(26,20,10,.09); border-color: #CDBFA5; }
  .cc-chan:hover .cc-ic { transform: rotate(-5deg) scale(1.06); }
  .cc-stage:hover { border-color: #CDBFA5; box-shadow: 0 12px 30px rgba(26,20,10,.06); }
  .cc-seg { transition: opacity .4s cubic-bezier(.2,.6,.2,1); }
  #home-root a { outline: none; }
  #home-root a:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; border-radius: 2px; }

/* ===== cmo ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFD3A1; color: #12100E; }
  @keyframes cmoReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  /* Scroll-driven reveal. Default state (no support / reduced motion) = fully visible.
     Never leaves content permanently hidden. */
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: cmoReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    }
  }
  /* Hamburger nav — hidden on desktop, shown under 760px */
  #cmo-burger { display: none; }
  #cmo-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #cmo-burger.cmo-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #cmo-burger.cmo-open .bar2 { opacity: 0; }
  #cmo-burger.cmo-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 760px) {
    #cmo-burger { display: flex !important; }
    #cmo-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(250,246,238,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px;
      box-shadow: 0 16px 30px rgba(26,20,10,.10);
    }
    #cmo-nav-links.cmo-open { display: flex !important; }
    #cmo-nav-links a { padding: 14px 4px !important; font-size: 17px !important; border-bottom: none !important; }
    #cmo-nav-links a[aria-current="page"] { color: #E07A2A !important; }
    #cmo-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }

/* ===== agencias ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFD3A1; color: #12100E; }
  @keyframes agReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: agReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    }
  }
  #ag-burger { display: none; }
  #ag-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #ag-burger.ag-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #ag-burger.ag-open .bar2 { opacity: 0; }
  #ag-burger.ag-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 760px) {
    #ag-burger { display: flex !important; }
    #ag-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(250,246,238,0.98); backdrop-filter: blur(12px);
      border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px;
      box-shadow: 0 16px 30px rgba(26,20,10,.10);
    }
    #ag-nav-links.ag-open { display: flex !important; }
    #ag-nav-links a { padding: 14px 4px !important; font-size: 17px !important; border-bottom: none !important; }
    #ag-nav-links a[aria-current="page"] { color: #E07A2A !important; }
    #ag-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }

/* ===== founders ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFD3A1; color: #12100E; }
  @keyframes fdReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @keyframes step4Pulse { 0% { box-shadow: 0 0 0 0 rgba(242,148,65,.55); } 70% { box-shadow: 0 0 0 14px rgba(242,148,65,0); } 100% { box-shadow: 0 0 0 0 rgba(242,148,65,0); } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: fdReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    }
  }
  #fd-burger { display: none; }
  #fd-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #fd-burger.fd-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #fd-burger.fd-open .bar2 { opacity: 0; }
  #fd-burger.fd-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 760px) {
    #fd-burger { display: flex !important; }
    #fd-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(250,246,238,0.98); backdrop-filter: blur(12px);
      border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px;
      box-shadow: 0 16px 30px rgba(26,20,10,.10);
    }
    #fd-nav-links.fd-open { display: flex !important; }
    #fd-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
    #fd-nav-links a[aria-current="page"] { color: #E07A2A !important; }
    #fd-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }
  /* Step staircase connector line */
  .step-connector { width: 2px; background: linear-gradient(180deg, #E6DDCB 0%, #F29441 100%); margin: 0 auto; transition: background .4s; }

/* ===== comunidade ===== */
html, body { margin: 0; padding: 0; }
  body { background: #E9EDF4; }
  * { box-sizing: border-box; }
  ::selection { background: #C9D6F0; color: #12100E; }
  @keyframes csReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: csReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    }
  }
  #cs-burger { display: none; }
  #cs-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #cs-burger.cs-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #cs-burger.cs-open .bar2 { opacity: 0; }
  #cs-burger.cs-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 760px) {
    #cs-burger { display: flex !important; }
    #cs-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(233,237,244,0.98); backdrop-filter: blur(12px);
      border-bottom: 1px solid #CDD5E3; padding: 8px clamp(20px,5vw,64px) 22px;
      box-shadow: 0 16px 30px rgba(18,22,34,.10);
    }
    #cs-nav-links.cs-open { display: flex !important; }
    #cs-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
    #cs-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }
  .cs-degrau { display: grid; grid-template-columns: clamp(72px, 10vw, 132px) 1fr; gap: clamp(18px, 3vw, 40px); }
  @media (max-width: 560px) { .cs-degrau { grid-template-columns: 1fr; gap: 10px; } }
  .cs-nlform { display: flex; gap: 10px; }
  @media (max-width: 560px) { .cs-nlform { flex-direction: column; } }

  /* Bloco o espelho — boxes leves */
  .cs-mirror { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.8vw, 20px); }
  .cs-mirror .m-card { grid-column: span 2; background: #FFFFFF; border: 1px solid #D7DEEA; border-radius: 12px; padding: clamp(18px, 2.2vw, 26px); box-shadow: 0 1px 0 rgba(18,22,34,.03); transition: transform .34s cubic-bezier(.2,.6,.2,1), box-shadow .34s cubic-bezier(.2,.6,.2,1), border-color .34s; }
  .cs-mirror .m-card.m-half { grid-column: span 3; }
  .cs-mirror .m-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(18,22,34,.09); border-color: #AFBFD8; }
  .cs-mirror .m-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 8px; background: #EEF2F9; color: #2E4A8A; font-family: 'JetBrains Mono', monospace; font-size: 12px; margin-bottom: 16px; transition: background .34s, color .34s; }
  .cs-mirror .m-card:hover .m-num { background: #2E4A8A; color: #FFFFFF; }
  .cs-mirror .m-cta { grid-column: span 6; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 20px; text-decoration: none; padding: clamp(22px, 2.6vw, 30px) clamp(22px, 2.8vw, 34px); border: 1.5px dashed #9DB0CF; border-radius: 12px; background: rgba(46,74,138,0.035); transition: background .3s cubic-bezier(.2,.6,.2,1), border-color .3s, transform .3s cubic-bezier(.2,.6,.2,1); }
  .cs-mirror .m-cta:hover { background: rgba(46,74,138,0.07); border-color: #2E4A8A; }
  .cs-mirror .m-cta:hover .m-cta-arrow { transform: translateX(7px); }
  .m-cta-arrow { transition: transform .3s cubic-bezier(.2,.6,.2,1); }
  @media (max-width: 860px) { .cs-mirror .m-card, .cs-mirror .m-card.m-half { grid-column: span 3; } }
  @media (max-width: 560px) { .cs-mirror { grid-template-columns: 1fr; } .cs-mirror .m-card, .cs-mirror .m-card.m-half, .cs-mirror .m-cta { grid-column: 1 / -1; } }

  /* Bloco a escada — jornada / infográfico */
  .cs-journey { position: relative; margin-top: 8px; }
  .cs-step { display: grid; grid-template-columns: clamp(48px, 6vw, 60px) 1fr; gap: clamp(20px, 3vw, 40px); position: relative; padding-bottom: clamp(30px, 4vw, 48px); }
  .cs-step:last-child { padding-bottom: 0; }
  .cs-node { position: relative; display: flex; justify-content: center; }
  .cs-node::before { content: ''; position: absolute; top: clamp(48px, 6vw, 60px); bottom: -2px; left: 50%; width: 2px; transform: translateX(-50%); background: #CDD5E3; }
  .cs-step:last-child .cs-node::before { display: none; }
  .cs-num { position: relative; z-index: 1; width: clamp(48px, 6vw, 60px); height: clamp(48px, 6vw, 60px); border-radius: 50%; background: #FFFFFF; border: 2px solid #2E4A8A; color: #2E4A8A; display: flex; align-items: center; justify-content: center; font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-size: clamp(20px, 2.4vw, 26px); box-shadow: 0 4px 14px rgba(46,74,138,.12); transition: transform .34s cubic-bezier(.2,.6,.2,1), background .34s, color .34s; }
  .cs-step:hover .cs-num { transform: scale(1.07); background: #2E4A8A; color: #FFFFFF; }
  .cs-pull { display: inline-flex; align-items: stretch; text-decoration: none; font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 15px; border-radius: 5px; overflow: hidden; border: 1.5px solid #2E4A8A; }
  .cs-pull-label { display: flex; align-items: center; padding: 10px 16px; color: #12100E; background: #FFFFFF; transition: background .26s cubic-bezier(.2,.6,.2,1); }
  .cs-pull-arrow { display: flex; align-items: center; justify-content: center; padding: 10px 14px; background: #2E4A8A; color: #FFFFFF; font-size: 17px; transition: padding .28s cubic-bezier(.2,.6,.2,1); }
  .cs-pull:hover .cs-pull-arrow { padding-left: 21px; padding-right: 21px; }
  .cs-pull:hover .cs-pull-label { background: #EEF2F9; }
  @media (max-width: 560px) { .cs-step { grid-template-columns: 40px 1fr; gap: 16px; } .cs-node::before { top: 40px; } }

  /* Bloco a praça — canais com ícones */
  .cs-channel { display: flex; flex-direction: column; align-items: flex-start; background: #FFFFFF; border: 1px solid #D7DEEA; border-radius: 14px; padding: clamp(22px, 2.6vw, 30px); transition: transform .34s cubic-bezier(.2,.6,.2,1), box-shadow .34s, border-color .34s; }
  .cs-channel:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(18,22,34,.09); border-color: #AFBFD8; }
  .cs-ic-tile { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(150deg, #EAF0FA, #DCE5F5); color: #2E4A8A; margin-bottom: 18px; transition: transform .34s cubic-bezier(.2,.6,.2,1); }
  .cs-channel:hover .cs-ic-tile { transform: rotate(-5deg) scale(1.06); }

  /* Blog — cards de post */
  .cs-post { display: flex; flex-direction: column; background: #FFFFFF; border: 1px solid #D7DEEA; border-radius: 12px; overflow: hidden; transition: transform .34s cubic-bezier(.2,.6,.2,1), box-shadow .34s, border-color .34s; }
  .cs-post:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(18,22,34,.09); border-color: #AFBFD8; }
  .cs-post-body { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(18px, 2vw, 22px); flex: 1; }
  .cs-post-body h4 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-size: 20px; line-height: 1.22; letter-spacing: -0.01em; margin: 0 0 8px; text-wrap: balance; }
  .cs-post-body p { font-size: 14px; line-height: 1.55; color: #5C6679; margin: 0 0 16px; }
  .cs-post-link { margin-top: auto; font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 600; color: #12100E; text-decoration: none; border-bottom: 2px solid #F29441; padding-bottom: 2px; transition: border-color .2s; }
  .cs-post-link:hover { border-bottom-color: #2E4A8A; }

/* ===== blog ===== */
html, body { margin: 0; padding: 0; }
body { background: #FAF6EE; }
* { box-sizing: border-box; }
::selection { background: #FFD3A1; color: #12100E; }
@keyframes bhReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] { animation: bhReveal .7s cubic-bezier(.2,.6,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 56%; }
  }
}
#bh-burger { display: none; }
#bh-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
#bh-burger.bh-open .bar1 { transform: translateY(7px) rotate(45deg); }
#bh-burger.bh-open .bar2 { opacity: 0; }
#bh-burger.bh-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  #bh-burger { display: flex !important; }
  #bh-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,246,238,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.1); gap: 2px; }
  #bh-nav-links.bh-open { display: flex !important; }
  #bh-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
  #bh-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
}
@media (max-width: 980px) {
  .bh-body { grid-template-columns: 1fr !important; }
  .bh-aside { position: static !important; top: auto !important; }
}
@media (max-width: 560px) {
  .bh-grid { grid-template-columns: 1fr !important; }
  .bh-hero-grid { grid-template-columns: 1fr !important; }
}

/* ===== post-brand ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFE8CF; color: #12100E; }

  /* Progress bar */
  #pb2-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, #F29441, #E07A2A); z-index: 100; transition: width .1s linear; }

  /* Reveal */
  @keyframes pb2Reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: pb2Reveal 0.65s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 54%; }
    }
  }

  /* Burger */
  #pb2-burger { display: none; }
  #pb2-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #pb2-burger.pb2-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #pb2-burger.pb2-open .bar2 { opacity: 0; }
  #pb2-burger.pb2-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 860px) {
    #pb2-burger { display: flex !important; }
    #pb2-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,246,238,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.08); gap: 2px; }
    #pb2-nav-links.pb2-open { display: flex !important; }
    #pb2-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
    #pb2-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }

  /* Layout grid */
  .pb2-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(36px,5vw,80px); align-items: start; }
  .pb2-aside { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 18px; }
  @media (max-width: 960px) {
    .pb2-grid { grid-template-columns: 1fr; }
    .pb2-aside { position: static; }
  }

  /* Body prose */
  .pb2-body { font-family: 'Source Serif 4', Georgia, serif; }
  .pb2-body p { font-size: clamp(17px,1.75vw,19.5px); line-height: 1.76; color: #26201A; margin: 0 0 1.4em; max-width: 62ch; text-wrap: pretty; }
  .pb2-body h2 { font-weight: 500; font-variation-settings: 'opsz' 36; font-size: clamp(24px,2.8vw,32px); line-height: 1.14; letter-spacing: -0.016em; color: #12100E; margin: 2.2em 0 0.55em; max-width: 62ch; text-wrap: normal; }
  .pb2-body h3 { font-weight: 600; font-size: clamp(18px,2vw,22px); line-height: 1.22; color: #12100E; margin: 1.7em 0 0.5em; max-width: 62ch; text-wrap: normal; }
  .pb2-link { color: #12100E; text-decoration: underline; text-decoration-color: #F29441; text-decoration-thickness: 2px; text-underline-offset: 3px; transition: text-decoration-color .2s, color .2s; }
  .pb2-link:hover { text-decoration-color: #B85E1C; color: #B85E1C; }
  .pb2-hl { background: #FFE8CF; color: #12100E; padding: 1px 4px; border-radius: 3px; font-style: normal; }
  .pb2-fn { font-family: 'JetBrains Mono', monospace; font-size: 10px; vertical-align: super; color: #B07A3E; margin-left: 1px; text-decoration: none; }
  .pb2-fn:hover { color: #E07A2A; }

/* ===== cases ===== */
html, body { margin: 0; padding: 0; }
body { background: #FAF6EE; }
* { box-sizing: border-box; }
::selection { background: #FFD3A1; color: #12100E; }
@keyframes csReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] { animation: csReveal .7s cubic-bezier(.2,.6,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 56%; }
  }
}
#cs-burger { display: none; }
#cs-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
#cs-burger.cs-open .bar1 { transform: translateY(7px) rotate(45deg); }
#cs-burger.cs-open .bar2 { opacity: 0; }
#cs-burger.cs-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  #cs-burger { display: flex !important; }
  #cs-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,246,238,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.1); gap: 2px; }
  #cs-nav-links.cs-open { display: flex !important; }
  #cs-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
  #cs-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
}
@media (max-width: 820px) {
  .cs-featured-grid { grid-template-columns: 1fr !important; }
  .cs-featured-visual { min-height: 280px !important; }
}

/* ===== case-single ===== */
html, body { margin: 0; padding: 0; }
body { background: #FAF6EE; }
* { box-sizing: border-box; }
::selection { background: #FFD3A1; color: #12100E; }
#ci-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg,#F29441,#E07A2A); z-index: 100; pointer-events: none; transition: width .1s linear; }
@keyframes ciReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] { animation: ciReveal .7s cubic-bezier(.2,.6,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 56%; }
  }
}
#ci-burger { display: none; }
#ci-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
#ci-burger.ci-open .bar1 { transform: translateY(7px) rotate(45deg); }
#ci-burger.ci-open .bar2 { opacity: 0; }
#ci-burger.ci-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  #ci-burger { display: flex !important; }
  #ci-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(18,16,14,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(250,246,238,.1); padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(0,0,0,.3); gap: 2px; }
  #ci-nav-links.ci-open { display: flex !important; }
  #ci-nav-links a { padding: 14px 4px !important; font-size: 17px !important; color: #FAF6EE !important; }
  #ci-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
}
.ci-prose p { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(17px,1.75vw,19.5px); line-height: 1.76; color: #26201A; margin: 0 0 1.5em; text-wrap: pretty; }
.ci-prose h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-variation-settings: 'opsz' 36; font-size: clamp(24px,2.8vw,32px); line-height: 1.14; letter-spacing: -0.016em; color: #12100E; margin: 2.2em 0 .55em; text-wrap: balance; }

/* ===== diagnostico ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFD3A1; color: #12100E; }
  input::placeholder, textarea::placeholder { color: #A89A80; }
  @keyframes dgReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  @keyframes dgPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: dgReveal 0.8s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 60%; }
    }
  }
  #dg-burger { display: none; }
  #dg-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #dg-burger.dg-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #dg-burger.dg-open .bar2 { opacity: 0; }
  #dg-burger.dg-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 760px) {
    #dg-burger { display: flex !important; }
    #dg-nav-links {
      display: none !important;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 2px;
      background: rgba(250,246,238,0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      padding: 12px 20px 18px; border-bottom: 1px solid #E6DDCB;
      box-shadow: 0 16px 30px rgba(26,20,10,.10);
    }
    #dg-nav-links.dg-open { display: flex !important; }
    #dg-nav-links a { padding: 14px 4px !important; font-size: 17px !important; border-bottom: none !important; }
    #dg-nav-links a[aria-current="page"] { color: #E07A2A !important; }
    #dg-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }
  .dg-aside { position: sticky; }
  @media (max-width: 960px) {
    .dg-grid { grid-template-columns: 1fr !important; }
    .dg-aside { position: static; }
  }

/* ===== interna ===== */
html, body { margin: 0; padding: 0; }
body { background: #FAF6EE; }
* { box-sizing: border-box; }
::selection { background: #FFD3A1; color: #12100E; }
#pi-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, #F29441, #E07A2A); z-index: 100; pointer-events: none; transition: width .1s linear; }
@keyframes piReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] { animation: piReveal .7s cubic-bezier(.2,.6,.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 56%; }
  }
}
#pi-burger { display: none; }
#pi-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
#pi-burger.pi-open .bar1 { transform: translateY(7px) rotate(45deg); }
#pi-burger.pi-open .bar2 { opacity: 0; }
#pi-burger.pi-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  #pi-burger { display: flex !important; }
  #pi-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(250,246,238,.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.1); gap: 2px; }
  #pi-nav-links.pi-open { display: flex !important; }
  #pi-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
  #pi-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
}
.pi-prose p { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(17px,1.75vw,19.5px); line-height: 1.76; color: #26201A; margin: 0 0 1.5em; text-wrap: pretty; }
.pi-prose h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-variation-settings: 'opsz' 36; font-size: clamp(24px,2.8vw,32px); line-height: 1.14; letter-spacing: -0.016em; color: #12100E; margin: 2.2em 0 .55em; text-wrap: balance; }
.pi-prose a { color: #12100E; text-decoration-color: #F29441; text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* ===== post-automacao ===== */
html, body { margin: 0; padding: 0; }
  body { background: #FAF6EE; }
  * { box-sizing: border-box; }
  ::selection { background: #FFE8CF; color: #12100E; }
  @keyframes p1Reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: no-preference) {
    @supports (animation-timeline: view()) {
      [data-reveal] { animation: p1Reveal 0.7s cubic-bezier(0.2,0.6,0.2,1) both; animation-timeline: view(); animation-range: entry 0% entry 56%; }
    }
  }
  #p1-burger { display: none; }
  #p1-burger .bar { transition: transform .26s cubic-bezier(.2,.6,.2,1), opacity .2s; }
  #p1-burger.p1-open .bar1 { transform: translateY(7px) rotate(45deg); }
  #p1-burger.p1-open .bar2 { opacity: 0; }
  #p1-burger.p1-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 860px) {
    #p1-burger { display: flex !important; }
    #p1-nav-links { display: none !important; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(250,246,238,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.08); }
    #p1-nav-links.p1-open { display: flex !important; }
    #p1-nav-links a { padding: 14px 4px !important; font-size: 17px !important; }
    #p1-nav-links a:last-child { margin-top: 10px; text-align: center; padding: 15px !important; border-radius: 4px; }
  }
  .p1-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 5vw, 72px); align-items: start; }
  .p1-aside { position: sticky; top: 88px; }
  @media (max-width: 960px) {
    .p1-grid { grid-template-columns: 1fr; gap: 48px; }
    .p1-aside { position: static; }
  }
  @media (max-width: 760px) { .p1-cmp { grid-template-columns: 1fr !important; } }
  .p1-link { color: #12100E; text-decoration: underline; text-decoration-color: #F29441; text-decoration-thickness: 2px; text-underline-offset: 3px; transition: text-decoration-color .2s; }
  .p1-link:hover { text-decoration-color: #B85E1C; color: #B85E1C; }
  .p1-body p { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.74; color: #26201A; margin: 0 0 1.35em; max-width: 68ch; text-wrap: pretty; }
  .p1-body h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-size: clamp(25px, 3vw, 34px); line-height: 1.16; letter-spacing: -0.015em; color: #12100E; margin: 2.1em 0 0.6em; max-width: 24ch; text-wrap: balance; }
  .p1-body h3 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: clamp(19px, 2vw, 23px); line-height: 1.25; color: #12100E; margin: 1.6em 0 0.5em; }

/* ============================================================
   CONTEÚDO EDITORIAL — elementos gerados pelo editor WordPress
   Aplica-se a .p1-body (Editorial) e .pb2-body (Post-Perfil)
   ============================================================ */

/* ---------- Parágrafo e lead ---------- */
.p1-body p,
.pb2-body p { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(17px, 1.7vw, 19px); line-height: 1.74; color: #26201A; margin: 0 0 1.35em; max-width: 68ch; text-wrap: pretty; }

/* ---------- Headings ---------- */
.p1-body h2, .pb2-body h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-variation-settings: 'opsz' 36; font-size: clamp(24px, 2.8vw, 32px); line-height: 1.14; letter-spacing: -0.016em; color: #12100E; margin: 2.2em 0 0.55em; max-width: 68ch; text-wrap: normal; }
.p1-body h3, .pb2-body h3 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: clamp(19px, 2vw, 22px); line-height: 1.22; color: #12100E; margin: 1.7em 0 0.5em; max-width: 68ch; text-wrap: normal; }
.p1-body h4, .pb2-body h4 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: clamp(14px, 1.5vw, 16px); letter-spacing: 0.04em; text-transform: uppercase; color: #B07A3E; margin: 1.5em 0 0.4em; }

/* ---------- Default single (.cc-content) ---------- */
.cc-content h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 500; font-variation-settings: 'opsz' 36; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.18; letter-spacing: -0.012em; color: #12100E; margin: 2em 0 0.5em; max-width: 68ch; text-wrap: normal; }
.cc-content h3 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.24; color: #12100E; margin: 1.6em 0 0.45em; max-width: 68ch; text-wrap: normal; }
.cc-content h4 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: clamp(13px, 1.3vw, 15px); letter-spacing: 0.04em; text-transform: uppercase; color: #B07A3E; margin: 1.4em 0 0.4em; }

/* ============================================================
   CC EDITORIAL COMPONENTS
   Usados via bloco HTML no editor WordPress.
   Funcionam dentro de .p1-body, .pb2-body e .cc-content.
   ============================================================ */

/* 1. CAPITULAR — letra inicial grande flutuante
   Uso: <span class="cc-capitular">L</span>etras restantes...
   ---------------------------------------------------------- */
.cc-capitular {
  float: left;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  font-variation-settings: 'opsz' 72;
  font-size: 82px;
  line-height: 0.72;
  color: #E07A2A;
  margin: 10px 14px -4px 0;
}

/* 2. CALLOUT — caixa de destaque âmbar com barra laranja
   Uso: <aside class="cc-callout"><strong>Rótulo</strong><p>Texto.</p></aside>
   ---------------------------------------------------------- */
.cc-callout {
  margin: 1.8em 0;
  padding: clamp(18px,2.5vw,26px) clamp(18px,2.5vw,26px) clamp(18px,2.5vw,26px) calc(clamp(18px,2.5vw,26px) + 16px);
  background: #FBF1E2;
  border: 1px solid #F0DEC2;
  border-radius: 8px;
  max-width: 62ch;
  position: relative;
  overflow: hidden;
}
.cc-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, #F29441, #E07A2A);
}
.cc-callout > strong,
.cc-callout > b {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #B07A3E;
  margin-bottom: 10px;
}
.cc-callout p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(16px, 1.75vw, 18px) !important;
  line-height: 1.58 !important;
  color: #12100E !important;
  margin: 0 !important;
  max-width: none !important;
}

/* 3. LISTA EM CARDS — itens numerados em painel branco
   Uso:
   <ul class="cc-list-cards">
     <li><span class="cc-num">01</span><div><strong>Título</strong> Texto.</div></li>
   </ul>
   ---------------------------------------------------------- */
.cc-list-cards {
  list-style: none;
  margin: 0 0 1.6em;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 62ch;
  border: 1px solid #E6DDCB;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFDF8;
}
.cc-list-cards li {
  padding: 16px 20px;
  border-bottom: 1px solid #E6DDCB;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cc-list-cards li:last-child { border-bottom: none; }
.cc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #E07A2A;
  font-weight: 500;
  flex: 0 0 24px;
  padding-top: 3px;
}
.cc-list-cards strong { font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 600; color: #12100E; display: block; margin-bottom: 4px; }
.cc-list-cards span  { font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; line-height: 1.55; color: #3B3326; }

/* 4. FOOTNOTE — nota de rodapé superscript
   Uso: <a class="cc-fn" href="#fn1" id="fnref1">1</a>
   ---------------------------------------------------------- */
.cc-fn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  vertical-align: super;
  color: #B07A3E;
  margin-left: 1px;
  text-decoration: none !important;
  line-height: 1;
}
.cc-fn:hover { color: #E07A2A !important; }

/* Bloco de notas de rodapé (agrupa os itens no final do artigo)
   Uso: <div class="cc-footnotes"><ol>...</ol></div>
   ---------------------------------------------------------- */
.cc-footnotes {
  margin-top: 2.8em;
  padding-top: 22px;
  border-top: 1px solid #E6DDCB;
  max-width: 62ch;
}
.cc-footnotes::before {
  content: 'notas';
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #7A6C52;
  margin-bottom: 12px;
}
.cc-footnotes ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cc-footnotes li { display: flex; gap: 10px; align-items: baseline; font-family: 'Source Serif 4', Georgia, serif; font-size: 14px; line-height: 1.55; color: #7A6C52; }
.cc-footnotes li::before { content: counter(list-item, decimal) '.'; font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #B07A3E; flex: 0 0 16px; }

/* 5. DOWNLOAD BLOCK — card escuro com CTA de material rico
   Uso:
   <div class="cc-download">
     <div class="cc-download__body">
       <span class="cc-download__label">material rico · pdf</span>
       <h3>Título do material</h3>
       <p>Descrição breve.</p>
     </div>
     <a href="#" class="cc-download__cta">Baixar PDF ↓</a>
   </div>
   ---------------------------------------------------------- */
.cc-download {
  margin: 2.2em 0;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 26px);
  flex-wrap: wrap;
  padding: clamp(22px, 3vw, 30px);
  background: linear-gradient(135deg, #1E1A14, #12100E);
  border-radius: 10px;
  max-width: 62ch;
  border: 1px solid #3B3326;
  box-shadow: 0 14px 36px rgba(26,20,10,.22);
}
.cc-download__body { flex: 1 1 200px; }
.cc-download__label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7A6C52;
  margin-bottom: 6px;
}
.cc-download h3 {
  font-family: 'Source Serif 4', Georgia, serif !important;
  font-weight: 600 !important;
  font-size: clamp(18px, 2.1vw, 22px) !important;
  margin: 0 0 4px !important;
  color: #FAF6EE !important;
  line-height: 1.2 !important;
}
.cc-download p {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #A99878 !important;
  margin: 0 !important;
  max-width: 38ch;
}
.cc-download__cta {
  flex: 0 0 auto;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #12100E;
  background: #F29441;
  padding: 14px 22px;
  border-radius: 4px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s;
}
.cc-download__cta:hover { background: #E07A2A; color: #12100E !important; }

/* ---------- Links inline ---------- */
.p1-body a, .pb2-body a { color: #12100E; text-decoration: underline; text-decoration-color: #F29441; text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.p1-body a:hover, .pb2-body a:hover { color: #B85E1C; text-decoration-color: #B85E1C; }

/* Mark / highlight: ver regra global "mark" no início do arquivo (junto com h1-h5) */

/* ---------- Blockquote / pull-quote ---------- */
.p1-body blockquote,
.pb2-body blockquote { margin: 2em 0; padding: clamp(10px, 2vw, 16px) 0 clamp(10px, 2vw, 16px) clamp(22px, 3vw, 30px); border-left: 3px solid #F29441; max-width: 60ch; }
.p1-body blockquote p,
.pb2-body blockquote p { font-style: italic; font-weight: 500; font-variation-settings: 'opsz' 32; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.24; letter-spacing: -0.012em; color: #B0561E; margin: 0; max-width: none; text-wrap: balance; }
.p1-body blockquote cite,
.pb2-body blockquote cite { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-style: normal; color: #7A6C52; margin-top: 12px; letter-spacing: 0.04em; }

/* ---------- Listas ---------- */
.p1-body ul, .pb2-body ul,
.p1-body ol, .pb2-body ol { font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(16px, 1.7vw, 18px); line-height: 1.6; color: #26201A; margin: 0 0 1.6em; padding-left: 1.4em; max-width: 68ch; display: flex; flex-direction: column; gap: 8px; }
.p1-body li, .pb2-body li { padding-left: 4px; }
.p1-body ul, .pb2-body ul { list-style: none; padding-left: 0; }
.p1-body ul li, .pb2-body ul li { position: relative; padding-left: 22px; }
.p1-body ul li::before, .pb2-body ul li::before { content: '→'; position: absolute; left: 0; top: 0; color: #F29441; font-weight: 700; font-family: 'Inter Tight', sans-serif; }
.p1-body ol { list-style: none; padding-left: 0; counter-reset: cc-list; }
.pb2-body ol { list-style: none; padding-left: 0; counter-reset: cc-list; }
.p1-body ol li, .pb2-body ol li { counter-increment: cc-list; padding-left: 40px; position: relative; background: #FFFDF8; border: 1px solid #E6DDCB; border-radius: 6px; padding: 14px 16px 14px 48px; }
.p1-body ol li::before, .pb2-body ol li::before { content: counter(cc-list, decimal-leading-zero); position: absolute; left: 14px; top: 13px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #E07A2A; font-weight: 500; }

/* ---------- Figure / imagem com legenda ---------- */
.p1-body figure, .pb2-body figure { margin: 2em 0; max-width: 100%; }
.p1-body figure img, .pb2-body figure img { width: 100%; height: auto; display: block; border-radius: 8px; border: 1px solid #E6DDCB; }
.p1-body figcaption, .pb2-body figcaption { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #7A6C52; margin-top: 10px; letter-spacing: 0.04em; text-align: center; }

/* ---------- Tabela ---------- */
.p1-body table, .pb2-body table { width: 100%; border-collapse: collapse; font-family: 'Source Serif 4', Georgia, serif; font-size: clamp(14px, 1.5vw, 16px); line-height: 1.55; color: #26201A; margin: 2em 0; max-width: 72ch; }
.p1-body thead, .pb2-body thead { border-bottom: 2px solid #12100E; }
.p1-body th, .pb2-body th { font-family: 'Inter Tight', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #7A6C52; padding: 10px 14px; text-align: left; }
.p1-body td, .pb2-body td { padding: 13px 14px; border-bottom: 1px solid #E6DDCB; vertical-align: top; }
.p1-body tr:last-child td, .pb2-body tr:last-child td { border-bottom: none; }

/* ---------- Classe .table — tabela editorial (bloco Gutenberg) ---------- */
/* Adicionar "table" no campo Additional CSS Class(es) do bloco Tabela */
.wp-block-table.table { overflow-x: auto; margin: 1.6em 0 2.2em; max-width: 62ch; }
.wp-block-table.table table { width: 100%; border-collapse: collapse; font-family: 'Source Serif 4', Georgia, serif; background: #FFFDF8; border: 1px solid #E6DDCB; border-radius: 8px; overflow: hidden; min-width: 480px; }
.wp-block-table.table thead tr { background: #12100E; }
.wp-block-table.table th { text-align: left; padding: 13px 16px; font-family: 'Inter Tight', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #CDBFA5; border: none; }
.wp-block-table.table th:last-child { color: #F29441; }
.wp-block-table.table td { padding: 13px 16px; font-family: 'Source Serif 4', Georgia, serif; font-size: 15px; color: #3B3326; border-bottom: 1px solid #E6DDCB; vertical-align: top; }
.wp-block-table.table td:first-child { font-weight: 600; color: #12100E; }
.wp-block-table.table tr:last-child td { border-bottom: none; }
.wp-block-table.table tbody tr:nth-child(even) { background: #FFFBF3; }
.p1-body tbody tr:nth-child(even), .pb2-body tbody tr:nth-child(even) { background: #FDFAF5; }

/* ---------- Callout / aside (bloco especial) ---------- */
.p1-body .wp-block-quote,
.pb2-body .wp-block-quote { margin: 1.8em 0; padding: clamp(22px, 3vw, 30px); background: #FBF1E2; border: 1px solid #F0DEC2; border-radius: 8px; max-width: 68ch; border-left: none; }
.p1-body .wp-block-quote p,
.pb2-body .wp-block-quote p { font-size: clamp(17px, 1.8vw, 19px); line-height: 1.55; color: #12100E; margin: 0; font-style: normal; font-weight: normal; max-width: none; }

/* ---------- Código inline e bloco ---------- */
.p1-body code, .pb2-body code { font-family: 'JetBrains Mono', monospace; font-size: 0.88em; background: #F3ECDF; border: 1px solid #E6DDCB; padding: 2px 6px; border-radius: 4px; color: #B85E1C; }
.p1-body pre, .pb2-body pre { font-family: 'JetBrains Mono', monospace; font-size: 14px; line-height: 1.6; background: #12100E; color: #FAF6EE; padding: clamp(18px, 2.5vw, 28px); border-radius: 8px; overflow-x: auto; margin: 2em 0; }
.p1-body pre code, .pb2-body pre code { background: none; border: none; padding: 0; color: inherit; font-size: inherit; }

/* ---------- HR ---------- */
.p1-body hr, .pb2-body hr { border: none; border-top: 1px solid #E6DDCB; margin: 2.4em 0; }

/* ---------- Strong e em ---------- */
.p1-body strong, .pb2-body strong { font-weight: 700; color: #12100E; }
.p1-body em, .pb2-body em { font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .p1-body table, .pb2-body table { font-size: 13px; }
  .p1-body th, .pb2-body th,
  .p1-body td, .pb2-body td { padding: 10px 10px; }
}

/* ===== Fluent Forms — ajuste visual para o tema CC ===== */
.cc-ff-wrap .ff-el-input--label label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3B3326;
}
.cc-ff-wrap .ff-el-form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid #CDBFA5;
  border-radius: 4px;
  background: #FDFAF3;
  color: #12100E;
  box-shadow: none;
}
.cc-ff-wrap .ff-el-form-control:focus {
  border-color: #F29441;
  box-shadow: 0 0 0 3px rgba(242,148,65,.18);
  outline: none;
}
.cc-ff-wrap .ff_submit_btn_wrapper button {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #12100E;
  background: #F29441;
  border: 0;
  padding: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s cubic-bezier(.2,.6,.2,1);
}
.cc-ff-wrap .ff_submit_btn_wrapper button:hover {
  background: #E07A2A;
}


/* ============================================================
   THEME CHROME — canonical nav / footer (added by theme)
   ============================================================ */
#site-nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px clamp(20px,5vw,64px); border-bottom: 1px solid transparent; transition: background .3s var(--ease-editorial), box-shadow .3s, border-color .3s; background: rgba(250,246,238,0); }
#site-nav.is-scrolled { background: rgba(250,246,238,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: #E6DDCB; box-shadow: 0 8px 24px rgba(26,20,10,.06); }
#site-nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: #12100E; }
#site-nav .brand img { width: 32px; height: 32px; border-radius: 8px; display: block; box-shadow: 0 1px 0 rgba(26,20,10,.08); }
#site-nav .brand span { font-family: var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
#site-nav .nav-links { display: flex; align-items: center; gap: clamp(10px,1.8vw,22px); list-style: none; margin: 0; padding: 0; }
#site-nav .nav-links a { font-family: var(--sans); font-size: 14px; color: #3B3326; text-decoration: none; text-underline-offset: 4px; transition: color .2s var(--ease-editorial), text-decoration-color .2s var(--ease-editorial); }
#site-nav .nav-links a:hover { color: #12100E; text-decoration: underline; text-decoration-color: #F29441; text-decoration-thickness: 1.5px; }
#site-nav .nav-links li.current-menu-item a,
#site-nav .nav-links li.current_page_item a { color: #12100E; text-decoration: underline; text-decoration-color: #F29441; text-decoration-thickness: 1.5px; }
#site-nav .nav-links li.cta a, #site-nav .nav-links a.cta { font-weight: 600; color: #12100E; padding: 9px 16px; border-radius: 4px; background: #F29441; text-decoration: none; transition: background .2s var(--ease-editorial); }
#site-nav .nav-links li.cta a:hover, #site-nav .nav-links a.cta:hover { background: #E07A2A; color: #12100E; text-decoration: none; }
#nav-burger { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; padding: 11px; border-radius: 6px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
#nav-burger .bar { display: block; width: 22px; height: 2px; background: #12100E; border-radius: 2px; transition: transform .26s var(--ease-editorial), opacity .2s; }
#nav-burger.is-open .bar1 { transform: translateY(7px) rotate(45deg); }
#nav-burger.is-open .bar2 { opacity: 0; }
#nav-burger.is-open .bar3 { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 820px) {
  #nav-burger { display: flex; }
  #site-nav .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: rgba(250,246,238,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid #E6DDCB; padding: 8px clamp(20px,5vw,64px) 22px; box-shadow: 0 16px 30px rgba(26,20,10,.08); }
  #site-nav .nav-links.is-open { display: flex; }
  #site-nav .nav-links a { padding: 14px 4px; font-size: 17px; }
}
#site-footer { padding: 32px clamp(20px,5vw,64px) 44px; background: #12100E; }
#site-footer .inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
#site-footer .footer-phrase { margin: 0; font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.55; color: #A99878; max-width: 60ch; }
#site-footer .footer-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
#site-footer .brand { display: flex; align-items: center; gap: 11px; }
#site-footer .brand img { width: 28px; height: 28px; border-radius: 6px; display: block; }
#site-footer .brand span { font-family: var(--mono); font-size: 12px; color: #CDBFA5; }
#site-footer nav { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
#site-footer nav .footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
#site-footer nav a,
#site-footer nav .footer-links li a { font-family: var(--sans); font-size: 13px; color: #A99878; text-decoration: none; }
#site-footer nav a:hover,
#site-footer nav .footer-links li a:hover { color: #F29441; }
#site-footer .footer-social { display: flex; align-items: center; gap: 14px; }
#site-footer .footer-social a { display: flex; color: #A99878; transition: color .2s; }
#site-footer .footer-social a:hover { color: #F29441; }

/* Reveal-on-scroll (added by theme.js via .is-visible) */
.cc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-editorial), transform .8s var(--ease-editorial); }
.cc-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .cc-reveal { opacity: 1; transform: none; } }

/* ============================================================
   COMUNIDADE — classes extraídas dos estilos inline
   Adicionado em: 2026-06
   Não remove nem altera nada acima. Apenas novos seletores.
   ============================================================ */

/* ----------------------------------------------------------
   Utilitários de seção (substituem os style="" repetidos nos
   blocos Hero, Espelho, Tese, Escada, Canais, Provas, FAQ, CTA)
   ---------------------------------------------------------- */

/* Eyebrow de seção — já existe .eyebrow no DS, mas a cor azul
   é específica da Comunidade; sobrescreve só a cor. */
#cs-root .cs-eyebrow {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: var(--tr-wide);
  text-transform: lowercase;
  color: var(--accent-cobalt);   /* #2E4A8A */
  margin-bottom: 16px;
}

/* Heading de seção h2 — padrão da página Comunidade */
#cs-root .cs-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 44px;
  max-width: 24ch;
  text-wrap: balance;
}

/* Heading de seção h3 — usado no Bloco Canais / Blog */
#cs-root .cs-h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

/* Parágrafo de corpo padrão na página */
#cs-root .cs-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.6;
  color: #3B4254;
  margin: 0;
  max-width: 58ch;
  text-wrap: pretty;
}

/* Lead italic (hero e fim de bloco) */
#cs-root .cs-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: #3B4254;
  margin: 0 auto 32px;
  max-width: 52ch;
  text-wrap: pretty;
}

/* Padding de seção padrão */
#cs-root .cs-section {
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 64px);
  border-top: 1px solid #CDD5E3;
}

/* Seção com fundo levemente diferente (alterna com a padrão) */
#cs-root .cs-section--alt {
  background: #F2F5FA;
}

/* Container interno de seção */
#cs-root .cs-wrap {
  max-width: 880px;
  margin: 0 auto;
}

#cs-root .cs-wrap--wide {
  max-width: 1080px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   Botões e CTAs
   ---------------------------------------------------------- */

/* Botão primário (ink/escuro) — hero "Assine a newsletter" */
#cs-root .cs-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--warm-05);               /* #FAF6EE */
  background: var(--ink);              /* #12100E */
  padding: 15px 26px;
  border-radius: var(--r-2);           /* 4px */
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-editorial);
}
#cs-root .cs-btn:hover {
  background: var(--accent-cobalt);    /* #2E4A8A */
  color: var(--warm-05);
  text-decoration: none;
}

/* CTA ghost (link sublinhado laranja) — hero "Conhecer o método" */
#cs-root .cs-btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ma-orange-500);   /* #F29441 */
  padding-bottom: 3px;
  white-space: nowrap;
  transition: border-color var(--dur-2) var(--ease-editorial),
              color var(--dur-2) var(--ease-editorial);
}
#cs-root .cs-btn-ghost:hover {
  border-bottom-color: var(--accent-cobalt);       /* #2E4A8A */
  color: var(--ink);
  text-decoration: none;
}

/* ----------------------------------------------------------
   Links dentro dos cards de canal — reset da borda do browser
   (corrige o box preto visível nas screenshots)
   ---------------------------------------------------------- */
.cs-channel a {
  outline: none;
  /* mantém o underline decorativo laranja definido inline;
     remove apenas o outline/box indesejado do browser */
}
.cs-channel a:focus-visible {
  outline: 2px solid var(--ma-orange-500);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Link "Ver todos os artigos" — mesmo padrão do cs-btn-ghost */
#cs-root .cs-link-underline {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ma-orange-500);
  padding-bottom: 3px;
  white-space: nowrap;
  transition: border-color var(--dur-2) var(--ease-editorial);
}
#cs-root .cs-link-underline:hover {
  border-bottom-color: var(--accent-cobalt);
  text-decoration: none;
}

/* ----------------------------------------------------------
   Meta mono (substitui font-family JetBrains inline repetido)
   ---------------------------------------------------------- */
#cs-root .cs-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #5C6679;
}

/* ----------------------------------------------------------
   Bloco de newsletter form (CTA final)
   ---------------------------------------------------------- */
.cs-nlform {
  display: flex;
  gap: 10px;
}
.cs-nlform input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--warm-00);          /* #FFFDF8 */
  border: 1px solid rgba(18,16,14,0.25);
  border-radius: var(--r-2);
  padding: 15px 18px;
  outline-offset: 2px;
  transition: border-color var(--dur-2) var(--ease-editorial),
              box-shadow var(--dur-2) var(--ease-editorial);
}
.cs-nlform input[type="email"]:focus {
  border-color: var(--ma-orange-500);
  box-shadow: 0 0 0 3px rgba(242,148,65,.18);
  outline: none;
}
.cs-nlform button[type="submit"] {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--warm-05);
  background: var(--ink);
  border: 0;
  border-radius: var(--r-2);
  padding: 15px 26px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-2) var(--ease-editorial);
}
.cs-nlform button[type="submit"]:hover {
  background: var(--warm-70);          /* #3B3326 */
}
@media (max-width: 560px) {
  .cs-nlform { flex-direction: column; }
}

/* ----------------------------------------------------------
   Accordion FAQ — abre/fecha via JS (data-acc-*)
   ---------------------------------------------------------- */
[data-acc-panel] {
  overflow: hidden;
  transition: height var(--dur-3) var(--ease-editorial),
              opacity var(--dur-3) var(--ease-editorial);
}
/* Estado fechado já vem como height:0; opacity:0 via inline.
   Estado aberto é controlado pelo JS — sem estilo extra necessário. */
[data-acc-trigger]:hover {
  background: #EEF2FA;
}
[data-acc-trigger]:focus-visible {
  outline: 2px solid var(--ma-orange-500);
  outline-offset: -2px;
}

/* ----------------------------------------------------------
   Responsivo geral — página comunidade
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  #cs-root .cs-h2   { font-size: clamp(26px, 7vw, 36px); }
  #cs-root .cs-lead { font-size: clamp(16px, 4.5vw, 18px); }
}


/* ============================================================
   COMUNIDADE — classes adicionais (patch 2026-06 v2)
   Complementa o bloco anterior. Não altera nada acima.
   ============================================================ */

/* ----------------------------------------------------------
   Bloco Provas — linha de timeline
   ---------------------------------------------------------- */
.cs-proof-row {
  display: grid;
  grid-template-columns: clamp(88px, 12vw, 130px) 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid #CDD5E3;
}
.cs-proof-row--last {
  border-bottom: 1px solid #CDD5E3;
}
.cs-proof-year {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-top: 4px;
}
@media (max-width: 480px) {
  .cs-proof-row { grid-template-columns: 1fr; gap: 6px; }
  .cs-proof-year { font-size: 12px; }
}

/* ----------------------------------------------------------
   Tag de categoria dos posts do blog
   (substitui os div com font-family inline dentro de .cs-post-body)
   ---------------------------------------------------------- */
.cs-post-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent-cobalt);   /* #2E4A8A */
  margin-bottom: 10px;
  text-transform: lowercase;
}

/* ----------------------------------------------------------
   Accordion FAQ — classes para os elementos internos
   (substitui os style="" inline dos botões e textos)
   ---------------------------------------------------------- */
.cs-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background var(--dur-2) var(--ease-editorial);
}
.cs-acc-trigger:hover {
  background: #EEF2FA;
}
.cs-acc-trigger:focus-visible {
  outline: 2px solid var(--ma-orange-500);
  outline-offset: -2px;
}
.cs-acc-question {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.3;
  color: var(--ink);
}
.cs-acc-sign {
  font-size: 24px;
  color: var(--accent-cobalt);
  flex: 0 0 auto;
  transition: transform var(--dur-2) var(--ease-editorial);
}
.cs-acc-body {
  padding: 0 4px 24px;
}
.cs-acc-answer {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: #3B3326;
  margin: 0;
  max-width: 64ch;
}
/* link dentro da resposta do FAQ */
.cs-acc-answer a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ma-orange-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color var(--dur-2), text-decoration-color var(--dur-2);
}
.cs-acc-answer a:hover {
  color: var(--ma-orange-700);
  text-decoration-color: var(--ma-orange-700);
}