.goias-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.map-container {
  position: relative;
  border: 2px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
}

.map-frame {
  width: 100%;
  height: 500px;
  border: none;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.map-controls {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-controls button {
  padding: 6px 10px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background: #006400;
  color: white;
  cursor: pointer;
}

.map-controls button:hover {
  background: #228b22;
}

.banner-img {
  max-width: 100%;
  max-height: 400px;
}

@media (max-width: 768px) {
  .goias-wrapper {
    grid-template-columns: 1fr;
  }
}
