@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat',sans-serif; }
    body { background: #f5f5f5; }
    .navbar {
      width: 100%;
      background: #192B1C;
      color: #fff;
      position: relative;
      z-index: 100;
    }
    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 30px;
      height: 60px;
    }
    .navbar-logo img {
      height: 38px;
      vertical-align: middle;
    }
    .navbar-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    .navbar-links a {
      color: #32E000;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.2s;
      position: relative;
    }
    .navbar-links a:after {
      content: '';
      display: block;
      width: 0;
      height: 2px;
      background: #32E000;
      transition: width .2s;
      position: absolute;
      bottom: -4px;
      left: 0;
    }
    .navbar-links a:hover { color: #32E000; }
    .navbar-links a:hover:after { width: 100%; }
    .navbar-btn {
      display: none;
      background: none;
      border: none;
      color: #32E000;
      font-size: 28px;
      cursor: pointer;
    }
    /* Overlay menu mobile */
    .navbar-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(21,21,21,0.98);
      z-index: 9999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .navbar-overlay.active {
      display: flex;
    }
    .navbar-overlay .navbar-links {
      flex-direction: column;
      gap: 32px;
      font-size: 22px;
    }
    .navbar-overlay .close-btn {
      position: absolute;
      top: 24px;
      right: 32px;
      font-size: 32px;
      color: #fff;
      background: none;
      border: none;
      cursor: pointer;
    }
    .btn-assinar-navbar {
      background: #32e000;
      color: #181818 !important;
      border: none;
      border-radius: 22px;
      padding: 7px 26px;
      font-size: 1rem;
      font-weight: 600;
      box-shadow: none;
      transition: background 0.2s, color 0.2s;
      display: inline-block;
      margin-left: 8px;
      text-align: center;
    }
    .btn-assinar-navbar:hover {
      background: #32e000;
      color: #192B1C !important;
      border: 1px solid rgb(238, 255, 1);
      font-weight: 600;
    }
    .btn-assinar-navbar:after {
      display: none !important;
      content: none !important;
    }


    @media (max-width: 900px) {
      .navbar-container { padding: 0 16px; }
      .navbar-links { display: none !important; }
      .navbar-btn { display: block; }
      .navbar-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgb(21, 21, 21);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .navbar-overlay.active {
        display: flex;
      }
      .navbar-overlay .navbar-links {
        display: flex !important;
        flex-direction: column;
        gap: 32px;
        font-size: 22px;
        align-items: center;
      }
      .navbar-overlay .close-btn {
        position: absolute;
        top: 24px;
        right: 32px;
        font-size: 32px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
      }
    }


    /* Filtro de cidade/UF no menu */
.navbar-cidade-uf-filtro {
  position: relative;
  z-index: 100;
  margin-right: 12px;
}
.btn-cidade-uf,
#btnCidadeUF {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 24px;
  border: 1px solid #32E000;
  background: #ffffff00;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  color: #32E000;
  transition: box-shadow 0.15s;
  box-shadow: 0 2px 8px #0001;
}
.btn-cidade-uf i.fas.fa-map-marker-alt,
#btnCidadeUF i.fas.fa-map-marker-alt {
  color: #32e000;
  font-size: 1.1em;
}
.btn-cidade-uf i.fas.fa-chevron-down,
#btnCidadeUF i.fas.fa-chevron-down {
  font-size: 1em;
  margin-left: 8px;
  color: #32E000;
}
.cidade-uf-dropdown,
#cidadeUFDropdown {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  min-width: 360px;    /* aumentado de 180px para 260px */
  max-width: 400px;    /* aumentado de 260px para 400px */
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0002;
  padding: 10px 0 6px 0;
  z-index: 999;
}
.cidade-uf-dropdown-input-wrap,
#cidadeUFDropdown > div {
  position: relative;
  padding: 0 12px 8px 12px;
}
.cidade-uf-dropdown-input-wrap input,
#inputBuscaCidadeUF {
  width: 100%;
  padding: 8px 32px 8px 32px;
  border-radius: 18px;
  border: 1px solid #eee;
  font-size: 0.98rem;
  outline: none;
  background: #f5f5f5;
}
.cidade-uf-dropdown-input-wrap i.fas.fa-search,
#cidadeUFDropdown i.fas.fa-search {
  position: absolute;
  left: 20px;
  top: 43%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 1em;
  pointer-events: none;
}
#listaCidadeUF {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 160px;
  overflow-y: auto;
}
#listaCidadeUF li {
  padding: 8px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s;
  font-size: 0.97em;
}
#listaCidadeUF li i {
  margin-right: 8px;
  font-size: 1em;
  color: #222;
}
#listaCidadeUF li span {
  font-weight: 600;
  color: #222;
}
#listaCidadeUF li:hover {
  background: #f5f5f5;
}
@media (max-width: 600px) {
  .navbar-cidade-uf-filtro {
    margin-right: 0;
  }
  .btn-cidade-uf,
  #btnCidadeUF {
    padding: 4px 10px;
    font-size: 0.93rem;
    border-radius: 16px;
    gap: 5px;
    min-width: 0;
    max-width: 90vw;
  }
  .btn-cidade-uf i.fas.fa-map-marker-alt,
  #btnCidadeUF i.fas.fa-map-marker-alt {
    font-size: 1em;
  }
  .btn-cidade-uf i.fas.fa-chevron-down,
  #btnCidadeUF i.fas.fa-chevron-down {
    font-size: 0.95em;
    margin-left: 4px;
  }
  .cidade-uf-dropdown,
  #cidadeUFDropdown {
    min-width: 208px;
    max-width: 100vw;
    left: 0;
    right: auto;
    padding: 6px 0 4px 0;
    border-radius: 10px;
  }
  .cidade-uf-dropdown-input-wrap,
  #cidadeUFDropdown > div {
    padding: 0 6px 6px 6px;
  }
  .cidade-uf-dropdown-input-wrap input,
  #inputBuscaCidadeUF {
    font-size: 0.93rem;
    padding: 6px 28px 6px 28px;
    border-radius: 12px;
  }
  #listaCidadeUF li {
    padding: 7px 10px;
    font-size: 0.89em;
  }
  #cidadeUFSelecionada {
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
  }
}

/* Ajustes para telas <= 425px */
@media (max-width: 425px) {
  #cidadeUFSelecionada {
    max-width: 200px !important;
    font-size: 0.95rem !important;
  }
  #cidadeUFSelecionada[data-long="2"] {
    font-size: 0.90rem !important;
    padding: 3px;
  }
}

/* Ajustes para telas <= 400px */
@media (max-width: 410px) {
  #cidadeUFSelecionada {
    max-width: 160px !important;
    font-size: 0.90rem !important;
  }
  #cidadeUFSelecionada[data-long="3"] {
    font-size: 0.85rem !important;
    padding: 3px;
  }
}

/* Ajustes para telas <= 400px */
@media (max-width: 400px) {
  #cidadeUFSelecionada {
    max-width: 160px !important;
    font-size: 0.90rem !important;
  }
  #cidadeUFSelecionada[data-long="3"] {
    font-size: 0.85rem !important;
    padding: 3px;
  }
}

/* Ajustes para telas <= 400px */
@media (max-width: 370px) {
  #cidadeUFSelecionada {
    max-width: 140px !important;
    font-size: 0.90rem !important;
  }
  #cidadeUFSelecionada[data-long="3"] {
    font-size: 0.85rem !important;
    padding: 3px;
  }
}


/* Ajustes para telas <= 340px */
@media (max-width: 340px) {
  #cidadeUFSelecionada {
    max-width: 110px !important;
    font-size: 0.90rem !important;
  }
  #cidadeUFSelecionada[data-long="1"] {
    font-size: 0.85rem !important;
    padding: 3px;
  }
}

/* Ajustes para telas <= 340px */
@media (max-width: 318px) {
  #cidadeUFSelecionada {
    max-width: auto !important;
    font-size: 0.90rem !important;
  }
  #cidadeUFSelecionada[data-long="1"] {
    font-size: 0.85rem !important;
    padding: 3px;
  }
  .cidade-uf-dropdown, #cidadeUFDropdown {
    min-width: 180px !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: auto !important;
  }
}

@media (max-width: 112px) {
  #cidadeUFSelecionada {
    font-size: 0.6rem !important;
  }
}

@media (max-width: 1110px) {
  #cidadeUFSelecionada {
    font-size: 0.6rem !important;
  }
}