  /* Container geral */
    .tab-container {
      
      width: 100%;
      max-width: 1230px;
      margin: 1.5rem auto;
      font-family: sans-serif;
    }

    /* Texto introdutório */
    .tab-intro {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    /* Navegação das abas */
    .tab-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 0;
      border-bottom: 1px solid #ccc;
    }
    .tab-nav button {
      padding: 0.5rem 1rem;
      background: #f4f4f4;
      border: 1px solid #ccc;
      border-bottom: none;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: background 0.2s;
    }
    .tab-nav button:hover {
      background: #e0e0e0;
    }
    .tab-nav button.active {
      background: #fff;
      font-weight: bold;
    }

    /* Conteúdo das abas */
    .tab-content section {
      display: none;
      padding: 1rem;
      border: 1px solid #ccc;
      border-radius: 0 4px 4px 4px;
      background: #fff;
      text-align: justify;
    }
    .tab-content section.active {
      display: block;
    }

    /* Estilização de títulos e parágrafos */
    .tab-content h2 {
      text-align: left;
      margin-top: 0;
    }
    .tab-content p {
      text-indent: 30px;
      line-height: 1.6;
    }

    /* Responsividade simples */
    @media (max-width: 500px) {
      .tab-nav {
        flex-direction: column;
        align-items: stretch;
      }
      .tab-nav button {
        border-radius: 4px;
        border-bottom: 1px solid #ccc;
      }
      .tab-nav button:last-child {
        border-bottom: none;
      }
    }