/* seuConsumo Blog Theme */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:        #1C2D5A;
    --teal:        #00A79D;
    --orange:      #F47521;
    --blue-light:  #BBDCEE;
    --white:       #FFFFFF;
    --gray:        #F4F6FA;
    --text:        #2C2C2C;
    --text-light:  #6B7280;
    --line:        #E8EDF5;
    --line-2:      #D8DDE8;
    --w:           1240px;          /* max content width  */
    --px:          clamp(20px, 5vw, 64px); /* side padding       */
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--gray); line-height: 1.6; }
  a    { color: inherit; text-decoration: none; }

  /* ── utilidade: centra conteúdo ── */
  .inner {
    width: 100%; max-width: var(--w);
    margin-left: auto; margin-right: auto;
    padding-left: var(--px); padding-right: var(--px);
  }

  /* ═══════════════════════════════════════════
     TOPBAR
  ═══════════════════════════════════════════ */
  .topbar { position: sticky; top: 0; z-index: 200; background: var(--navy); height: 64px; }
  .topbar .inner {
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
  }
  .topbar-logo img  { height: 34px; width: auto; display: block; }
  .topbar-right     { display: flex; align-items: center; gap: 18px; }
  .topbar-link      { color: rgba(255,255,255,.72); font-size: 13.5px; transition: color .2s; white-space: nowrap; }
  .topbar-link:hover{ color: var(--white); }
  .topbar-cta {
    background: var(--teal); color: var(--white); padding: 8px 18px;
    border-radius: 4px; font-weight: 700; font-size: 13px; transition: background .2s; white-space: nowrap;
  }
  .topbar-cta:hover { background: #009088; }

  /* hambúrguer — visível só no mobile */
  .nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 40px; height: 40px;
    background: none; border: none; cursor: pointer; padding: 8px; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 1px; transition: all .25s;
  }
  /* estado aberto — X */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* overlay escuro */
  .nav-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.55); z-index: 300;
    opacity: 0; transition: opacity .3s;
  }
  .nav-overlay.active { display: block; opacity: 1; }

  /* drawer lateral */
  .nav-drawer {
    position: fixed; top: 0; right: 0;
    width: min(300px, 86vw); height: 100dvh;
    background: var(--white); z-index: 400;
    transform: translateX(100%); transition: transform .3s ease;
    display: flex; flex-direction: column;
    box-shadow: -4px 0 28px rgba(0,0,0,.18);
    overflow-y: auto;
  }
  .nav-drawer.open { transform: translateX(0); }

  .drawer-head {
    background: var(--navy); padding: 0 20px;
    height: 64px; display: flex; align-items: center; justify-content: space-between;
    flex-shrink: 0;
  }
  .drawer-head img { height: 30px; }
  .drawer-close {
    background: none; border: none; color: var(--white);
    font-size: 28px; line-height: 1; cursor: pointer; padding: 4px 6px;
  }

  .drawer-nav { flex: 1; padding: 8px 0; }
  .drawer-nav a {
    display: block; padding: 15px 24px;
    font-size: 15.5px; font-weight: 500; color: var(--navy);
    border-bottom: 1px solid var(--line); transition: color .2s, background .2s;
  }
  .drawer-nav a:hover { color: var(--teal); background: var(--gray); }
  .drawer-nav a.drawer-cta {
    margin: 20px 24px 0; border-bottom: none; border-radius: 6px;
    background: var(--teal); color: var(--white); text-align: center;
    font-weight: 700; padding: 13px 20px;
  }
  .drawer-nav a.drawer-cta:hover { background: #009088; }

  .drawer-footer {
    padding: 20px 24px; border-top: 1px solid var(--line);
    font-size: 12px; color: var(--text-light); flex-shrink: 0;
  }

  /* ═══════════════════════════════════════════
     HERO — texto centralizado
  ═══════════════════════════════════════════ */
  .blog-hero {
    background: var(--navy);
    padding: 72px 0 64px;
    position: relative; overflow: hidden;
  }
  .blog-hero::before {
    content:''; position:absolute; top:-200px; right:-140px;
    width:560px; height:560px; border-radius:50%;
    background: radial-gradient(circle, rgba(0,167,157,.15) 0%, transparent 70%);
  }
  .blog-hero::after {
    content:''; position:absolute; bottom:-120px; left:26%;
    width:340px; height:340px; border-radius:50%;
    background: radial-gradient(circle, rgba(244,117,33,.08) 0%, transparent 70%);
  }
  .blog-hero .inner { position: relative; z-index: 1; text-align: center; }

  .eyebrow {
    font-size: 12px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; color: var(--teal);
  }
  .blog-hero .eyebrow { margin-bottom: 18px; display: block; }

  .blog-hero h1 {
    font-size: clamp(34px, 5vw, 60px); font-weight: 900;
    color: var(--white); line-height: 1.06; letter-spacing: -1.4px;
    max-width: 760px; margin: 0 auto 18px;
  }
  .blog-hero h1 span { color: var(--teal); }

  .blog-hero p {
    font-size: 17px; font-weight: 300;
    color: rgba(255,255,255,.70); max-width: 600px;
    line-height: 1.7; margin: 0 auto;
  }

  /* ═══════════════════════════════════════════
     LAYOUT 2 COLUNAS (conteúdo + sidebar)
  ═══════════════════════════════════════════ */
  .layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 40px; align-items: start;
    padding-top: 52px; padding-bottom: 72px;
  }

  /* ─── labels de seção ─── */
  .section-label { margin-bottom: 22px; }
  .section-label h2 { font-size: 22px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; }
  .section-label .eyebrow { display: block; margin-bottom: 8px; }

  /* ═══════════════════════════════════════════
     THUMB (placeholder de marca)
  ═══════════════════════════════════════════ */
  .thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #16305e 0%, #12507a 55%, #0e7f78 100%);
  }
  .thumb .ring { position: absolute; top: -38px; right: -38px; width: 170px; height: 170px; }
  .thumb .cat-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--white); background: rgba(0,0,0,.30); padding: 5px 11px; border-radius: 4px;
  }

  /* ═══════════════════════════════════════════
     POST EM DESTAQUE
  ═══════════════════════════════════════════ */
  .featured {
    display: grid; grid-template-columns: 1.05fr 1fr;
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden; margin-bottom: 40px;
    transition: box-shadow .25s;
  }
  .featured:hover { box-shadow: 0 18px 46px rgba(28,45,90,.12); }
  .featured .thumb { min-height: 300px; }
  .featured .ring  { top: -50px; right: -50px; width: 260px; height: 260px; }

  .featured-body {
    padding: clamp(24px,3vw,42px);
    display: flex; flex-direction: column; justify-content: center;
  }
  .featured-body .eyebrow { margin-bottom: 14px; display: block; }
  .featured-body h3 {
    font-size: clamp(21px,2.3vw,28px); font-weight: 900; color: var(--navy);
    line-height: 1.18; letter-spacing: -.5px; margin-bottom: 12px;
  }
  .featured-body > p {
    font-size: 15px; color: var(--text-light); font-weight: 300;
    line-height: 1.7; margin-bottom: 18px;
  }

  .post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-light); }
  .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }

  .read-link {
    font-size: 12.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--teal);
    display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; margin-top: 18px;
  }
  .read-link:hover { gap: 12px; }

  /* ═══════════════════════════════════════════
     GRID DE POSTS
  ═══════════════════════════════════════════ */
  .posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

  .post-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, background .25s ease;
  }
  .post-card .thumb  { height: 164px; }
  .post-card-body    { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .card-cat          { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }

  .post-card h4 {
    font-size: 16.5px; font-weight: 700; color: var(--navy);
    line-height: 1.32; letter-spacing: -.3px; transition: color .25s;
  }
  .post-card .excerpt {
    font-size: 13.5px; color: var(--text-light);
    font-weight: 300; line-height: 1.6; flex: 1; transition: color .25s;
  }
  .post-card .post-meta { margin-top: 4px; transition: color .25s; }
  .post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28,45,90,.14); background: var(--navy); }
  .post-card:hover h4 { color: var(--white); }
  .post-card:hover .excerpt { color: rgba(255,255,255,.72); }
  .post-card:hover .post-meta { color: rgba(255,255,255,.55); }
  .post-card:hover .post-meta .dot { background: rgba(255,255,255,.3); }

  .load-more-wrap { margin-top: 36px; display: flex; justify-content: center; }
  .btn-outline {
    border: 1.5px solid var(--line-2); color: var(--navy); background: var(--white);
    padding: 13px 30px; border-radius: 6px; font-size: 13.5px; font-weight: 700;
    letter-spacing: .03em; transition: all .2s;
  }
  .btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

  /* ═══════════════════════════════════════════
     SIDEBAR
  ═══════════════════════════════════════════ */
  .sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }

  .widget {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 22px;
  }
  .widget-title {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--navy);
    margin-bottom: 16px; padding-bottom: 10px; position: relative;
  }
  .widget-title::after {
    content:''; position:absolute; left:0; bottom:0;
    width:26px; height:3px; background: var(--teal); border-radius:2px;
  }

  /* busca */
  .widget-search { display: flex; gap: 8px; }
  .widget-search input {
    flex: 1; min-width: 0; border: 1.5px solid var(--line-2);
    border-radius: 6px; padding: 10px 13px; font-family: inherit;
    font-size: 13.5px; outline: none; transition: border-color .2s;
  }
  .widget-search input:focus { border-color: var(--teal); }
  .widget-search button {
    border: none; background: var(--teal); color: var(--white);
    border-radius: 6px; padding: 0 15px; font-family: inherit;
    font-weight: 700; font-size: 13px; cursor: pointer; transition: background .2s;
  }
  .widget-search button:hover { background: #009088; }

  /* categorias */
  .cat-list { list-style: none; }
  .cat-list li { border-bottom: 1px solid var(--line); }
  .cat-list li:last-child { border-bottom: none; }
  .cat-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 0; font-size: 14px; font-weight: 500; color: var(--navy);
    transition: color .2s, padding-left .2s;
  }
  .cat-list a:hover { color: var(--teal); padding-left: 4px; }
  .cat-list a.is-active { color: var(--teal); }
  .cat-count {
    font-size: 11.5px; font-weight: 700; color: var(--text-light);
    background: var(--gray); border-radius: 999px; padding: 2px 9px;
  }
  .cat-list a:hover .cat-count,
  .cat-list a.is-active .cat-count { background: rgba(0,167,157,.12); color: var(--teal); }

  /* mais lidos */
  .mini-post  { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .mini-post:first-child { padding-top: 0; }
  .mini-post:last-child  { border-bottom: none; padding-bottom: 0; }
  .mini-thumb {
    width: 58px; height: 58px; border-radius: 8px; flex-shrink: 0;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #16305e 0%, #12507a 60%, #0e7f78 100%);
  }
  .mini-thumb .ring { position: absolute; top: -14px; right: -14px; width: 58px; height: 58px; }
  .mini-body h5 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.32; transition: color .2s; }
  .mini-post:hover h5 { color: var(--teal); }
  .mini-body span { font-size: 11.5px; color: var(--text-light); display: block; margin-top: 4px; }

  /* newsletter widget */
  .widget-news { background: var(--navy); border-color: var(--navy); position: relative; overflow: hidden; }
  .widget-news::before {
    content:''; position:absolute; top:-80px; right:-60px;
    width:220px; height:220px; border-radius:50%;
    background: radial-gradient(circle, rgba(0,167,157,.22) 0%, transparent 70%);
  }
  .widget-news > * { position: relative; z-index: 1; }
  .widget-news .widget-title { color: var(--white); }
  .widget-news p { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .widget-news input {
    width:100%; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
    color: var(--white); border-radius:6px; padding:11px 13px;
    font-family:inherit; font-size:13.5px; outline:none; margin-bottom:9px; transition: border-color .2s;
  }
  .widget-news input::placeholder { color: rgba(255,255,255,.45); }
  .widget-news input:focus { border-color: var(--teal); }
  .widget-news button {
    width:100%; border:none; background:var(--teal); color:var(--white);
    border-radius:6px; padding:11px; font-family:inherit;
    font-weight:700; font-size:13.5px; cursor:pointer; transition: background .2s;
  }
  .widget-news button:hover { background:#009088; }

  /* ═══════════════════════════════════════════
     CTA FINAL
  ═══════════════════════════════════════════ */
  .quote-cta {
    background: var(--navy);
    padding: 72px 0;
    text-align: center; position: relative; overflow: hidden;
  }
  .quote-cta::before {
    content:''; position:absolute; top:-120px; right:8%;
    width:400px; height:400px; border-radius:50%;
    background: radial-gradient(circle, rgba(244,117,33,.12) 0%, transparent 70%);
  }
  .quote-cta .inner { position: relative; z-index: 1; }
  .quote-cta .eyebrow { display: block; margin-bottom: 14px; }
  .quote-cta h2 {
    font-size: clamp(26px,3.2vw,40px); font-weight:900; color:var(--white);
    letter-spacing:-1px; line-height:1.1; max-width:580px; margin:0 auto 14px;
  }
  .quote-cta h2 span { color: var(--teal); }
  .quote-cta p {
    font-size:16px; color:rgba(255,255,255,.65); font-weight:300;
    max-width:480px; margin:0 auto 24px; line-height:1.65;
  }
  .btn-orange {
    display:inline-block; background:var(--orange); color:var(--white);
    padding:14px 32px; border-radius:6px; font-size:14.5px;
    font-weight:700; letter-spacing:.03em; transition:background .2s;
  }
  .btn-orange:hover { background:#d9661a; }

  /* ═══════════════════════════════════════════
     FOOTER SLIM — centralizado
  ═══════════════════════════════════════════ */
  .foot { background: #16264c; padding: 28px 0; }
  .foot .inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
  }
  .foot img  { height: 28px; display: block; }
  .foot-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .foot-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
  .foot-links a:hover { color: var(--white); }
  .foot-copy {
    font-size: 12px; color: rgba(255,255,255,.30);
    text-align: center; padding: 14px var(--px) 0;
    border-top: 1px solid rgba(255,255,255,.08); margin-top: 18px;
  }

  /* ═══════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════ */
  body.drawer-open { overflow: hidden; }

  /* tablet */
  @media (max-width: 980px) {
    .layout { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 56px; }
    .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    .widget-news { grid-column: 1 / -1; }
  }

  @media (max-width: 720px) {
    .featured { grid-template-columns: 1fr; }
    .featured .thumb { min-height: 200px; }
  }

  @media (max-width: 640px) {
    .sidebar { grid-template-columns: 1fr; }
    .blog-hero { padding: 52px 0 44px; }
    .blog-hero h1 { font-size: clamp(28px, 8vw, 40px); }
    .blog-hero p  { font-size: 15px; }
  }

  /* mobile: troca topbar-right por hambúrguer */
  @media (max-width: 560px) {
    .posts-grid { grid-template-columns: 1fr; }
    /* esconde links inline, mostra hambúrguer */
    .topbar-link,
    .topbar-cta  { display: none; }
    .nav-toggle  { display: flex; }
    /* footer empilhado */
    .foot .inner { flex-direction: column; align-items: center; text-align: center; }
    .foot-links  { justify-content: center; }
  }

/* Archive */
/* BREADCRUMB (dentro do archive header)
  ═══════════════════════════════════ */
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap; margin-bottom: 18px;
  }
  .breadcrumb a, .breadcrumb span {
    font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s;
  }
  .breadcrumb a:hover { color: var(--teal); }
  .breadcrumb .sep { color: rgba(255,255,255,.3); font-size: 11px; }
  .breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 500; }

  /* ═══════════════════════════════════
     ARCHIVE HEADER
  ═══════════════════════════════════ */
  .archive-header {
    background: var(--navy); padding: 52px 0 48px; position: relative; overflow: hidden;
  }
  .archive-header::before {
    content:''; position:absolute; top:-160px; right:-100px;
    width:440px; height:440px; border-radius:50%;
    background: radial-gradient(circle, rgba(0,167,157,.15) 0%, transparent 70%);
  }
  .archive-header::after {
    content:''; position:absolute; bottom:-100px; left:20%;
    width:280px; height:280px; border-radius:50%;
    background: radial-gradient(circle, rgba(244,117,33,.08) 0%, transparent 70%);
  }
  .archive-header .inner { position: relative; z-index: 1; }

  .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); }

  .archive-header .eyebrow { display: block; margin-bottom: 14px; }

  .archive-header h1 {
    font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white);
    letter-spacing: -1px; line-height: 1.1; margin-bottom: 12px;
  }
  .archive-header p {
    font-size: 16px; font-weight: 300; color: rgba(255,255,255,.70);
    max-width: 560px; line-height: 1.65;
  }
  .archive-meta {
    display: flex; align-items: center; gap: 20px; margin-top: 22px; flex-wrap: wrap;
  }
  .archive-count {
    font-size: 13px; color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08); padding: 6px 14px; border-radius: 999px;
  }
  /* pills de categorias no header — scroll horizontal no mobile */
  .archive-cats {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .cat-pill {
    font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7);
    transition: all .2s; white-space: nowrap;
  }
  .cat-pill:hover { border-color: var(--teal); color: var(--teal); }
  .cat-pill.is-active { background: var(--teal); border-color: var(--teal); color: var(--white); }

  /* ═══════════════════════════════════
     LAYOUT 2 COLUNAS
  ═══════════════════════════════════ */
  .layout {
    display: grid; grid-template-columns: minmax(0,1fr) 300px;
    gap: 40px; align-items: start;
    padding-top: 48px; padding-bottom: 72px;
  }

  /* ─── ordenação / resultados ─── */
  .archive-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
  }
  .archive-bar-label { font-size: 14px; color: var(--text-light); }
  .archive-bar-label strong { color: var(--navy); font-weight: 700; }

  .sort-select {
    border: 1.5px solid var(--line-2); background: var(--white); border-radius: 6px;
    padding: 8px 14px; font-family: inherit; font-size: 13.5px; color: var(--navy);
    cursor: pointer; outline: none; transition: border-color .2s;
  }
  .sort-select:focus { border-color: var(--teal); }

  /* ═══════════════════════════════════
     THUMB
  ═══════════════════════════════════ */
  .thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #16305e 0%, #12507a 55%, #0e7f78 100%);
  }
  .thumb .ring { position: absolute; top: -38px; right: -38px; width: 170px; height: 170px; }
  .thumb .cat-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--white); background: rgba(0,0,0,.30); padding: 5px 11px; border-radius: 4px;
  }

  /* ═══════════════════════════════════
     POST GRID
  ═══════════════════════════════════ */
  .posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }

  .post-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, background .25s ease;
  }
  .post-card .thumb  { height: 164px; }
  .post-card-body    { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .card-cat          { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
  .post-card h4 {
    font-size: 16.5px; font-weight: 700; color: var(--navy);
    line-height: 1.32; letter-spacing: -.3px; transition: color .25s;
  }
  .post-card .excerpt {
    font-size: 13.5px; color: var(--text-light);
    font-weight: 300; line-height: 1.6; flex: 1; transition: color .25s;
  }
  .post-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-light); }
  .post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
  .post-card .post-meta { margin-top: 4px; transition: color .25s; }
  .post-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(28,45,90,.14); background: var(--navy); }
  .post-card:hover h4 { color: var(--white); }
  .post-card:hover .excerpt { color: rgba(255,255,255,.72); }
  .post-card:hover .post-meta { color: rgba(255,255,255,.55); }
  .post-card:hover .post-meta .dot { background: rgba(255,255,255,.3); }

  /* ═══════════════════════════════════
     PAGINAÇÃO
  ═══════════════════════════════════ */
  .pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 48px; flex-wrap: wrap;
  }
  .page-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    border: 1.5px solid var(--line-2); background: var(--white); color: var(--navy);
    transition: all .2s; cursor: pointer;
  }
  .page-btn:hover { border-color: var(--teal); color: var(--teal); }
  .page-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); cursor: default; }
  .page-btn.is-disabled { opacity: .38; pointer-events: none; }
  .page-sep { color: var(--text-light); font-size: 14px; padding: 0 4px; user-select: none; }

  /* ═══════════════════════════════════
     SIDEBAR
  ═══════════════════════════════════ */
  .sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }

  .widget { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
  .widget-title {
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; position: relative;
  }
  .widget-title::after {
    content:''; position:absolute; left:0; bottom:0;
    width:26px; height:3px; background: var(--teal); border-radius:2px;
  }

  .widget-search { display: flex; gap: 8px; }
  .widget-search input {
    flex: 1; min-width: 0; border: 1.5px solid var(--line-2); border-radius: 6px;
    padding: 10px 13px; font-family: inherit; font-size: 13.5px; outline: none; transition: border-color .2s;
  }
  .widget-search input:focus { border-color: var(--teal); }
  .widget-search button {
    border: none; background: var(--teal); color: var(--white); border-radius: 6px;
    padding: 0 15px; font-family: inherit; font-weight: 700; font-size: 13px; cursor: pointer; transition: background .2s;
  }
  .widget-search button:hover { background: #009088; }

  .cat-list { list-style: none; }
  .cat-list li { border-bottom: 1px solid var(--line); }
  .cat-list li:last-child { border-bottom: none; }
  .cat-list a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 0; font-size: 14px; font-weight: 500; color: var(--navy);
    transition: color .2s, padding-left .2s;
  }
  .cat-list a:hover { color: var(--teal); padding-left: 4px; }
  .cat-list a.is-active { color: var(--teal); }
  .cat-count {
    font-size: 11.5px; font-weight: 700; color: var(--text-light);
    background: var(--gray); border-radius: 999px; padding: 2px 9px;
  }
  .cat-list a:hover .cat-count,
  .cat-list a.is-active .cat-count { background: rgba(0,167,157,.12); color: var(--teal); }

  .mini-post  { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .mini-post:first-child { padding-top: 0; }
  .mini-post:last-child  { border-bottom: none; padding-bottom: 0; }
  .mini-thumb {
    width: 58px; height: 58px; border-radius: 8px; flex-shrink: 0;
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #16305e 0%, #12507a 60%, #0e7f78 100%);
  }
  .mini-thumb .ring { position: absolute; top: -14px; right: -14px; width: 58px; height: 58px; }
  .mini-body h5 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.32; transition: color .2s; }
  .mini-post:hover h5 { color: var(--teal); }
  .mini-body span { font-size: 11.5px; color: var(--text-light); display: block; margin-top: 4px; }

  .widget-news { background: var(--navy); border-color: var(--navy); position: relative; overflow: hidden; }
  .widget-news::before { content:''; position:absolute; top:-80px; right:-60px; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle, rgba(0,167,157,.22) 0%, transparent 70%); }
  .widget-news > * { position: relative; z-index: 1; }
  .widget-news .widget-title { color: var(--white); }
  .widget-news p { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .widget-news input {
    width:100%; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06);
    color: var(--white); border-radius:6px; padding:11px 13px;
    font-family:inherit; font-size:13.5px; outline:none; margin-bottom:9px; transition: border-color .2s;
  }
  .widget-news input::placeholder { color: rgba(255,255,255,.45); }
  .widget-news input:focus { border-color: var(--teal); }
  .widget-news button {
    width:100%; border:none; background:var(--teal); color:var(--white);
    border-radius:6px; padding:11px; font-family:inherit; font-weight:700; font-size:13.5px; cursor:pointer; transition: background .2s;
  }
  .widget-news button:hover { background:#009088; }

  /* ═══════════════════════════════════
     CTA FINAL
  ═══════════════════════════════════ */
  .quote-cta { background: var(--navy); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
  .quote-cta::before { content:''; position:absolute; top:-120px; right:8%; width:400px; height:400px; border-radius:50%; background: radial-gradient(circle, rgba(244,117,33,.12) 0%, transparent 70%); }
  .quote-cta .inner { position: relative; z-index: 1; }
  .quote-cta .eyebrow { display: block; margin-bottom: 14px; }
  .quote-cta h2 { font-size: clamp(26px,3.2vw,40px); font-weight:900; color:var(--white); letter-spacing:-1px; line-height:1.1; max-width:580px; margin:0 auto 14px; }
  .quote-cta h2 span { color: var(--teal); }
  .quote-cta p { font-size:16px; color:rgba(255,255,255,.65); font-weight:300; max-width:480px; margin:0 auto 24px; line-height:1.65; }
  .btn-orange { display:inline-block; background:var(--orange); color:var(--white); padding:14px 32px; border-radius:6px; font-size:14.5px; font-weight:700; letter-spacing:.03em; transition:background .2s; }
  .btn-orange:hover { background:#d9661a; }

  /* ═══════════════════════════════════
     FOOTER SLIM
  ═══════════════════════════════════ */
  .foot { background: #16264c; padding: 28px 0; }
  .foot .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot img  { height: 28px; display: block; }
  .foot-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .foot-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
  .foot-links a:hover { color: var(--white); }
  .foot-copy { font-size: 12px; color: rgba(255,255,255,.30); text-align: center; padding: 14px var(--px) 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 18px; }

  /* ═══════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════ */
  @media (max-width: 980px) {
    .layout { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 56px; }
    .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    .widget-news { grid-column: 1 / -1; }
  }
  @media (max-width: 720px) {
    .archive-cats { gap: 6px; }
  }
  @media (max-width: 640px) {
    .sidebar { grid-template-columns: 1fr; }
    .archive-header { padding: 40px 0 36px; }
    .archive-header h1 { font-size: clamp(26px, 7vw, 36px); }
  }
  @media (max-width: 560px) {
    .posts-grid { grid-template-columns: 1fr; }
    .topbar-link, .topbar-cta { display: none; }
    .nav-toggle { display: flex; }
    .archive-bar { flex-direction: column; align-items: flex-start; }
    .foot .inner { flex-direction: column; align-items: center; text-align: center; }
    .foot-links { justify-content: center; }
    .pagination { gap: 4px; }
    .page-btn { min-width: 36px; height: 36px; font-size: 13px; }
  }

/* Single */
/* POST HEADER (navy, breadcrumb incluso)
  ══════════════════════════════════════ */
  .post-header { background: var(--navy); padding: 48px 0 52px; position: relative; overflow: hidden; }
  .post-header::before { content:''; position:absolute; top:-180px; right:-120px; width:500px; height:500px; border-radius:50%; background: radial-gradient(circle, rgba(0,167,157,.14) 0%, transparent 70%); }
  .post-header::after  { content:''; position:absolute; bottom:-100px; left:18%;  width:300px; height:300px; border-radius:50%; background: radial-gradient(circle, rgba(244,117,33,.08) 0%, transparent 70%); }
  .post-header .inner  { position: relative; z-index: 1; max-width: 860px; }

  /* breadcrumb no topo do header */
  .breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
  .breadcrumb a, .breadcrumb span { font-size: 13px; color: rgba(255,255,255,.50); transition: color .2s; }
  .breadcrumb a:hover { color: var(--teal); }
  .breadcrumb .sep { color: rgba(255,255,255,.25); font-size: 11px; }
  .breadcrumb .current { color: rgba(255,255,255,.80); font-weight: 500; }

  .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); }
  .post-header .eyebrow { display: block; margin-bottom: 16px; }

  .post-header h1 {
    font-size: clamp(28px, 4.2vw, 50px); font-weight: 900; color: var(--white);
    line-height: 1.1; letter-spacing: -1.2px; margin-bottom: 20px; max-width: 780px;
  }

  .post-header-meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 13.5px; color: rgba(255,255,255,.60);
  }
  .post-header-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.25); }
  .post-header-meta .tag {
    background: rgba(255,255,255,.10); color: rgba(255,255,255,.80);
    padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.15); transition: all .2s;
  }
  .post-header-meta .tag:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

  /* ══════════════════════════════════════
     THUMB HERO DO POST
  ══════════════════════════════════════ */
  .post-thumb-wrap { background: var(--navy); padding-bottom: 48px; }
  .post-thumb {
    width: 100%; max-width: 860px; margin: 0 auto;
    position: relative; overflow: hidden; border-radius: 12px;
    background: linear-gradient(135deg, #16305e 0%, #12507a 50%, #0e7f78 100%);
    height: clamp(200px, 30vw, 400px);
  }
  .post-thumb .ring-a { position:absolute; top:-60px; right:-60px; width:340px; height:340px; }
  .post-thumb .ring-b { position:absolute; bottom:-40px; left:-40px; width:220px; height:220px; opacity:.7; }
  .post-thumb-wrap .inner { padding-top: 0; padding-bottom: 0; }

  /* ══════════════════════════════════════
     LAYOUT: artigo + sidebar
  ══════════════════════════════════════ */
  .layout {
    display: grid; grid-template-columns: minmax(0,1fr) 300px;
    gap: 48px; align-items: start;
    padding-top: 52px; padding-bottom: 72px;
  }
  .layout > main { min-width: 0; }

  /* ══════════════════════════════════════
     PROGRESSO DE LEITURA
  ══════════════════════════════════════ */
  .progress-bar {
    position: fixed; top: 64px; left: 0; right: 0; height: 3px;
    background: rgba(0,0,0,.08); z-index: 190;
  }
  .progress-fill { height: 100%; width: 0%; background: var(--teal); transition: width .1s linear; }

  /* ══════════════════════════════════════
     ARTIGO
  ══════════════════════════════════════ */
  .article-wrap { background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; min-width: 0; }

  /* info do autor */
  .author-bar {
    display: flex; align-items: center; gap: 14px;
    padding: 20px 32px; border-bottom: 1px solid var(--line);
  }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: var(--white); letter-spacing: -.5px;
  }
  .author-info { display: flex; flex-direction: column; gap: 2px; }
  .author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
  .author-role { font-size: 12.5px; color: var(--text-light); }
  .share-btns { margin-left: auto; display: flex; gap: 8px; align-items: center; }
  .share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1.5px solid var(--line-2); border-radius: 6px;
    padding: 7px 13px; font-size: 12.5px; font-weight: 700; color: var(--navy);
    transition: all .2s; cursor: pointer; background: var(--white);
  }
  .share-btn:hover { border-color: var(--teal); color: var(--teal); }
  .share-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  /* corpo do artigo */
  .article-body {
    padding: 40px 40px 52px;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  /* tipografia editorial */
  .article-body p { font-size: 17px; font-weight: 300; color: var(--text); line-height: 1.82; margin-bottom: 24px; }
  .article-body p:last-child { margin-bottom: 0; }
  .article-body h2 { font-size: clamp(20px,2.2vw,26px); font-weight: 900; color: var(--navy); letter-spacing: -.5px; line-height: 1.2; margin: 48px 0 18px; padding-top: 48px; border-top: 1px solid var(--line); }
  .article-body h3 { font-size: 19px; font-weight: 700; color: var(--navy); letter-spacing: -.3px; margin: 32px 0 14px; }
  .article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 24px; }
  .article-body li { font-size: 17px; font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 8px; }
  .article-body strong { font-weight: 700; color: var(--navy); }
  .article-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; transition: opacity .2s; }
  .article-body a:hover { opacity: .75; }
  /* tabela: scroll horizontal para não vazar em telas pequenas */
  .article-body .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 28px 0; }
  .article-body table { width: 100%; border-collapse: collapse; min-width: 480px; font-size: 14.5px; }
  .article-body th { background: var(--navy); color: var(--white); font-weight: 700; padding: 12px 16px; text-align: left; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
  .article-body td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--text); font-weight: 300; }
  .article-body tr:last-child td { border-bottom: none; }
  .article-body tr:nth-child(even) td { background: var(--gray); }
  .callout {
    border-left: 4px solid var(--teal); background: rgba(0,167,157,.06);
    border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 32px 0;
  }
  .callout p { font-size: 16px; font-weight: 400; color: var(--navy); line-height: 1.7; margin-bottom: 0; }
  .callout strong { color: var(--teal); }

  /* caixa de atenção */
  .box-warning {
    border: 1.5px solid #FEE9D1; background: #FFF7F0;
    border-radius: 8px; padding: 18px 22px; margin: 28px 0;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .box-warning .icon { font-size: 20px; flex-shrink: 0; line-height: 1.5; }
  .box-warning p { font-size: 15px; font-weight: 400; color: #8B4513; margin-bottom: 0; line-height: 1.65; }

  /* tabela */
  .article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14.5px; }
  .article-body th { background: var(--navy); color: var(--white); font-weight: 700; padding: 12px 16px; text-align: left; font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; }
  .article-body td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--text); font-weight: 300; }
  .article-body tr:last-child td { border-bottom: none; }
  .article-body tr:nth-child(even) td { background: var(--gray); }

  /* tags do post */
  .article-tags { padding: 24px 32px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .article-tags span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
  .tag-link {
    font-size: 12.5px; font-weight: 700; padding: 5px 13px; border-radius: 999px;
    border: 1.5px solid var(--line-2); color: var(--navy); transition: all .2s;
  }
  .tag-link:hover { border-color: var(--teal); color: var(--teal); }

  /* ══════════════════════════════════════
     POSTS RELACIONADOS
  ══════════════════════════════════════ */
  .related { margin-top: 40px; }
  .related-title { font-size: 14px; font-weight: 900; color: var(--navy); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--teal); display: inline-block; }

  .related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

  .related-card {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, background .25s ease;
  }
  .related-card .thumb { height: 140px; position: relative; overflow: hidden; background: linear-gradient(135deg, #16305e 0%, #12507a 55%, #0e7f78 100%); }
  .related-card .ring { position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; }
  .related-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .related-card .card-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
  .related-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; transition: color .25s; }
  .related-card .post-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 8px; align-items: center; margin-top: auto; }
  .related-card .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
  .related-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(28,45,90,.13); background: var(--navy); }
  .related-card:hover h4 { color: var(--white); }
  .related-card:hover .post-meta { color: rgba(255,255,255,.55); }
  .related-card:hover .dot { background: rgba(255,255,255,.3); }

  /* ══════════════════════════════════════
     SIDEBAR
  ══════════════════════════════════════ */
  .sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }

  .widget { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
  .widget-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; position: relative; }
  .widget-title::after { content:''; position:absolute; left:0; bottom:0; width:26px; height:3px; background: var(--teal); border-radius:2px; }

  /* Índice do artigo */
  .toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
  .toc-list a {
    display: block; padding: 9px 12px; font-size: 13.5px; font-weight: 500; color: var(--navy);
    border-radius: 6px; transition: all .2s; border-left: 3px solid transparent; line-height: 1.4;
  }
  .toc-list a:hover { color: var(--teal); background: var(--gray); border-left-color: var(--teal); }
  .toc-list a.is-active { color: var(--teal); background: rgba(0,167,157,.07); border-left-color: var(--teal); font-weight: 700; }
  .toc-list .toc-sub a { padding-left: 22px; font-size: 13px; font-weight: 400; }

  /* busca */
  .widget-search { display: flex; gap: 8px; }
  .widget-search input { flex: 1; min-width: 0; border: 1.5px solid var(--line-2); border-radius: 6px; padding: 10px 13px; font-family: inherit; font-size: 13.5px; outline: none; transition: border-color .2s; }
  .widget-search input:focus { border-color: var(--teal); }
  .widget-search button { border: none; background: var(--teal); color: var(--white); border-radius: 6px; padding: 0 15px; font-family: inherit; font-weight: 700; font-size: 13px; cursor: pointer; transition: background .2s; }
  .widget-search button:hover { background: #009088; }

  /* categorias */
  .cat-list { list-style: none; }
  .cat-list li { border-bottom: 1px solid var(--line); }
  .cat-list li:last-child { border-bottom: none; }
  .cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; font-size: 14px; font-weight: 500; color: var(--navy); transition: color .2s, padding-left .2s; }
  .cat-list a:hover { color: var(--teal); padding-left: 4px; }
  .cat-list a.is-active { color: var(--teal); }
  .cat-count { font-size: 11.5px; font-weight: 700; color: var(--text-light); background: var(--gray); border-radius: 999px; padding: 2px 9px; }
  .cat-list a:hover .cat-count, .cat-list a.is-active .cat-count { background: rgba(0,167,157,.12); color: var(--teal); }

  /* mais lidos */
  .mini-post { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .mini-post:first-child { padding-top: 0; }
  .mini-post:last-child  { border-bottom: none; padding-bottom: 0; }
  .mini-thumb { width: 58px; height: 58px; border-radius: 8px; flex-shrink: 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #16305e 0%, #12507a 60%, #0e7f78 100%); }
  .mini-thumb .ring { position: absolute; top: -14px; right: -14px; width: 58px; height: 58px; }
  .mini-body h5 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.32; transition: color .2s; }
  .mini-post:hover h5 { color: var(--teal); }
  .mini-body span { font-size: 11.5px; color: var(--text-light); display: block; margin-top: 4px; }

  /* newsletter */
  .widget-news { background: var(--navy); border-color: var(--navy); position: relative; overflow: hidden; }
  .widget-news::before { content:''; position:absolute; top:-80px; right:-60px; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle, rgba(0,167,157,.22) 0%, transparent 70%); }
  .widget-news > * { position: relative; z-index: 1; }
  .widget-news .widget-title { color: var(--white); }
  .widget-news p { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .widget-news input { width:100%; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: var(--white); border-radius:6px; padding:11px 13px; font-family:inherit; font-size:13.5px; outline:none; margin-bottom:9px; transition: border-color .2s; }
  .widget-news input::placeholder { color: rgba(255,255,255,.45); }
  .widget-news input:focus { border-color: var(--teal); }
  .widget-news button { width:100%; border:none; background:var(--teal); color:var(--white); border-radius:6px; padding:11px; font-family:inherit; font-weight:700; font-size:13.5px; cursor:pointer; transition: background .2s; }
  .widget-news button:hover { background:#009088; }

  /* ══════════════════════════════════════
     CTA FINAL
  ══════════════════════════════════════ */
  .quote-cta { background: var(--navy); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
  .quote-cta::before { content:''; position:absolute; top:-120px; right:8%; width:400px; height:400px; border-radius:50%; background: radial-gradient(circle, rgba(244,117,33,.12) 0%, transparent 70%); }
  .quote-cta .inner { position: relative; z-index: 1; }
  .quote-cta .eyebrow { display: block; margin-bottom: 14px; }
  .quote-cta h2 { font-size: clamp(26px,3.2vw,40px); font-weight:900; color:var(--white); letter-spacing:-1px; line-height:1.1; max-width:580px; margin:0 auto 14px; }
  .quote-cta h2 span { color: var(--teal); }
  .quote-cta p { font-size:16px; color:rgba(255,255,255,.65); font-weight:300; max-width:480px; margin:0 auto 24px; line-height:1.65; }
  .btn-orange { display:inline-block; background:var(--orange); color:var(--white); padding:14px 32px; border-radius:6px; font-size:14.5px; font-weight:700; letter-spacing:.03em; transition:background .2s; }
  .btn-orange:hover { background:#d9661a; }

  /* ══════════════════════════════════════
     FOOTER SLIM
  ══════════════════════════════════════ */
  .foot { background: #16264c; padding: 28px 0; }
  .foot .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot img { height: 28px; display: block; }
  .foot-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .foot-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
  .foot-links a:hover { color: var(--white); }
  .foot-copy { font-size: 12px; color: rgba(255,255,255,.30); text-align: center; padding: 14px var(--px) 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 18px; }

  /* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */

  /* ── tablet (≤ 980px): sidebar desce, 2 colunas ── */
  @media (max-width: 980px) {
    .layout { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 56px; }
    .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    .widget-news { grid-column: 1 / -1; }
    .toc-widget  { order: -1; grid-column: 1 / -1; }
    .post-thumb-wrap { padding-bottom: 36px; }
  }

  /* ── mobile (≤ 640px) ── */
  @media (max-width: 640px) {

    /* sidebar: 1 coluna */
    .sidebar { grid-template-columns: 1fr; }

    /* post header */
    .post-header { padding: 32px 0 36px; }
    .breadcrumb .current {
      white-space: nowrap; overflow: hidden;
      text-overflow: ellipsis; max-width: 42vw;
    }

    /* thumb */
    .post-thumb-wrap { padding-bottom: 24px; }
    .post-thumb { height: clamp(160px, 46vw, 240px); border-radius: 8px; }

    /* author bar: empilha avatar+info em cima, share embaixo */
    .author-bar {
      flex-wrap: wrap; padding: 16px 18px; gap: 12px;
      align-items: flex-start;
    }
    .author-info { flex: 1; min-width: 0; }
    .share-btns  { width: 100%; margin-left: 0; }
    .share-btn   { flex: 1; justify-content: center; font-size: 12px; padding: 9px 8px; }

    /* corpo — padding lateral confortável no mobile */
    .article-body { padding: 28px 20px 36px; }

    /* tipografia menor */
    .article-body p  { font-size: 15.5px; line-height: 1.78; margin-bottom: 20px; }
    .article-body li { font-size: 15.5px; line-height: 1.72; }
    .article-body h2 { font-size: 19px; margin: 32px 0 14px; padding-top: 32px; }
    .article-body h3 { font-size: 16.5px; margin: 24px 0 10px; }

    /* callout e warning */
    .callout     { padding: 16px 18px; margin: 24px 0; }
    .box-warning { padding: 14px 16px; gap: 10px; margin: 22px 0; }
    .box-warning p { font-size: 14px; }

    /* tags */
    .article-tags { padding: 16px 18px; gap: 8px; }
    .tag-link     { font-size: 12px; padding: 4px 11px; }

    /* relacionados: 1 coluna */
    .related-grid { grid-template-columns: 1fr; }
    .related { margin-top: 28px; }
  }

  /* ── mobile pequeno (≤ 560px) ── */
  @media (max-width: 560px) {
    .topbar-link, .topbar-cta { display: none; }
    .nav-toggle { display: flex; }

    .post-header-meta .tag { display: none; }
    .post-header-meta { gap: 8px; font-size: 12px; flex-wrap: wrap; }

    .foot .inner { flex-direction: column; align-items: center; text-align: center; }
    .foot-links  { justify-content: center; }
  }

/* Search */
/* SEARCH HEADER
  ══════════════════════════════════════ */
  .search-header {
    background: var(--navy); padding: 52px 0 56px;
    position: relative; overflow: hidden;
  }
  .search-header::before {
    content:''; position:absolute; top:-180px; right:-120px;
    width:480px; height:480px; border-radius:50%;
    background: radial-gradient(circle, rgba(0,167,157,.15) 0%, transparent 70%);
  }
  .search-header::after {
    content:''; position:absolute; bottom:-100px; left:22%;
    width:300px; height:300px; border-radius:50%;
    background: radial-gradient(circle, rgba(244,117,33,.08) 0%, transparent 70%);
  }
  .search-header .inner { position: relative; z-index: 1; }

  .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 14px; }

  .search-header h1 {
    font-size: clamp(24px, 3.6vw, 40px); font-weight: 900;
    color: var(--white); letter-spacing: -1px; line-height: 1.15;
    margin-bottom: 28px;
  }
  .search-header h1 em {
    font-style: normal; color: var(--teal);
    border-bottom: 3px solid rgba(0,167,157,.45); padding-bottom: 2px;
  }

  /* campo de busca grande */
  .search-form {
    display: flex; max-width: 640px;
    background: var(--white); border-radius: 8px;
    overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.20);
  }
  .search-form input {
    flex: 1; min-width: 0; border: none; outline: none;
    padding: 16px 20px; font-family: inherit; font-size: 16px; color: var(--text);
  }
  .search-form input::placeholder { color: var(--text-light); }
  .search-form button {
    border: none; background: var(--teal); color: var(--white);
    padding: 0 28px; font-family: inherit; font-size: 14px; font-weight: 700;
    letter-spacing: .03em; cursor: pointer; transition: background .2s;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
    flex-shrink: 0;
  }
  .search-form button svg { width: 16px; height: 16px; }
  .search-form button:hover { background: #009088; }

  .search-stats {
    margin-top: 18px; font-size: 14px;
    color: rgba(255,255,255,.60); font-weight: 300;
  }
  .search-stats strong { color: rgba(255,255,255,.90); font-weight: 700; }

  /* ══════════════════════════════════════
     LAYOUT 2 COLUNAS
  ══════════════════════════════════════ */
  .layout {
    display: grid; grid-template-columns: minmax(0,1fr) 300px;
    gap: 40px; align-items: start;
    padding-top: 48px; padding-bottom: 72px;
  }
  .layout > main { min-width: 0; }

  /* ── barra de controle ── */
  .results-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
  }
  .results-label { font-size: 14px; color: var(--text-light); }
  .results-label strong { color: var(--navy); font-weight: 700; }

  .sort-select {
    border: 1.5px solid var(--line-2); background: var(--white); border-radius: 6px;
    padding: 8px 14px; font-family: inherit; font-size: 13.5px; color: var(--navy);
    cursor: pointer; outline: none; transition: border-color .2s;
  }
  .sort-select:focus { border-color: var(--teal); }

  /* filtros rápidos por categoria */
  .filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
  .filter-pill {
    font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
    border: 1.5px solid var(--line-2); color: var(--navy); background: var(--white);
    transition: all .2s; cursor: pointer; white-space: nowrap;
  }
  .filter-pill:hover { border-color: var(--teal); color: var(--teal); }
  .filter-pill.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }

  /* ══════════════════════════════════════
     RESULT ITEM (lista densa)
  ══════════════════════════════════════ */
  .results-list { display: flex; flex-direction: column; gap: 16px; }

  .result-item {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    overflow: hidden; display: grid; grid-template-columns: 160px 1fr;
    min-width: 0; transition: box-shadow .22s ease, transform .22s ease;
  }
  .result-item:hover { box-shadow: 0 12px 36px rgba(28,45,90,.12); transform: translateY(-3px); }

  /* thumb lateral */
  .result-thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #16305e 0%, #12507a 55%, #0e7f78 100%);
    flex-shrink: 0;
  }
  .result-thumb .ring { position: absolute; top: -28px; right: -28px; width: 130px; height: 130px; }

  /* corpo do resultado */
  .result-body {
    padding: 22px 24px; display: flex; flex-direction: column;
    gap: 8px; min-width: 0;
  }
  .result-cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); }
  .result-title {
    font-size: 17.5px; font-weight: 700; color: var(--navy);
    line-height: 1.3; letter-spacing: -.3px;
    word-break: break-word; overflow-wrap: break-word;
    transition: color .2s;
  }
  .result-item:hover .result-title { color: var(--teal); }

  /* trecho com termo destacado */
  .result-excerpt {
    font-size: 14px; font-weight: 300; color: var(--text-light);
    line-height: 1.65; word-break: break-word; overflow-wrap: break-word;
  }
  .result-excerpt mark {
    background: rgba(0,167,157,.18); color: var(--navy);
    border-radius: 3px; padding: 0 3px; font-weight: 700;
  }

  .result-meta {
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px; color: var(--text-light); margin-top: 4px;
  }
  .result-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-2); }
  .result-read {
    font-size: 12.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--teal); margin-left: auto;
    display: inline-flex; align-items: center; gap: 5px; transition: gap .2s;
  }
  .result-item:hover .result-read { gap: 9px; }

  /* ══════════════════════════════════════
     ESTADO: NENHUM RESULTADO
  ══════════════════════════════════════ */
  .no-results {
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 56px 40px; text-align: center;
    display: none; /* oculto por padrão — JS alterna */
  }
  .no-results .nr-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gray); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
  }
  .no-results .nr-icon svg { width: 28px; height: 28px; color: var(--text-light); }
  .no-results h2 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 10px; letter-spacing: -.4px; }
  .no-results p { font-size: 15px; color: var(--text-light); font-weight: 300; max-width: 440px; margin: 0 auto 28px; line-height: 1.65; }

  .suggestions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
  .suggestion-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 4px; }
  .suggestion-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .suggestion-pill {
    font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 999px;
    border: 1.5px solid var(--line-2); color: var(--navy); background: var(--white);
    transition: all .2s; cursor: pointer;
  }
  .suggestion-pill:hover { border-color: var(--teal); color: var(--teal); }

  .btn-back {
    display: inline-block; background: var(--navy); color: var(--white);
    padding: 13px 28px; border-radius: 6px; font-size: 14px; font-weight: 700;
    letter-spacing: .03em; transition: background .2s;
  }
  .btn-back:hover { background: #253f7a; }

  /* ══════════════════════════════════════
     PAGINAÇÃO
  ══════════════════════════════════════ */
  .pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 40px; flex-wrap: wrap;
  }
  .page-btn {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 10px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    border: 1.5px solid var(--line-2); background: var(--white); color: var(--navy);
    transition: all .2s; cursor: pointer;
  }
  .page-btn:hover { border-color: var(--teal); color: var(--teal); }
  .page-btn.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); cursor: default; }
  .page-btn.is-disabled { opacity: .35; pointer-events: none; }
  .page-sep { color: var(--text-light); font-size: 14px; padding: 0 4px; user-select: none; }

  /* ══════════════════════════════════════
     SIDEBAR
  ══════════════════════════════════════ */
  .sidebar { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 24px; }
  .widget { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
  .widget-title { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; position: relative; }
  .widget-title::after { content:''; position:absolute; left:0; bottom:0; width:26px; height:3px; background: var(--teal); border-radius:2px; }

  .widget-search { display: flex; gap: 8px; }
  .widget-search input { flex: 1; min-width: 0; border: 1.5px solid var(--line-2); border-radius: 6px; padding: 10px 13px; font-family: inherit; font-size: 13.5px; outline: none; transition: border-color .2s; }
  .widget-search input:focus { border-color: var(--teal); }
  .widget-search button { border: none; background: var(--teal); color: var(--white); border-radius: 6px; padding: 0 15px; font-family: inherit; font-weight: 700; font-size: 13px; cursor: pointer; transition: background .2s; }
  .widget-search button:hover { background: #009088; }

  .cat-list { list-style: none; }
  .cat-list li { border-bottom: 1px solid var(--line); }
  .cat-list li:last-child { border-bottom: none; }
  .cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; font-size: 14px; font-weight: 500; color: var(--navy); transition: color .2s, padding-left .2s; }
  .cat-list a:hover { color: var(--teal); padding-left: 4px; }
  .cat-list a.is-active { color: var(--teal); }
  .cat-count { font-size: 11.5px; font-weight: 700; color: var(--text-light); background: var(--gray); border-radius: 999px; padding: 2px 9px; }
  .cat-list a:hover .cat-count, .cat-list a.is-active .cat-count { background: rgba(0,167,157,.12); color: var(--teal); }

  .mini-post { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
  .mini-post:first-child { padding-top: 0; }
  .mini-post:last-child  { border-bottom: none; padding-bottom: 0; }
  .mini-thumb { width: 58px; height: 58px; border-radius: 8px; flex-shrink: 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #16305e 0%, #12507a 60%, #0e7f78 100%); }
  .mini-thumb .ring { position: absolute; top: -14px; right: -14px; width: 58px; height: 58px; }
  .mini-body h5 { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.32; transition: color .2s; }
  .mini-post:hover h5 { color: var(--teal); }
  .mini-body span { font-size: 11.5px; color: var(--text-light); display: block; margin-top: 4px; }

  .widget-news { background: var(--navy); border-color: var(--navy); position: relative; overflow: hidden; }
  .widget-news::before { content:''; position:absolute; top:-80px; right:-60px; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle, rgba(0,167,157,.22) 0%, transparent 70%); }
  .widget-news > * { position: relative; z-index: 1; }
  .widget-news .widget-title { color: var(--white); }
  .widget-news p { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .widget-news input { width:100%; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: var(--white); border-radius:6px; padding:11px 13px; font-family:inherit; font-size:13.5px; outline:none; margin-bottom:9px; transition: border-color .2s; }
  .widget-news input::placeholder { color: rgba(255,255,255,.45); }
  .widget-news input:focus { border-color: var(--teal); }
  .widget-news button { width:100%; border:none; background:var(--teal); color:var(--white); border-radius:6px; padding:11px; font-family:inherit; font-weight:700; font-size:13.5px; cursor:pointer; transition: background .2s; }
  .widget-news button:hover { background:#009088; }

  /* ══════════════════════════════════════
     CTA FINAL
  ══════════════════════════════════════ */
  .quote-cta { background: var(--navy); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
  .quote-cta::before { content:''; position:absolute; top:-120px; right:8%; width:400px; height:400px; border-radius:50%; background: radial-gradient(circle, rgba(244,117,33,.12) 0%, transparent 70%); }
  .quote-cta .inner { position: relative; z-index: 1; }
  .quote-cta .eyebrow { margin-bottom: 14px; }
  .quote-cta h2 { font-size: clamp(26px,3.2vw,40px); font-weight:900; color:var(--white); letter-spacing:-1px; line-height:1.1; max-width:580px; margin:0 auto 14px; }
  .quote-cta h2 span { color: var(--teal); }
  .quote-cta p { font-size:16px; color:rgba(255,255,255,.65); font-weight:300; max-width:480px; margin:0 auto 24px; line-height:1.65; }
  .btn-orange { display:inline-block; background:var(--orange); color:var(--white); padding:14px 32px; border-radius:6px; font-size:14.5px; font-weight:700; letter-spacing:.03em; transition:background .2s; }
  .btn-orange:hover { background:#d9661a; }

  /* ══════════════════════════════════════
     FOOTER SLIM
  ══════════════════════════════════════ */
  .foot { background: #16264c; padding: 28px 0; }
  .foot .inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .foot img { height: 28px; display: block; }
  .foot-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
  .foot-links a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
  .foot-links a:hover { color: var(--white); }
  .foot-copy { font-size: 12px; color: rgba(255,255,255,.30); text-align: center; padding: 14px var(--px) 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 18px; }

  /* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */
  @media (max-width: 980px) {
    .layout { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 56px; }
    .sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
    .widget-news { grid-column: 1 / -1; }
    .result-item { grid-template-columns: 140px 1fr; }
  }
  @media (max-width: 720px) {
    .result-item { grid-template-columns: 110px 1fr; }
    .result-title { font-size: 15.5px; }
  }
  @media (max-width: 640px) {
    .sidebar { grid-template-columns: 1fr; }
    .search-header { padding: 40px 0 44px; }
    .search-form button span { display: none; }
    .result-item { grid-template-columns: 90px 1fr; }
    .result-body { padding: 16px 16px; }
    .result-title { font-size: 15px; }
    .result-read { display: none; }
    .results-bar { flex-direction: column; align-items: flex-start; }
    .no-results { padding: 40px 24px; }
  }
  @media (max-width: 560px) {
    .topbar-link, .topbar-cta { display: none; }
    .nav-toggle { display: flex; }
    .result-item { grid-template-columns: 1fr; }
    .result-thumb { height: 140px; }
    .foot .inner { flex-direction: column; align-items: center; text-align: center; }
    .foot-links { justify-content: center; }
    .pagination { gap: 4px; }
    .page-btn { min-width: 36px; height: 36px; font-size: 13px; }
  }