    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      background: #f8fafd;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      overflow-x: hidden;
    }

    #page-content {
      padding: 32px 40px;
      transition: all 0.3s;
      max-width: 1400px;
      margin: 0 auto;
      /* padding-top: 100px; */
    }

    /* HEADER DA CENTRAL DE AJUDA */
    .help-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .help-header h1 {
      font-size: 42px;
      font-weight: 700;
      color: #0f3b4f;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }
    .help-header p {
      font-size: 18px;
      color: #5f6c80;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    /* BARRA DE PESQUISA DESTAQUE */
    .help-search {
      max-width: 800px;
      margin: 0 auto 20px;
      position: relative;
    }
    .help-search i {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 20px;
    }
    .help-search input {
      width: 100%;
      padding: 18px 25px 18px 55px;
      border: 2px solid #e2e8f0;
      border-radius: 60px;
      font-size: 16px;
      transition: all 0.3s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .help-search input:focus {
      border-color: #2a6f97;
      outline: none;
      box-shadow: 0 8px 20px rgba(42, 111, 151, 0.15);
    }
    .help-search button {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      background: #2a6f97;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 12px 28px;
      font-weight: 600;
      transition: 0.2s;
    }
    .help-search button:hover {
      background: #1e5575;
    }
    
    /* SELECT */
    select {
      padding: 12px 15px;
      border: 2px solid #e2e8f0;
      border-radius: 8px;
      font-size: 14px;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      color: #475569;
      background: white;
      transition: all 0.3s;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    select:hover {
      border-color: #cbd5e1;
      background: #f8fafd;
    }
    select:focus {
      border-color: #2a6f97;
      outline: none;
      box-shadow: 0 4px 12px rgba(42, 111, 151, 0.15);
    }

    /* CATEGORIAS RÁPIDAS */
    .quick-categories {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin: 30px 0 50px;
    }
    .category-pill {
      background: white;
      border: 1px solid #e2e8f0;
      border-radius: 40px;
      padding: 10px 25px;
      font-size: 15px;
      font-weight: 500;
      color: #475569;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: 0.2s;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .category-pill:hover {
      background: #f1f5f9;
      border-color: #cbd5e1;
      transform: translateY(-2px);
    }
    .category-pill i {
      color: #2a6f97;
    }
    .category-pill.active {
      background: #2a6f97;
      color: white;
      border-color: #2a6f97;
    }
    .category-pill.active i {
      color: white;
    }

    /* CARDS DE AJUDA - DESTAQUE */
    .featured-section {
      margin-bottom: 50px;
    }
    .section-title {
      font-size: 24px;
      font-weight: 600;
      color: #0f3b4f;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-title i {
      color: #2a6f97;
      font-size: 28px;
    }
    
    .help-card {
      background: white;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      border: 1px solid #edf2f7;
      transition: all 0.3s;
      height: 100%;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }
    .help-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px -10px rgba(42, 111, 151, 0.15);
      border-color: rgba(42, 111, 151, 0.2);
    }
    
    .card-icon {
      width: 56px;
      height: 56px;
      background: #e8f0fe;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .card-icon i {
      font-size: 28px;
      color: #2a6f97;
    }
    
    .help-card h3 {
      font-size: 18px;
      font-weight: 600;
      color: #0f3b4f;
      margin-bottom: 10px;
    }
    .help-card p {
      color: #64748b;
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 15px;
      flex-grow: 1;
    }
    .card-link {
      color: #2a6f97;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* ARTIGOS POPULARES */
    .popular-list {
      background: white;
      border-radius: 20px;
      padding: 25px;
      border: 1px solid #edf2f7;
    }
    .popular-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #edf2f7;
      cursor: pointer;
      transition: 0.2s;
    }
    .popular-item:last-child {
      border-bottom: none;
    }
    .popular-item:hover {
      background: #f8fafd;
      padding-left: 10px;
    }
    .popular-item i {
      color: #2a6f97;
      font-size: 20px;
    }
    .popular-content {
      flex: 1;
    }
    .popular-content h4 {
      font-size: 16px;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 5px;
    }
    .popular-content p {
      color: #64748b;
      font-size: 13px;
    }
    .popular-meta {
      color: #94a3b8;
      font-size: 13px;
    }
    .popular-subitems {
      margin-top: 8px;
      padding-left: 20px;
    }
    .popular-subitem {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      border-bottom: 1px solid #edf2f7;
      cursor: pointer;
      transition: 0.2s;
    }
    .popular-subitem:last-child {
      border-bottom: none;
    }
    .popular-subitem:hover {
      background: #f1f5f9;
      padding-left: 10px;
    }
    .popular-subitem i {
      color: #2a6f97;
      font-size: 16px;
    }
    .popular-subitem h5 {
      font-size: 14px;
      font-weight: 500;
      color: #475569;
    }

    .sinapi-faq-accordion {
      margin-top: 12px;
      margin-bottom: 0;
    }
    .sinapi-faq-item {
      border: 1px solid #edf2f7 !important;
      border-radius: 12px !important;
      box-shadow: none !important;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .sinapi-faq-item:last-child {
      margin-bottom: 0;
    }
    .sinapi-faq-item .panel-heading {
      padding: 0;
      background: white;
      border-bottom: none;
    }
    .sinapi-faq-item .panel-title {
      font-size: 16px;
      margin: 0;
    }
    .sinapi-faq-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      width: 100%;
      padding: 16px 18px;
      color: #1e293b;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }
    .sinapi-faq-toggle:hover,
    .sinapi-faq-toggle:focus {
      text-decoration: none;
      color: #2a6f97;
      background: #f8fafd;
    }
    .sinapi-faq-icon {
      font-size: 14px;
      color: #2a6f97;
      transform: rotate(180deg);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }
    .sinapi-faq-toggle.collapsed .sinapi-faq-icon {
      transform: rotate(0deg);
    }
    .sinapi-faq-answer {
      color: #64748b;
      line-height: 1.6;
      padding-top: 0;
    }
    .sinapi-faq-item .panel-collapse {
      border-top: 1px solid #edf2f7;
    }

    /* FAQ ACCORDION */
    .faq-section {
      background: white;
      border-radius: 20px;
      padding: 25px;
      border: 1px solid #edf2f7;
    }
    .faq-item {
      border-bottom: 1px solid #edf2f7;
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-question {
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: 0.2s;
    }
    .faq-question:hover {
      color: #2a6f97;
    }
    .faq-question span {
      font-weight: 600;
      color: #1e293b;
    }
    .faq-answer {
      padding-bottom: 20px;
      color: #64748b;
      line-height: 1.6;
      display: none;
    }
    .faq-answer.show {
      display: block;
    }

    /* CONTATO E SUPORTE */
    .contact-section {
      background: #eef3f8;
      border-radius: 20px;
      padding: 30px;
      color: #3d5166;
      margin-top: 40px;
      border: 1px solid #dce6ef;
    }
    .contact-section h2 {
      color: #4a6278;
      font-size: 18px;
      font-weight: 500;
    }
    .contact-grid {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .contact-item {
      flex: 1;
      min-width: 200px;
      background: white;
      border-radius: 14px;
      padding: 20px;
      text-align: center;
      border: 1px solid #dce6ef;
      transition: 0.2s;
      cursor: pointer;
    }
    .contact-item:hover {
      border-color: #2a6f97;
      box-shadow: 0 4px 14px rgba(42,111,151,0.08);
      transform: translateY(-2px);
    }
    .contact-item i {
      font-size: 26px;
      margin-bottom: 10px;
      color: #2a6f97;
    }
    .contact-item h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #2d4a5e;
    }
    .contact-item p {
      opacity: 0.75;
      font-size: 13px;
      color: #4a6278;
    }

    /* BOTÃO VOLTAR AO TOPO */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: #2a6f97;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transition: 0.3s;
      border: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      z-index: 1000;
    }
    .back-to-top.visible {
      opacity: 1;
    }
    .back-to-top:hover {
      background: #1e5575;
      transform: scale(1.1);
    }

    /* SINAPI TABLE */
    .sinapi-table-wrapper {
      overflow-x: auto;
    }
    .sinapi-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 14px;
    }
    .sinapi-table thead tr {
      background: #0f3b4f;
      color: white;
    }
    .sinapi-table thead th {
      padding: 14px 16px;
      font-weight: 600;
      text-align: left;
      white-space: nowrap;
    }
    .sinapi-table thead th:first-child { border-radius: 10px 0 0 0; }
    .sinapi-table thead th:last-child  { border-radius: 0 10px 0 0; }
    .sinapi-table tbody tr {
      cursor: pointer;
      transition: background 0.15s;
    }
    .sinapi-table tbody tr:nth-child(odd)  { background: #f8fafd; }
    .sinapi-table tbody tr:nth-child(even) { background: white; }
    .sinapi-table tbody tr:hover { background: #e8f4fb !important; }
    .sinapi-table tbody tr.selected-row { background: #dbeafe !important; border-left: 3px solid #2a6f97; }
    .sinapi-table tbody td {
      padding: 12px 16px;
      color: #1e293b;
      border-bottom: 1px solid #edf2f7;
      vertical-align: middle;
    }
    .sinapi-table tbody td:first-child { font-weight: 600; color: #2a6f97; }
    .sinapi-table tbody td.valor { text-align: right; font-weight: 600; color: #0f3b4f; }
    .sinapi-table tbody tr.selected-row td:first-child { border-left: 3px solid #2a6f97; }

    /* PAGINATION */
    .sinapi-pagination {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 18px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .sinapi-pagination .page-info {
      color: #64748b;
      font-size: 13px;
    }
    .pagination-controls {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .pagination-controls button {
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
      background: white;
      color: #475569;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: 0.2s;
    }
    .pagination-controls button:hover:not([disabled]) {
      background: #f1f5f9;
      border-color: #cbd5e1;
    }
    .pagination-controls button.active {
      background: #2a6f97;
      color: white;
      border-color: #2a6f97;
    }
    .pagination-controls button[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
    }

    /* DETAIL PANEL */
    .composicao-detail {
      margin-top: 24px;
      background: white;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(42, 111, 151, 0.10);
    }
    .composicao-detail-header {
      background: #0f3b4f;
      padding: 16px 20px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .composicao-detail-header .header-info { flex: 1; }
    .composicao-detail-header .badge-codigo {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #e2e8f0;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .composicao-detail-header h4 {
      font-size: 14px;
      font-weight: 600;
      color: white;
      margin: 0;
      line-height: 1.4;
    }
    .composicao-detail-header .meta {
      font-size: 12px;
      color: #94c7e0;
      margin-top: 4px;
    }
    .composicao-detail-close {
      background: rgba(255,255,255,0.1);
      border: none;
      color: #94c7e0;
      font-size: 16px;
      cursor: pointer;
      padding: 6px 8px;
      border-radius: 6px;
      transition: 0.2s;
      flex-shrink: 0;
    }
    .composicao-detail-close:hover {
      background: rgba(255,255,255,0.2);
      color: white;
    }
    .composicao-detail-body { padding: 20px; }
    .detail-loading {
      text-align: center;
      padding: 30px;
      color: #64748b;
    }
    .detail-loading i { font-size: 22px; color: #2a6f97; margin-bottom: 8px; display: block; }
    .detail-section-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #94a3b8;
      margin: 20px 0 10px;
    }
    .detail-section-title:first-child { margin-top: 0; }
    .detail-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }
    .detail-table thead th {
      background: #f8fafd;
      padding: 10px 12px;
      text-align: left;
      font-weight: 600;
      color: #475569;
      border-bottom: 2px solid #e2e8f0;
      white-space: nowrap;
    }
    .detail-table thead th.num { text-align: right; }
    .detail-table tbody td {
      padding: 10px 12px;
      border-bottom: 1px solid #edf2f7;
      color: #334155;
    }
    .detail-table tbody td.num { text-align: right; font-weight: 600; }
    .detail-table tbody tr:last-child td { border-bottom: none; }
    .detail-table tbody tr:hover { background: #f8fafd; }
    .detail-empty {
      text-align: center;
      padding: 30px;
      color: #94a3b8;
      font-size: 14px;
    }
    .detail-empty i { font-size: 28px; margin-bottom: 8px; display: block; }

    @media (max-width: 768px) {
      #page-content { padding: 20px; padding-top: 90px; }
      .help-header h1 { font-size: 32px; }
      .contact-grid { flex-direction: column; }
      .contact-section { padding: 20px; }
      .sinapi-pagination { flex-direction: column; align-items: flex-start; }
    }