/* Acessibilidade  */

.acessibilidade {
    position: fixed;
    top: 50%;
    right: 5%;
    height: 36%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    z-index: 999;
    transform: translateY(-50%);
    font-size: 16px;
  }
  
  .btn-acessibilidade,
  .btn-mapa-site a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid black;
    border-radius: 50%;
    background-color: #f0f0f0;
    cursor: pointer;
    color: #000;
    font-size: 16px;
  }
  
  .btn-acessibilidade a i {
    font-size: 28px;
    color: #000;
  }
  
  .btn-acessibilidade:hover,
  .btn-mapa-site a:hover,
  .btn-container button:hover {
    background-color: var(--cor-secundaria);
  }
  
  .img-acessibilidade {
    background-image: url(../img/acessibilidade.png);
    width: 40px;
    height: 40px;
    background-color: aqua;
  }
  
  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .btn-container button {
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    font-size: 16px;
  }
  
  /* Dark mode  */
  
  .dark {
    background-color: #000 !important;
    background: #000 !important;
    color: #fff !important;
  }
  
  .dark-nav {
    background-color: #000 !important;
    color: #fff !important;
    border-bottom: 2px solid white;
    border-top: 2px solid white;
  }
  
  .dark-toggler-icon {
    filter: whitescale(100%);
  }
  
  .dark-image {
    filter: grayscale(100%);
  }
  
  .dark-menu {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid white !important;
  }
  
  .dark-menu:hover {
    background-color: var(--cor-secundaria) !important;
  }
  
  .dark-card {
    background-color: #000 !important;
    color: #fff !important;
    border: 2px solid white;
  }
  
  .background-light {
      background-color: #fff;
  }
  
  .dark-font-light,
  .dark-font {
    color: #fff !important;
  }
  
  .dark-font-black {
    color: #000 !important;
  }
  
  .dark-font-light:hover {
    color: #ccc !important;
  }
  
  .dark-font-light,
  .dark-font:hover {
    color: #ccc !important;
  }
  
  .dark-mode {
    position: relative;
  }
  
  .checkbox {
    opacity: 0;
    position: absolute;
  }
  
  .acessibilidade .dark-mode .label {
    background-color: #111;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    position: relative;
    height: 21px;
    width: 38px;
    margin: 0;
    transform: scale(1.5);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
      rgba(255, 255, 255, 0.3) 0px 18px 36px -18px inset;
  }
  
  .acessibilidade .dark-mode .label .ball {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 1.8px;
    left: 1.5px;
    height: 17px;
    width: 17px;
    transform: translateX(0px);
    transition: transform 0.2s linear;
  }
  
  .checkbox:checked + .label .ball {
    transform: translateX(18px);
  }
  
  .fa-moon-o {
    color: #f1c04f;
    font-size: 15px;
  }
  
  .fa-sun-o {
    color: #f39c12;
    font-size: 15px;
  }
  
  .fa-wheelchair {
    color: black;
  }
  
  .section-destaques .text-acessibilidade {
    max-width: 100% !important;
    text-align: left;
    padding: 20px;
    margin: 0;
    color: var(--cor-primaria);
  }
  
  .section-destaques .text-acessibilidade p {
    width: 100%;
    margin: 0;
  }
  
  .mapa-site {
    width: 100%;
    padding: 0 30px;
  }
  
  .mapa-site ul {
    padding: 0 20px;
  }
  
  .mapa-site li a {
    font-size: 1rem;
    color: var(--cor-primaria);
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .mapa-site li a:hover {
    color: rgba(1, 36, 56, 0.8);
    border-bottom: 2px solid var(--cor-secundaria);
  }
  
  .search-accessibility {
    width: 1000px;
    display: flex;
    padding: 15px;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .search-accessibility form {
    width: 30%;
    padding: 5px 0;
  }
  
  .menu-accessibility {
    width: 60%;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  
  .menu-accessibility .btn-font-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    /* border: 1px solid black; */
  }
  
  .btn-font-container button {
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .btn-map-site a,
  .btn-accessibility a,
  .btn-accessibility a i {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
  }
  
  .btn-map-site a:hover,
  .btn-accessibility a:hover {
    color: var(--cor-secundaria);
  }
  
  .box-search {
    height: 30px;
    display: flex;
    cursor: pointer;
    padding: 20px 0px 20px;
    background: #f0f0f0;
    border-radius: 30px;
    align-items: center;
    border: 2px solid black;
  }
  
  .box-search button {
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 20px;
    border-radius: 30px;
    cursor: pointer;
  }
  
  .box-search:hover input {
    width: 500px;
    padding-left: 10px;
  }
  
  .box-search input:focus {
    width: 500px;
    padding-left: 10px;
  }
  
  .box-search input {
    width: 0;
    outline: none;
    border: none;
    font-weight: 500;
    transition: 0.8s;
    background: transparent;
  }
  
  .box-search a .fa-search {
    color: #000;
    font-size: 20px;
  }
  
  /* Redes Sociais  */
  
  .redes-sociais {
    position: absolute;
    top: 20px;
    right: 20%;
    width: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .redes-sociais a {
    text-decoration: none;
  }
  
  .redes-sociais .fa {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    color: #fff;
    border: 2px solid var(--cor-primaria);
    border-radius: 50%;
    box-shadow: rgba(255, 255, 255, 0.8) 0px 5px 15px;
    background: var(--cor-primaria);
    transition: 0.3s ease;
    cursor: pointer;
  }
  
  .redes-sociais .fa:hover {
    background-color: var(--cor-secundaria);
  }
  
  @media (max-width: 1500px) {
    .acessibilidade {
      height: 38%;
    }
  }
  