    /* Acessibilidade BreadCrumb */

    .breadcrumb {
      list-style: none;
      display: flex;
      font-family: Arial, sans-serif;
      font-size: 14px;
      padding: 0;
    }

    .breadcrumb li {
      margin-right: 5px;
    }

    .breadcrumb li+li:before {
      content: ">";
      margin-right: 5px;
      color: #999;
    }

    .breadcrumb a {
      text-decoration: none;
      color: #007bff;
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    /* Acessibilidade BreadCrumb */
    

    @media (max-width: 768px) {
      .toggle {
        display: block;
      }

      .menu {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
      }

      .menu.active {
        max-height: 1000px;
      }

      .section-top-desktop {
        display: none;
      }

      .section-top-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .nav-section {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
      }

      .nav-section a {
        padding: 0.5rem 0;
      }

      .color-bar {
        height: 4px;
      }
    }