    body,
    html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: sans-serif;
    }

    .menu-flutuante>a {
      font-size: 1.15rem;
      color: #027602;
    }

    #map {
      margin: 10px 15px;
      height: 100vh;
      width: 100vw;
      background-color: var(--brand-color-primary);
    }

    .fab {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: var(--brand-color-primary);
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 30px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      z-index: 1100;
    }

    #formulario {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      background: #ffffff;
      padding: 25px 20px;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: none;
      z-index: 1000;
      width: 90%;
      max-width: 350px;
      max-height: 90%;
      /* Altura máxima para o formulário */
      overflow-y: auto;
      /* Adiciona rolagem vertical */
    }

    #formulario h3 {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 20px;
      color: #333;
      text-align: center;
    }

    #formulario label {
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
      color: #555;
    }

    #formulario input,
    #formulario textarea {
      width: 100%;
      margin-bottom: 15px;
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    #formulario textarea {
      resize: none;
      height: 100px;
    }

    #pUpload {
      color: #fff;
      font-weight: var(--fw-md);
    }



    #formulario input[readonly] {
      background-color: #f9f9f9;
      color: #666;
    }

    #submit {
      cursor: pointer;
    }


    .categorias {
      display: flex;
      flex-wrap: wrap;
    }

    .categorias label {
      padding: 8px;
      display: block;
      margin-bottom: 1px;
      color: #555;
      font-size: 14px;
    }

    .menu-flutuante {
      margin: 0;
      position: fixed;
      top: 13px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      padding: 10px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      z-index: 1200;
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .menu-flutuante a {
      padding-right: 16px;
      text-decoration: none;
      color: var(--brand-color-primary);
      font-weight: bold;
    }

    .menu-flutuante img {
      width: 50px;
    }

    .menu-toggle {
      display: none;
      /* escondido no desktop */
    }


    .upload-label {
      display: inline-block;
      padding: 10px 15px;
      background-color: rgb(116, 141, 116);
      color: white;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      text-align: center;
      width: 100%;
      margin-bottom: 15px;
      box-sizing: border-box;
      transition: background 0.3s ease;
    }

    .upload-label:hover {
      background-color: var(--hover);

    }

    .flex-wrap {
      display: flex;
      flex-wrap: wrap;
    }

    .category-wrapper {
      border: 1px solid var(--text-color-primary);
      border-radius: 0.5rem;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      width: 130px;
      height: 130px;
      padding: 8px;
    }

    .category-wrapper img {
      width: 50px;
    }

    .category-wrapper:hover {
      border: 2px solid var(--brand-color-primary);
    }

    input[type="radio"] {
      accent-color: var(--brand-color-primary);
    }

    input[type="radio"]:checked {
      border: 2.5px solid var(--brand-color-primary);
    }

    .leaflet-popup-content-wrapper {
      border-radius: 12px !important;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      background: #fff;
      padding: 10px;
    }

    /*Modal card reclamações*/

    .popup-card {
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #333;
      max-width: 250px;
    }

    .popup-card h4 {
      margin: 0 0 8px;
      font-size: 16px;
      color: #06C75D;
    }

    .popup-card a {
      display: inline-block;
      margin-top: 8px;
      color: #027602;
      font-weight: bold;
      text-decoration: none;
    }

    .popup-card a:hover {
      text-decoration: underline;
    }

    .popup-img {
      width: 100%;
      max-height: 150px;
      object-fit: cover;
      margin-top: 8px;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    }

    /*COMENTÁRIOS*/
    .modal {
      display: none;
      /* Escondido inicialmente */
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.5);
      font-family: Arial, sans-serif;
    }

    .modal-content {
      background-color: #fff;
      margin: 8% auto;
      padding: 20px;
      border-radius: 8px;
      width: 400px;
      max-height: 70vh;
      overflow-y: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
    }

    .close:hover {
      color: black;
    }

    .lista-comentarios {
      max-height: 300px;
      overflow-y: auto;
      border: 1px solid #ccc;
      padding: 8px;
      margin-bottom: 10px;
      font-size: 14px;
    }

    .lista-comentarios p {
      margin-bottom: 10px;
      border-bottom: 1px solid #eee;
      padding-bottom: 6px;
    }

    .comentario {
      margin-bottom: 10px;
      padding: 5px 10px;
      background: #f3f3f3;
      border-radius: 6px;
    }

    .botao-comentario {
      background-color: #059F05;
      color: white;
      border: none;
      padding: 10px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .botao-comentario:hover {
      background-color: #00ca00;
    }

    .botao-comentario img {
      width: 18px;
      height: 18px;
    }

    #btnDefault {
      width: 180px;
      height: 35px;
      background-color: var(--brand-color-primary);
      border: none;
      border-radius: 20px;
      text-align: center;
      padding: 5px 10px;
      cursor: pointer;
      font-weight: var(--fw-md);
      transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    #btnDefault:hover {
      color: #fff;
      background-color: var(--hover);
      transform: scale(1.05);
    }

    .contador {
      font-size: 0.75rem;
      color: var(--text-color-primary);
      text-align: right;
      margin-top: 2px;
    }



/*FAB - BOTÃO FLUTUANTE*/

    .fab {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #06C75D;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 32px;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.fab:hover {
  transform: scale(1.1) rotate(10deg);
  background: #04a34b;
}

.fab.ativo {
  background: #e74c3c; /* vermelho quando aberto */
  transform: rotate(45deg);
}


    /*MENU FLUTUANTE RESPONSIVO*/
    @media (max-width: 700px) {
      .menu-flutuante {
        left: 10px;
        transform: none;
        padding: 10px;
        width: 50px;
        overflow: hidden;
        transition: width 0.3s ease;
        gap: 0;
      }

      .menu-flutuante a {
        padding-right: 1.5px;
      }

      .menu-flutuante.expanded {
        width: 280px;
        /* largura expandida */
      }

      .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--brand-color-primary);
        font-weight: bold;
        transition: transform 0.3s ease;
        flex-shrink: 0;
      }

      .menu-flutuante.expanded .menu-toggle {
        transform: rotate(180deg);
        /* vira a seta */
      }

      .menu-content {
        display: flex;
        align-items: center;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        margin-left: 10px;
      }

      .menu-flutuante.expanded .menu-content {
        opacity: 1;
        visibility: visible;
      }
    }