#api-painel-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 9999;
}

#api-painel-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #f8f9fa;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 9998;
    padding: 15px;
    font-family: sans-serif;
}

#api-painel-menu.ativo {
    right: 0;
}

#api-painel-menu h4 {
    margin-top: 0;
}

#api-painel-menu ul {
    list-style: none;
    padding-left: 0;
}

#api-painel-menu li {
    font-size: 14px;
    margin-bottom: 5px;
}

#api-painel-menu button {
    margin-top: 10px;
    width: 100%;
}



#main-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100vw;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
}

.painel {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  overflow-y: auto;
  padding: 1rem;
}







.map-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    z-index: 9999;
}



.painel-flutuante {
    position: fixed;
    top: 0; right: 0;
    width: 100%; max-width: 400px;
    height: 100%; background: #fff;
    z-index: 9998;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 15px;
}

.painel-flutuante.ativo { 
    transform: translateX(0); 
}

.form-group { 
    margin-bottom: 10px; 
}
label { 
    display: block; font-weight: bold; 
}

