ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

body {
    background-color: #F4F1E9;
    width: 100%;
    margin: 0!important;
    padding: 0!important;
}

/* Menu Local de navegação valeu rapeize tamo junto */

.lista-menu-secretaria {
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1rem;
    font-weight: 600;
}
.color-menu-local{
    background-color: #113260;
    color: #fff 
}
.menu-item {
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease;
    border-radius: 3px;
}
.menu-item.active {
  background-color: #af2727cf;
  border-bottom: 1px solid #fff;
  font-weight: bold;
}

.menu-item:hover {
  background-color: #af2727cf;
  border-bottom: 1px solid #fff;
}

.conteudo-secoes > div {
display: none;
}

.text-label {
font-size: 1rem; 
font-weight: 500
}

/* Menu Local de navegação valeu rapeize tamo junto */
.title-mini-section {
    margin: 0 auto;
    font-size: 2rem;
    font-weight: 600;
    }

.subtitle-mini-section {
color: white;
padding: 10px 5px;
background-color: #a5171f;
margin: 0 auto;
font-size: 1.5rem;
font-weight: 500;
border-radius: 3px;
}

.instruct {
    font-size:1.3rem;
    font-weight: 500;
}

/* Estilo do checkbox boladão */

.checkbox-wrapper-17 input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
  }

  .checkbox-wrapper-17 label {
    --size: 50px;

    cursor: pointer;
    width: var(--size);
    height: calc(var(--size) / 2);
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
  }

  .checkbox-wrapper-17 label:after {
    content: '';
    position: absolute;
    top: 6%;
    left: 2.5%;
    width: calc(50% - 5%);
    height: calc(100% - 11%);
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
  }

  .checkbox-wrapper-17 input:checked + label {
    background: #bada55;
  }

  .checkbox-wrapper-17 input:checked + label:after {
    left: calc(100% - 2.5%);
    transform: translateX(-100%);
  }

  .checkbox-wrapper-17 label:active:after {
    width: 55%;
  }

  /* Estilo do checkbox boladão */