:root {
      --color-bg: #FFFFFF;
      --color-navy: #1B3A6B;
      --color-blue: #2B7BC8;
      --color-blue-dark: #2368B0;
      --color-blue-light: #5B9BD5;
      --color-section-alt: #F4F7FB;
      --color-border: #D9E6F2;
      --color-text: #0F1C2E;
      --color-text-muted: #4A5568;
      --color-footer: #0D1C35;
      --color-quote-bg: #EBF4FF;
      --color-cta-orange: #EA580C;
      --color-cta-orange-hover: #C2410C;
      --shadow-cta: 0 4px 18px rgba(234, 88, 12, 0.38);
      --font-heading: "Montserrat", Tahoma, Arial, sans-serif;
      --font-body: "Montserrat", Tahoma, Arial, sans-serif;
      --shadow-card: 0 8px 32px rgba(27, 58, 107, 0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 14px;
      --section-pad: 5rem;
      --max-width: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.65;
      color: var(--color-text);
      background: var(--color-bg);
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--color-blue); text-decoration: none; transition: color 0.2s ease; }
    a:hover { color: var(--color-navy); }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-up { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: no-preference) {
      .fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.25rem;
    }
    @media (min-width: 900px) {
      .container { padding: 0 1.5rem; }
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--color-border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 72px;
      gap: 1rem;
    }
    .logo {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--color-navy);
    }
    .logo span { color: var(--color-blue); }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      border-radius: var(--radius-sm);
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      width: 24px;
      background: var(--color-navy);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .site-header.aberto .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .site-header.aberto .nav-toggle span:nth-child(2) { opacity: 0; }
    .site-header.aberto .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .main-nav {
      position: fixed;
      inset: 72px 0 auto 0;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
      padding: 1rem 1.25rem 1.5rem;
      transform: translateY(-120%);
      opacity: 0;
      visibility: hidden;
      transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
    }
    .site-header.aberto .main-nav {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    .main-nav a {
      display: block;
      padding: 0.65rem 0;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }
    .main-nav a:hover { color: var(--color-navy); }
    .main-nav a[aria-current="page"] { color: var(--color-navy); }

    .nav-cta-wrap { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
    .header-inner .nav-cta-wrap .btn {
      padding: 0.6rem 1.6rem;
      font-size: 0.875rem;
      font-weight: 600;
      line-height: 1.35;
      white-space: nowrap;
    }

    @media (min-width: 900px) {
      .nav-toggle { display: none; }
      .main-nav {
        position: static;
        inset: auto;
        background: transparent;
        border: none;
        padding: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        align-items: center;
        gap: 1.75rem;
      }
      .main-nav ul { flex-direction: row; align-items: center; gap: 1.5rem; }
      .main-nav a { padding: 0.5rem 0; }
      .nav-cta-wrap { margin-top: 0; padding-top: 0; border: none; }
      .header-inner .nav-cta-wrap .btn { padding: 0.56rem 1.85rem; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.9375rem;
      padding: 0.75rem 1.35rem;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn-cta-conversa {
      background: var(--color-cta-orange);
      color: #fff !important;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-cta);
      border-color: transparent;
    }
    .btn-cta-conversa:hover {
      background: var(--color-cta-orange-hover);
      color: #fff !important;
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(234, 88, 12, 0.45);
    }
    .btn-cta-conversa:focus-visible {
      outline: 2px solid var(--color-cta-orange-hover);
      outline-offset: 3px;
    }
    .btn-outline {
      background: transparent;
      border-color: var(--color-navy);
      color: var(--color-navy);
      border-radius: var(--radius-md);
    }
    .btn-outline:hover { border-color: var(--color-blue); color: var(--color-blue); }
    .btn-sm {
      padding: 0.5rem 1rem;
      font-size: 0.8125rem;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 800;
      line-height: 1.15;
      color: var(--color-navy);
      margin: 0 0 0.5rem;
    }
    h1 { font-size: clamp(1.75rem, 4vw, 2.45rem); letter-spacing: -0.03em; }
    h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); }

    .breadcrumb {
      font-size: 0.875rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.65);
      margin: 0 0 1rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.35rem;
    }
    .breadcrumb a { color: rgba(255, 255, 255, 0.72); }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb .sep { opacity: 0.45; user-select: none; }
    .breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }

    .page-hero--navy {
      background: var(--color-navy);
      padding: 2.5rem 0 3.25rem;
      position: relative;
      overflow: hidden;
    }
    .page-hero--navy::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 6px;
      height: 100%;
      background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
      z-index: 1;
    }
    .page-hero--navy::after {
      content: "";
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 140px;
      height: 140px;
      background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
      background-size: 14px 14px;
      pointer-events: none;
    }
    .page-hero--navy .container { position: relative; z-index: 2; }
    .page-hero--navy h1 { color: #fff; margin-bottom: 0.65rem; }
    .page-hero--navy .hero-lead {
      margin: 0;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.78);
      max-width: 40rem;
      line-height: 1.65;
    }

    .ad-leaderboard {
      background: var(--color-section-alt);
      border: 1px dashed var(--color-border);
      border-radius: var(--radius-sm);
      min-height: 90px;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      font-size: 0.8rem;
    }
    .ad-leaderboard-wrap {
      padding: 1.25rem 0;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
    }
    .ad-sidebar {
      min-height: 250px;
      border: 1px dashed var(--color-border);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      font-size: 0.78rem;
      text-align: center;
      padding: 1rem;
      background: var(--color-section-alt);
    }

    .blog-layout {
      display: grid;
      gap: 2.5rem;
      padding: 2.5rem 0 var(--section-pad);
    }
    @media (min-width: 900px) {
      .blog-layout {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
        gap: 2.5rem 2.5rem;
        align-items: start;
      }
      .blog-main { min-width: 0; }
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }
    .filter-pills button {
      border: 1px solid var(--color-border);
      background: #fff;
      padding: 0.5rem 1.05rem;
      border-radius: 999px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.8125rem;
      cursor: pointer;
      color: var(--color-text-muted);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .filter-pills button:hover {
      border-color: var(--color-blue);
      color: var(--color-navy);
    }
    .filter-pills button.is-active {
      background: var(--color-navy);
      color: #fff;
      border-color: var(--color-navy);
    }

    .post-featured {
      display: grid;
      gap: 1.25rem;
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 2.5rem;
      box-shadow: 0 4px 24px rgba(27, 58, 107, 0.06);
      border-top: 4px solid var(--color-blue);
    }
    @media (min-width: 768px) {
      .post-featured { grid-template-columns: 1fr 1.1fr; gap: 0; }
    }
    .post-featured-thumb {
      min-height: 220px;
      background: linear-gradient(145deg, var(--color-navy), var(--color-blue));
      position: relative;
    }
    .post-featured-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 220px;
    }
    .post-featured-body { padding: 1.5rem 1.5rem 1.75rem; }
    .badge-destaque {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: var(--color-cta-orange);
      padding: 0.35rem 0.65rem;
      border-radius: 6px;
      margin-bottom: 0.75rem;
    }
    .post-featured h2 {
      font-size: 1.2rem;
      margin-bottom: 0.65rem;
    }
    .post-featured h2 a { color: var(--color-navy); }
    .post-featured h2 a:hover { color: var(--color-blue); }
    .post-excerpt { font-size: 0.92rem; color: var(--color-text-muted); margin: 0 0 1rem; line-height: 1.6; }
    .post-meta { font-size: 0.8rem; color: var(--color-text-muted); }

    .post-grid {
      display: grid;
      gap: 1.25rem;
    }
    @media (min-width: 600px) {
      .post-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .post-card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: box-shadow 0.25s ease, transform 0.25s ease;
      border-top: 3px solid transparent;
    }
    .post-card:hover {
      box-shadow: var(--shadow-card);
      transform: translateY(-3px);
      border-top-color: var(--color-blue);
    }
    .post-card.is-filtered-out { display: none; }
    .post-card-thumb {
      height: 140px;
      background: var(--color-section-alt);
      overflow: hidden;
    }
    .post-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .post-card-body { padding: 1.1rem 1.15rem 1.25rem; }
    .post-card .cat {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-blue);
      margin-bottom: 0.35rem;
    }
    .post-card h3 {
      font-size: 0.98rem;
      font-weight: 800;
      margin: 0 0 0.4rem;
      line-height: 1.3;
    }
    .post-card h3 a { color: var(--color-navy); }
    .post-card h3 a:hover { color: var(--color-blue); }
    .post-card .snippet {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      margin: 0;
      line-height: 1.5;
    }

    .pagination {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--color-border);
    }
    .pagination a, .pagination span {
      min-width: 2.5rem;
      height: 2.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.875rem;
    }
    .pagination a {
      border: 1px solid var(--color-border);
      color: var(--color-navy);
      background: #fff;
    }
    .pagination a:hover { border-color: var(--color-blue); color: var(--color-blue); }
    .pagination .current {
      background: var(--color-navy);
      color: #fff;
      border: 1px solid var(--color-navy);
    }

    .widget {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1.35rem;
      margin-bottom: 1.25rem;
      box-shadow: 0 4px 16px rgba(27, 58, 107, 0.04);
    }
    .widget h4 {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin: 0 0 1rem;
    }
    .author-widget {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .author-widget img {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--color-blue);
    }
    .author-widget p { margin: 0; font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.55; }
    .author-widget .nome {
      font-weight: 700;
      color: var(--color-navy);
      display: block;
      margin-bottom: 0.35rem;
      font-size: 0.95rem;
    }

    .cat-list { list-style: none; margin: 0; padding: 0; }
    .cat-list li {
      display: flex;
      justify-content: space-between;
      padding: 0.55rem 0;
      border-bottom: 1px solid var(--color-border);
      font-size: 0.9rem;
    }
    .cat-list li:last-child { border-bottom: none; }
    .cat-list a { color: var(--color-text); font-weight: 500; }
    .cat-list a:hover { color: var(--color-blue); }
    .cat-list .cnt {
      color: var(--color-text-muted);
      font-size: 0.85rem;
    }

    .recent-list { list-style: none; margin: 0; padding: 0; }
    .recent-list li {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 0.75rem;
      padding: 0.65rem 0;
      border-bottom: 1px solid var(--color-border);
      align-items: center;
    }
    .recent-list li:last-child { border-bottom: none; }
    .recent-list img {
      width: 56px;
      height: 56px;
      object-fit: cover;
      border-radius: var(--radius-sm);
    }
    .recent-list a { font-weight: 600; font-size: 0.85rem; color: var(--color-navy); line-height: 1.35; display: block; }
    .recent-list a:hover { color: var(--color-blue); }

    .widget-gestorpro {
      background: var(--color-quote-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1.35rem;
      margin-bottom: 1.25rem;
    }
    .widget-gestorpro h4 { color: var(--color-navy); font-size: 1rem; letter-spacing: 0; text-transform: none; margin-bottom: 0.5rem; }
    .widget-gestorpro p { margin: 0 0 1rem; font-size: 0.9rem; color: var(--color-text-muted); }
    .widget-gestorpro .btn-cta-conversa { width: 100%; justify-content: center; }

    .site-footer {
      background: var(--color-footer);
      color: rgba(255, 255, 255, 0.78);
      padding: 3.5rem 0 0;
      font-size: 0.92rem;
    }
    .footer-grid {
      display: grid;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
    }
    @media (min-width: 768px) {
      .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    }
    .site-footer .logo { color: #fff; margin-bottom: 0.85rem; }
    .site-footer .logo span { color: var(--color-blue-light); }
    .site-footer p { margin: 0; line-height: 1.65; }
    .footer-col h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
      margin: 0 0 1rem;
    }
    .footer-links { list-style: none; margin: 0; padding: 0; }
    .footer-links li { margin-bottom: 0.5rem; }
    .footer-links a { color: rgba(255, 255, 255, 0.78); }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.25rem 0 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      align-items: flex-start;
    }
    @media (min-width: 768px) {
      .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    }
    .footer-bottom a { color: var(--color-blue-light); }
    .footer-bottom a:hover { color: #fff; }

    @media (max-width: 899px) {
      body.menu-aberto { overflow: hidden; }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    .author-widget .btn { margin-top: 0.75rem; }
