  /* Container principal (fora da sidebar) */
  .main-content {
    margin-left: 300px;
    padding: 1rem;
  }
  
  /* ------------------------------------- */
  /* Botão de alternância (Hambúrguer)     */
  /* ------------------------------------- */
  .sidebar-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 999;
    border-radius: 8px;
    padding: 0.5rem;
  }

/* ------------------------------------- */
/* Abrir menu lateral (Main) */
/* ------------------------------------- */

  .open-menu-button {
    background-color: #e3941c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1rem;
    cursor: pointer;

  }
  
  .open-menu-button i {
   
    color: #fff;
  }
  
  .open-menu-button:hover {
    background-color: #1C74A3;
  }
  
  /* ------------------------------------- */
  /* Sidebar                               */
  /* ------------------------------------- */
  .sidebar {
    position: fixed;
    top: 150px;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;  
    border-right: 1px solid #ccc;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    overflow-y: auto;  
    transform: translateX(-100%);
    transition: transform 0.3s ease;
	z-index: 3;
  }

  .sidebar.open {
  transform: translateX(0);
}
  
  /* Cabeçalho da Sidebar */
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
  }
  
  /* Título do Menu */
  .sidebar-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
  }
  
  /* Botão de fechar (hambúrguer no topo) */
  .close-button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* Conteúdo da sidebar (detalhes) */
  .sidebar-content {
    padding: 1rem;
  }
  
  /* ------------------------------------- */
  /* Estilo dos <details> e <summary>      */
  /* ------------------------------------- */
  details {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
  }
  
  /* Remove o ícone padrão do summary (triângulo) no Chrome/Safari) */
  summary::-webkit-details-marker {
    display: none;
  }
  
  /* Summary como título clicável */
  summary {
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-left: 1.2rem;
    font-size: 1.2em;
    font-weight: 700;
    color: #000000;
  }
  
  /* Ícone simulando setinha (opcional) */
  summary::before {
    content: "▸"; 
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: transform 0.2s;
  }
  
  /* Quando aberto, gira a setinha */
  details[open] summary::before {
    transform: rotate(90deg); 
  }
  
  /* Listas dentro de cada details */
  details ul {
    margin-top: 0.5rem;
    padding-left: 1rem;
    color: #000000;
  }
  
  @media (max-width: 992px) {
	.open-menu-button {
		margin-left:10px;

	} 
  }