/* ============================================================ */
/* Origem: mapa-completo.html linhas 10–162 */
/* ============================================================ */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', sans-serif;
            overflow: hidden;
        }

        /* Felt Map iframe ocupa tela inteira */
        #felt-map {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            z-index: 0;
        }

        /* Painel de informações sobreposto */
        .info-panel {
            position: fixed;
            top: 20px;
            left: 20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 1000;
            max-width: 300px;
        }

        .info-panel h1 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #0a3d2e;
        }

        .info-panel p {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }

        .legend {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
        }

        .legend-icon {
            font-size: 1.1rem;
        }

        .stats {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 2px solid #f0f0f0;
        }

        .stat {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
            font-size: 0.85rem;
        }

        .stat-number {
            font-weight: 700;
            color: #0a3d2e;
        }

        /* Botão voltar */
        .back-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 14px 28px;
            background: #0a3d2e;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-family: 'Raleway', sans-serif;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s;
        }

        .back-btn:hover {
            background: #d4a574;
            color: #0a3d2e;
            transform: translateY(-2px);
        }

        /* Botão recolher painel (mobile) */
        .toggle-panel-btn {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            background: #0a3d2e;
            color: white;
            border: none;
            padding: 10px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            cursor: pointer;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .info-panel {
                top: 70px;
                left: 10px;
                right: 10px;
                max-width: none;
                padding: 15px;
                transition: all 0.3s;
            }

            .info-panel.collapsed {
                display: none;
            }

            .toggle-panel-btn {
                display: block;
            }

            .back-btn {
                bottom: 15px;
                right: 10px;
                padding: 12px 20px;
                font-size: 0.85rem;
            }
        }
