* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilo do corpo */
  body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }
  
  /* Cabeçalho Principal */
  .main-header {
    background-color: #7e319c;
    color: white;
    text-align: center;
    padding: 32px 20px 40px;
  }

  .main-header .brand-lockup {
    display: inline-block;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }
  
  .main-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.15;
  }
  
  .main-header p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.65;
  }
  
  /* Seção de conteúdo */
  .about-section {
    padding: 24px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .text-block {
    margin-bottom: 40px;
  }
  
  .text-block h2 {
    font-size: 2rem;
    color: #7e319c;
    margin-bottom: 10px;
  }
  
  .text-block p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Rodapé */
  .main-footer {
    background-color: #e0e0e0;
    text-align: center;
    padding: 15px;
    font-size: 0.875rem;
    color: #777;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
      .main-header h1 {
        font-size: 2rem;
      }

      .main-header {
        padding: 24px 16px 32px;
      }

      .main-header .brand-lockup {
        margin-bottom: 16px;
        padding: 0;
      }

      .main-header .logo-container img {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
      }

      .main-header .logo-container span {
        font-size: 1.55rem;
      }
    
      .text-block h2 {
        font-size: 1.5rem;
      }
  }

  li {
    margin-left: 30px; /* ou padding-left */
  }
  ol {
    margin-left: 30px; /* ou padding-left */
  }

  /* Quando a largura da janela ficar abaixo de 600px, reduz ainda mais */
  @media (min-width: 765px) {
    /* Responsividade do ícone da casa */
    #house-icon {
      width: 16px;
      height: auto;
    }

    .logo-container img {
      width: 32px; /* ou ajuste conforme necessário */
      height: auto;
    }
  }

  /* Ajustes para mobile */
  @media (max-width: 765px) {
      h1 {
          font-size: 2em; /* Reduz para 24px */
      }
  }

  /* Quando a largura da janela ficar abaixo de 600px, reduz ainda mais */
  @media (max-width: 765px) {
    #house-icon {
      width: 16px;
      height: auto;
    }

    .logo-container img {
      width: 27px;
      height: auto;
    }
  }

  .container {
    max-width: 960px;
    margin: 40px auto 72px !important;
    padding: 0 20px 32px;
  }
  
  .help-section {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
  }
  .help-section summary {
    font-size: 1.25rem;
    padding: 1rem;
    cursor: pointer;
    background-color: #e1e8f0;
    border-bottom: 1px solid #d0d7de;
    list-style: none;
  }
  .help-section[open] summary {
    background-color: #d0d7de;
  }
  .help-section ul {
    list-style: disc inside;
    padding: 1rem 2rem;
    margin: 0;
  }
  .help-section li {
    margin: 0.5rem 0;
  }
  .help-section a {
    text-decoration: none;
  }
  .help-section a:hover {
    text-decoration: underline;
  }

  .image-tutorial {
    width: 100%;
    max-width: 380px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
  }

  ol li,
  ul li {
    margin: 0.75rem 0;
  }

  
  body { font-family: 'Open Sans', sans-serif; color: #333; }
  #termo-responsabilizacao,
  #terms-of-use,
  #termo-consentimento {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  ul { margin-left: 30px; }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-header .logo-container {
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }

  .main-header .logo-container img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: block;
  }

  .main-header .logo-container span {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    color: #fff;
    transform: translateY(-1px);
  }

      .container {
        width: 100% !important;
        max-width: 960px;
    }

  :root[data-theme="dark"] body {
    background-color: var(--page-background);
    color: var(--text-primary);
  }

  :root[data-theme="dark"] .main-header {
    background-color: var(--surface-elevated);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
  }

  :root[data-theme="dark"] .main-header h1,
  :root[data-theme="dark"] .main-header p,
  :root[data-theme="dark"] h2,
  :root[data-theme="dark"] h3,
  :root[data-theme="dark"] h4,
  :root[data-theme="dark"] p,
  :root[data-theme="dark"] li,
  :root[data-theme="dark"] span,
  :root[data-theme="dark"] label {
    color: var(--text-primary);
  }

  :root[data-theme="dark"] .text-block h2,
  :root[data-theme="dark"] .help-section a,
  :root[data-theme="dark"] a {
    color: var(--link-color);
  }

  :root[data-theme="dark"] .text-block p,
  :root[data-theme="dark"] .main-footer,
  :root[data-theme="dark"] .help-section li {
    color: var(--text-secondary);
  }

  :root[data-theme="dark"] .container,
  :root[data-theme="dark"] section,
  :root[data-theme="dark"] .about-section {
    background: transparent;
  }

  :root[data-theme="dark"] .help-section {
    background: var(--surface-elevated);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 8px color-mix(in srgb, #000 45%, transparent);
  }

  :root[data-theme="dark"] .help-section summary {
    background-color: var(--surface-subtle);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
  }

  :root[data-theme="dark"] .help-section[open] summary {
    background-color: color-mix(in srgb, var(--surface-subtle) 70%, var(--surface-elevated) 30%);
  }

  :root[data-theme="dark"] .main-footer {
    background-color: var(--surface-elevated);
    border-top: 1px solid var(--border-color);
  }

  :root[data-theme="dark"] .image-tutorial {
    border: 1px solid var(--border-color);
    border-radius: 8px;
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) body {
      background-color: var(--page-background);
      color: var(--text-primary);
    }

    :root:not([data-theme="light"]) .main-header {
      background-color: var(--surface-elevated);
      color: var(--text-primary);
      border-bottom: 1px solid var(--border-color);
    }

    :root:not([data-theme="light"]) .main-header h1,
    :root:not([data-theme="light"]) .main-header p,
    :root:not([data-theme="light"]) h2,
    :root:not([data-theme="light"]) h3,
    :root:not([data-theme="light"]) h4,
    :root:not([data-theme="light"]) p,
    :root:not([data-theme="light"]) li,
    :root:not([data-theme="light"]) span,
    :root:not([data-theme="light"]) label {
      color: var(--text-primary);
    }

    :root:not([data-theme="light"]) .text-block h2,
    :root:not([data-theme="light"]) .help-section a,
    :root:not([data-theme="light"]) a {
      color: var(--link-color);
    }

    :root:not([data-theme="light"]) .text-block p,
    :root:not([data-theme="light"]) .main-footer,
    :root:not([data-theme="light"]) .help-section li {
      color: var(--text-secondary);
    }

    :root:not([data-theme="light"]) .container,
    :root:not([data-theme="light"]) section,
    :root:not([data-theme="light"]) .about-section {
      background: transparent;
    }

    :root:not([data-theme="light"]) .help-section {
      background: var(--surface-elevated);
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 8px color-mix(in srgb, #000 45%, transparent);
    }

    :root:not([data-theme="light"]) .help-section summary {
      background-color: var(--surface-subtle);
      border-bottom: 1px solid var(--border-color);
      color: var(--text-primary);
    }

    :root:not([data-theme="light"]) .help-section[open] summary {
      background-color: color-mix(in srgb, var(--surface-subtle) 70%, var(--surface-elevated) 30%);
    }

    :root:not([data-theme="light"]) .main-footer {
      background-color: var(--surface-elevated);
      border-top: 1px solid var(--border-color);
    }

    :root:not([data-theme="light"]) .image-tutorial {
      border: 1px solid var(--border-color);
      border-radius: 8px;
    }
  }