
        .container-map {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        #map {
            height: 300px;
            width: 100%;
            max-width: 600px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .places-container {
            width: 100%;
            max-width: 600px;
            max-height: 270px; /* altura do grid */
            overflow-y: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            background: #f8f8f8;
            padding: 10px;
        }

        .places-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
        }

        .place-item {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, background 0.2s;
            cursor: pointer;
            text-align: left;
        }

        .place-item:hover {
            background: #ddd;
            transform: scale(1.02);
        }

        .place-item.active {
            background: #bbb;
            transform: scale(1.05);
        }
