: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: "Syne", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, 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.7;
      color: var(--color-text);
      background: var(--color-bg);
      overflow-x: hidden;
    }

    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: 700;
      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: 700;
      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: 700;
      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;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-heading);
      font-weight: 800;
      line-height: 1.1;
      color: var(--color-navy);
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
    }
    h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
    h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); scroll-margin-top: 92px; }
    h3 { font-size: 1.05rem; font-weight: 800; }
    .subtitulo {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: clamp(1.02rem, 2vw, 1.18rem);
      color: var(--color-blue);
      margin: 0.25rem 0 0;
      line-height: 1.45;
    }

    .breadcrumb {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--color-text-muted);
      margin: 0 0 1.25rem;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.35rem;
    }
    .breadcrumb a { color: var(--color-text-muted); }
    .breadcrumb a:hover { color: var(--color-navy); }
    .breadcrumb .sep { opacity: 0.5; user-select: none; }
    .breadcrumb [aria-current="page"] { color: var(--color-navy); font-weight: 700; }

    .hero {
      background: var(--color-bg);
      padding: 2.5rem 0 2.25rem;
    }
    .updated {
      margin-top: 0.9rem;
      font-size: 0.95rem;
      color: var(--color-text-muted);
      font-weight: 600;
    }

    .page-layout {
      display: grid;
      gap: 1.5rem;
      padding: 0 0 var(--section-pad);
      align-items: start;
    }
    @media (min-width: 960px) {
      .page-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 2.5rem;
      }
    }

    .toc {
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: 0 4px 18px rgba(27, 58, 107, 0.05);
      overflow: hidden;
    }
    .toc-inner { padding: 1.15rem; }
    .toc h3 { margin: 0 0 0.75rem; font-size: 0.95rem; }
    .toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.25rem; }
    .toc a {
      display: block;
      padding: 0.55rem 0.6rem;
      border-radius: 10px;
      color: var(--color-text-muted);
      font-weight: 700;
      font-size: 0.92rem;
    }
    .toc a:hover { background: var(--color-section-alt); color: var(--color-navy); }

    @media (min-width: 960px) {
      .toc { position: sticky; top: 92px; }
    }

    .toc-mobile {
      display: block;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: 0 4px 18px rgba(27, 58, 107, 0.05);
      overflow: hidden;
      margin-bottom: 1.25rem;
    }
    .toc-mobile summary {
      cursor: pointer;
      list-style: none;
      padding: 1rem 1.1rem;
      font-weight: 800;
      color: var(--color-navy);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-family: var(--font-heading);
    }
    .toc-mobile summary::-webkit-details-marker { display: none; }
    .toc-mobile summary::after { content: "+"; font-weight: 900; color: var(--color-blue); }
    .toc-mobile[open] summary::after { content: "−"; }
    .toc-mobile .toc-inner { padding: 0.25rem 1rem 1rem; }
    @media (min-width: 960px) {
      .toc-mobile { display: none; }
    }

    .content {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      box-shadow: 0 4px 18px rgba(27, 58, 107, 0.05);
      overflow: hidden;
    }
    .content-inner { padding: 1.35rem 1.25rem; }
    @media (min-width: 768px) {
      .content-inner { padding: 1.75rem; }
    }

    .content p { margin: 0 0 1.15rem; color: var(--color-text); }
    .content p:last-child { margin-bottom: 0; }
    .muted { color: var(--color-text-muted); }

    .section-block { padding: 1.75rem 0; border-top: 1px solid var(--color-border); }
    .section-block:first-child { border-top: none; padding-top: 0; }

    .table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--color-border); }
    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 640px;
      background: #fff;
    }
    th, td {
      padding: 0.85rem 0.9rem;
      border-bottom: 1px solid var(--color-border);
      text-align: left;
      vertical-align: top;
      font-size: 0.95rem;
      line-height: 1.55;
    }
    th {
      background: var(--color-section-alt);
      color: var(--color-navy);
      font-family: var(--font-heading);
      font-weight: 800;
      letter-spacing: -0.01em;
    }
    tr:last-child td { border-bottom: none; }

    .cards {
      display: grid;
      gap: 0.85rem;
      margin-top: 1rem;
    }
    @media (min-width: 768px) {
      .cards { grid-template-columns: repeat(2, 1fr); }
    }
    .card {
      background: var(--color-quote-bg);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1rem 1.05rem;
    }
    .card strong { display: block; color: var(--color-navy); margin-bottom: 0.25rem; font-weight: 800; }
    .card span { color: var(--color-text-muted); font-size: 0.95rem; }

    .rights-grid {
      display: grid;
      gap: 0.85rem;
      margin-top: 1rem;
    }
    @media (min-width: 768px) {
      .rights-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .right-card {
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 1rem 1.05rem;
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }
    .right-ico {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: var(--color-section-alt);
      border: 1px solid var(--color-border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: var(--color-blue);
      flex-shrink: 0;
      font-family: var(--font-heading);
    }
    .right-card strong { display: block; color: var(--color-navy); font-weight: 800; }
    .right-card span { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.55; }

    .site-footer {
      background: var(--color-footer);
      color: rgba(255, 255, 255, 0.78);
      padding: 3.5rem 0 0;
      font-size: 0.92rem;
      font-family: var(--font-body);
    }
    .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; font-family: var(--font-heading); }
    .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: 800;
      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; }
    }
